pgtable.h 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452
  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. #include <asm/processor.h>
  8. #include <asm/fixmap.h>
  9. #include <asm/bitops.h>
  10. #include <linux/threads.h>
  11. #include <asm/pda.h>
  12. extern pud_t level3_kernel_pgt[512];
  13. extern pud_t level3_physmem_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. extern pgd_t boot_level4_pgt[];
  18. extern unsigned long __supported_pte_mask;
  19. #define swapper_pg_dir init_level4_pgt
  20. extern void paging_init(void);
  21. extern void clear_kernel_mapping(unsigned long addr, unsigned long size);
  22. /*
  23. * ZERO_PAGE is a global shared page that is always zero: used
  24. * for zero-mapped memory areas etc..
  25. */
  26. extern unsigned long empty_zero_page[PAGE_SIZE/sizeof(unsigned long)];
  27. #define ZERO_PAGE(vaddr) (virt_to_page(empty_zero_page))
  28. /*
  29. * PGDIR_SHIFT determines what a top-level page table entry can map
  30. */
  31. #define PGDIR_SHIFT 39
  32. #define PTRS_PER_PGD 512
  33. /*
  34. * 3rd level page
  35. */
  36. #define PUD_SHIFT 30
  37. #define PTRS_PER_PUD 512
  38. /*
  39. * PMD_SHIFT determines the size of the area a middle-level
  40. * page table can map
  41. */
  42. #define PMD_SHIFT 21
  43. #define PTRS_PER_PMD 512
  44. /*
  45. * entries per page directory level
  46. */
  47. #define PTRS_PER_PTE 512
  48. #define pte_ERROR(e) \
  49. printk("%s:%d: bad pte %p(%016lx).\n", __FILE__, __LINE__, &(e), pte_val(e))
  50. #define pmd_ERROR(e) \
  51. printk("%s:%d: bad pmd %p(%016lx).\n", __FILE__, __LINE__, &(e), pmd_val(e))
  52. #define pud_ERROR(e) \
  53. printk("%s:%d: bad pud %p(%016lx).\n", __FILE__, __LINE__, &(e), pud_val(e))
  54. #define pgd_ERROR(e) \
  55. printk("%s:%d: bad pgd %p(%016lx).\n", __FILE__, __LINE__, &(e), pgd_val(e))
  56. #define pgd_none(x) (!pgd_val(x))
  57. #define pud_none(x) (!pud_val(x))
  58. static inline void set_pte(pte_t *dst, pte_t val)
  59. {
  60. pte_val(*dst) = pte_val(val);
  61. }
  62. #define set_pte_at(mm,addr,ptep,pteval) set_pte(ptep,pteval)
  63. static inline void set_pmd(pmd_t *dst, pmd_t val)
  64. {
  65. pmd_val(*dst) = pmd_val(val);
  66. }
  67. static inline void set_pud(pud_t *dst, pud_t val)
  68. {
  69. pud_val(*dst) = pud_val(val);
  70. }
  71. static inline void pud_clear (pud_t *pud)
  72. {
  73. set_pud(pud, __pud(0));
  74. }
  75. static inline void set_pgd(pgd_t *dst, pgd_t val)
  76. {
  77. pgd_val(*dst) = pgd_val(val);
  78. }
  79. static inline void pgd_clear (pgd_t * pgd)
  80. {
  81. set_pgd(pgd, __pgd(0));
  82. }
  83. #define ptep_get_and_clear(mm,addr,xp) __pte(xchg(&(xp)->pte, 0))
  84. struct mm_struct;
  85. static inline pte_t ptep_get_and_clear_full(struct mm_struct *mm, unsigned long addr, pte_t *ptep, int full)
  86. {
  87. pte_t pte;
  88. if (full) {
  89. pte = *ptep;
  90. *ptep = __pte(0);
  91. } else {
  92. pte = ptep_get_and_clear(mm, addr, ptep);
  93. }
  94. return pte;
  95. }
  96. #define pte_same(a, b) ((a).pte == (b).pte)
  97. #define pte_pgprot(a) (__pgprot((a).pte & ~PHYSICAL_PAGE_MASK))
  98. #define PMD_SIZE (1UL << PMD_SHIFT)
  99. #define PMD_MASK (~(PMD_SIZE-1))
  100. #define PUD_SIZE (1UL << PUD_SHIFT)
  101. #define PUD_MASK (~(PUD_SIZE-1))
  102. #define PGDIR_SIZE (1UL << PGDIR_SHIFT)
  103. #define PGDIR_MASK (~(PGDIR_SIZE-1))
  104. #define USER_PTRS_PER_PGD ((TASK_SIZE-1)/PGDIR_SIZE+1)
  105. #define FIRST_USER_ADDRESS 0
  106. #ifndef __ASSEMBLY__
  107. #define MAXMEM 0x3fffffffffffUL
  108. #define VMALLOC_START 0xffffc20000000000UL
  109. #define VMALLOC_END 0xffffe1ffffffffffUL
  110. #define MODULES_VADDR 0xffffffff88000000UL
  111. #define MODULES_END 0xfffffffffff00000UL
  112. #define MODULES_LEN (MODULES_END - MODULES_VADDR)
  113. #define _PAGE_BIT_PRESENT 0
  114. #define _PAGE_BIT_RW 1
  115. #define _PAGE_BIT_USER 2
  116. #define _PAGE_BIT_PWT 3
  117. #define _PAGE_BIT_PCD 4
  118. #define _PAGE_BIT_ACCESSED 5
  119. #define _PAGE_BIT_DIRTY 6
  120. #define _PAGE_BIT_PSE 7 /* 4 MB (or 2MB) page */
  121. #define _PAGE_BIT_GLOBAL 8 /* Global TLB entry PPro+ */
  122. #define _PAGE_BIT_NX 63 /* No execute: only valid after cpuid check */
  123. #define _PAGE_PRESENT 0x001
  124. #define _PAGE_RW 0x002
  125. #define _PAGE_USER 0x004
  126. #define _PAGE_PWT 0x008
  127. #define _PAGE_PCD 0x010
  128. #define _PAGE_ACCESSED 0x020
  129. #define _PAGE_DIRTY 0x040
  130. #define _PAGE_PSE 0x080 /* 2MB page */
  131. #define _PAGE_FILE 0x040 /* nonlinear file mapping, saved PTE; unset:swap */
  132. #define _PAGE_GLOBAL 0x100 /* Global TLB entry */
  133. #define _PAGE_PROTNONE 0x080 /* If not present */
  134. #define _PAGE_NX (1UL<<_PAGE_BIT_NX)
  135. #define _PAGE_TABLE (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER | _PAGE_ACCESSED | _PAGE_DIRTY)
  136. #define _KERNPG_TABLE (_PAGE_PRESENT | _PAGE_RW | _PAGE_ACCESSED | _PAGE_DIRTY)
  137. #define _PAGE_CHG_MASK (PTE_MASK | _PAGE_ACCESSED | _PAGE_DIRTY)
  138. #define PAGE_NONE __pgprot(_PAGE_PROTNONE | _PAGE_ACCESSED)
  139. #define PAGE_SHARED __pgprot(_PAGE_PRESENT | _PAGE_RW | _PAGE_USER | _PAGE_ACCESSED | _PAGE_NX)
  140. #define PAGE_SHARED_EXEC __pgprot(_PAGE_PRESENT | _PAGE_RW | _PAGE_USER | _PAGE_ACCESSED)
  141. #define PAGE_COPY_NOEXEC __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED | _PAGE_NX)
  142. #define PAGE_COPY PAGE_COPY_NOEXEC
  143. #define PAGE_COPY_EXEC __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED)
  144. #define PAGE_READONLY __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED | _PAGE_NX)
  145. #define PAGE_READONLY_EXEC __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED)
  146. #define __PAGE_KERNEL \
  147. (_PAGE_PRESENT | _PAGE_RW | _PAGE_DIRTY | _PAGE_ACCESSED | _PAGE_NX)
  148. #define __PAGE_KERNEL_EXEC \
  149. (_PAGE_PRESENT | _PAGE_RW | _PAGE_DIRTY | _PAGE_ACCESSED)
  150. #define __PAGE_KERNEL_NOCACHE \
  151. (_PAGE_PRESENT | _PAGE_RW | _PAGE_DIRTY | _PAGE_PCD | _PAGE_ACCESSED | _PAGE_NX)
  152. #define __PAGE_KERNEL_RO \
  153. (_PAGE_PRESENT | _PAGE_DIRTY | _PAGE_ACCESSED | _PAGE_NX)
  154. #define __PAGE_KERNEL_VSYSCALL \
  155. (_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED)
  156. #define __PAGE_KERNEL_VSYSCALL_NOCACHE \
  157. (_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED | _PAGE_PCD)
  158. #define __PAGE_KERNEL_LARGE \
  159. (__PAGE_KERNEL | _PAGE_PSE)
  160. #define __PAGE_KERNEL_LARGE_EXEC \
  161. (__PAGE_KERNEL_EXEC | _PAGE_PSE)
  162. #define MAKE_GLOBAL(x) __pgprot((x) | _PAGE_GLOBAL)
  163. #define PAGE_KERNEL MAKE_GLOBAL(__PAGE_KERNEL)
  164. #define PAGE_KERNEL_EXEC MAKE_GLOBAL(__PAGE_KERNEL_EXEC)
  165. #define PAGE_KERNEL_RO MAKE_GLOBAL(__PAGE_KERNEL_RO)
  166. #define PAGE_KERNEL_NOCACHE MAKE_GLOBAL(__PAGE_KERNEL_NOCACHE)
  167. #define PAGE_KERNEL_VSYSCALL32 __pgprot(__PAGE_KERNEL_VSYSCALL)
  168. #define PAGE_KERNEL_VSYSCALL MAKE_GLOBAL(__PAGE_KERNEL_VSYSCALL)
  169. #define PAGE_KERNEL_LARGE MAKE_GLOBAL(__PAGE_KERNEL_LARGE)
  170. #define PAGE_KERNEL_VSYSCALL_NOCACHE MAKE_GLOBAL(__PAGE_KERNEL_VSYSCALL_NOCACHE)
  171. /* xwr */
  172. #define __P000 PAGE_NONE
  173. #define __P001 PAGE_READONLY
  174. #define __P010 PAGE_COPY
  175. #define __P011 PAGE_COPY
  176. #define __P100 PAGE_READONLY_EXEC
  177. #define __P101 PAGE_READONLY_EXEC
  178. #define __P110 PAGE_COPY_EXEC
  179. #define __P111 PAGE_COPY_EXEC
  180. #define __S000 PAGE_NONE
  181. #define __S001 PAGE_READONLY
  182. #define __S010 PAGE_SHARED
  183. #define __S011 PAGE_SHARED
  184. #define __S100 PAGE_READONLY_EXEC
  185. #define __S101 PAGE_READONLY_EXEC
  186. #define __S110 PAGE_SHARED_EXEC
  187. #define __S111 PAGE_SHARED_EXEC
  188. static inline unsigned long pgd_bad(pgd_t pgd)
  189. {
  190. unsigned long val = pgd_val(pgd);
  191. val &= ~PTE_MASK;
  192. val &= ~(_PAGE_USER | _PAGE_DIRTY);
  193. return val & ~(_PAGE_PRESENT | _PAGE_RW | _PAGE_ACCESSED);
  194. }
  195. static inline unsigned long pud_bad(pud_t pud)
  196. {
  197. unsigned long val = pud_val(pud);
  198. val &= ~PTE_MASK;
  199. val &= ~(_PAGE_USER | _PAGE_DIRTY);
  200. return val & ~(_PAGE_PRESENT | _PAGE_RW | _PAGE_ACCESSED);
  201. }
  202. #define pte_none(x) (!pte_val(x))
  203. #define pte_present(x) (pte_val(x) & (_PAGE_PRESENT | _PAGE_PROTNONE))
  204. #define pte_clear(mm,addr,xp) do { set_pte_at(mm, addr, xp, __pte(0)); } while (0)
  205. #define pages_to_mb(x) ((x) >> (20-PAGE_SHIFT)) /* FIXME: is this
  206. right? */
  207. #define pte_page(x) pfn_to_page(pte_pfn(x))
  208. #define pte_pfn(x) ((pte_val(x) & __PHYSICAL_MASK) >> PAGE_SHIFT)
  209. static inline pte_t pfn_pte(unsigned long page_nr, pgprot_t pgprot)
  210. {
  211. pte_t pte;
  212. pte_val(pte) = (page_nr << PAGE_SHIFT);
  213. pte_val(pte) |= pgprot_val(pgprot);
  214. pte_val(pte) &= __supported_pte_mask;
  215. return pte;
  216. }
  217. /*
  218. * The following only work if pte_present() is true.
  219. * Undefined behaviour if not..
  220. */
  221. #define __LARGE_PTE (_PAGE_PSE|_PAGE_PRESENT)
  222. static inline int pte_user(pte_t pte) { return pte_val(pte) & _PAGE_USER; }
  223. static inline int pte_read(pte_t pte) { return pte_val(pte) & _PAGE_USER; }
  224. static inline int pte_exec(pte_t pte) { return !(pte_val(pte) & _PAGE_NX); }
  225. static inline int pte_dirty(pte_t pte) { return pte_val(pte) & _PAGE_DIRTY; }
  226. static inline int pte_young(pte_t pte) { return pte_val(pte) & _PAGE_ACCESSED; }
  227. static inline int pte_write(pte_t pte) { return pte_val(pte) & _PAGE_RW; }
  228. static inline int pte_file(pte_t pte) { return pte_val(pte) & _PAGE_FILE; }
  229. static inline int pte_huge(pte_t pte) { return pte_val(pte) & _PAGE_PSE; }
  230. static inline pte_t pte_rdprotect(pte_t pte) { set_pte(&pte, __pte(pte_val(pte) & ~_PAGE_USER)); return pte; }
  231. static inline pte_t pte_exprotect(pte_t pte) { set_pte(&pte, __pte(pte_val(pte) & ~_PAGE_USER)); return pte; }
  232. static inline pte_t pte_mkclean(pte_t pte) { set_pte(&pte, __pte(pte_val(pte) & ~_PAGE_DIRTY)); return pte; }
  233. static inline pte_t pte_mkold(pte_t pte) { set_pte(&pte, __pte(pte_val(pte) & ~_PAGE_ACCESSED)); return pte; }
  234. static inline pte_t pte_wrprotect(pte_t pte) { set_pte(&pte, __pte(pte_val(pte) & ~_PAGE_RW)); return pte; }
  235. static inline pte_t pte_mkread(pte_t pte) { set_pte(&pte, __pte(pte_val(pte) | _PAGE_USER)); return pte; }
  236. static inline pte_t pte_mkexec(pte_t pte) { set_pte(&pte, __pte(pte_val(pte) & ~_PAGE_NX)); return pte; }
  237. static inline pte_t pte_mkdirty(pte_t pte) { set_pte(&pte, __pte(pte_val(pte) | _PAGE_DIRTY)); return pte; }
  238. static inline pte_t pte_mkyoung(pte_t pte) { set_pte(&pte, __pte(pte_val(pte) | _PAGE_ACCESSED)); return pte; }
  239. static inline pte_t pte_mkwrite(pte_t pte) { set_pte(&pte, __pte(pte_val(pte) | _PAGE_RW)); return pte; }
  240. static inline pte_t pte_mkhuge(pte_t pte) { set_pte(&pte, __pte(pte_val(pte) | _PAGE_PSE)); return pte; }
  241. static inline pte_t pte_clrhuge(pte_t pte) { set_pte(&pte, __pte(pte_val(pte) & ~_PAGE_PSE)); return pte; }
  242. struct vm_area_struct;
  243. static inline int ptep_test_and_clear_dirty(struct vm_area_struct *vma, unsigned long addr, pte_t *ptep)
  244. {
  245. if (!pte_dirty(*ptep))
  246. return 0;
  247. return test_and_clear_bit(_PAGE_BIT_DIRTY, &ptep->pte);
  248. }
  249. static inline int ptep_test_and_clear_young(struct vm_area_struct *vma, unsigned long addr, pte_t *ptep)
  250. {
  251. if (!pte_young(*ptep))
  252. return 0;
  253. return test_and_clear_bit(_PAGE_BIT_ACCESSED, &ptep->pte);
  254. }
  255. static inline void ptep_set_wrprotect(struct mm_struct *mm, unsigned long addr, pte_t *ptep)
  256. {
  257. clear_bit(_PAGE_BIT_RW, &ptep->pte);
  258. }
  259. /*
  260. * Macro to mark a page protection value as "uncacheable".
  261. */
  262. #define pgprot_noncached(prot) (__pgprot(pgprot_val(prot) | _PAGE_PCD | _PAGE_PWT))
  263. static inline int pmd_large(pmd_t pte) {
  264. return (pmd_val(pte) & __LARGE_PTE) == __LARGE_PTE;
  265. }
  266. /*
  267. * Conversion functions: convert a page and protection to a page entry,
  268. * and a page entry and page directory to the page they refer to.
  269. */
  270. /*
  271. * Level 4 access.
  272. */
  273. #define pgd_page_vaddr(pgd) ((unsigned long) __va((unsigned long)pgd_val(pgd) & PTE_MASK))
  274. #define pgd_page(pgd) (pfn_to_page(pgd_val(pgd) >> PAGE_SHIFT))
  275. #define pgd_index(address) (((address) >> PGDIR_SHIFT) & (PTRS_PER_PGD-1))
  276. #define pgd_offset(mm, addr) ((mm)->pgd + pgd_index(addr))
  277. #define pgd_offset_k(address) (init_level4_pgt + pgd_index(address))
  278. #define pgd_present(pgd) (pgd_val(pgd) & _PAGE_PRESENT)
  279. #define mk_kernel_pgd(address) ((pgd_t){ (address) | _KERNPG_TABLE })
  280. /* PUD - Level3 access */
  281. /* to find an entry in a page-table-directory. */
  282. #define pud_page_vaddr(pud) ((unsigned long) __va(pud_val(pud) & PHYSICAL_PAGE_MASK))
  283. #define pud_page(pud) (pfn_to_page(pud_val(pud) >> PAGE_SHIFT))
  284. #define pud_index(address) (((address) >> PUD_SHIFT) & (PTRS_PER_PUD-1))
  285. #define pud_offset(pgd, address) ((pud_t *) pgd_page_vaddr(*(pgd)) + pud_index(address))
  286. #define pud_present(pud) (pud_val(pud) & _PAGE_PRESENT)
  287. /* PMD - Level 2 access */
  288. #define pmd_page_vaddr(pmd) ((unsigned long) __va(pmd_val(pmd) & PTE_MASK))
  289. #define pmd_page(pmd) (pfn_to_page(pmd_val(pmd) >> PAGE_SHIFT))
  290. #define pmd_index(address) (((address) >> PMD_SHIFT) & (PTRS_PER_PMD-1))
  291. #define pmd_offset(dir, address) ((pmd_t *) pud_page_vaddr(*(dir)) + \
  292. pmd_index(address))
  293. #define pmd_none(x) (!pmd_val(x))
  294. #define pmd_present(x) (pmd_val(x) & _PAGE_PRESENT)
  295. #define pmd_clear(xp) do { set_pmd(xp, __pmd(0)); } while (0)
  296. #define pmd_bad(x) ((pmd_val(x) & (~PTE_MASK & ~_PAGE_USER)) != _KERNPG_TABLE )
  297. #define pfn_pmd(nr,prot) (__pmd(((nr) << PAGE_SHIFT) | pgprot_val(prot)))
  298. #define pmd_pfn(x) ((pmd_val(x) & __PHYSICAL_MASK) >> PAGE_SHIFT)
  299. #define pte_to_pgoff(pte) ((pte_val(pte) & PHYSICAL_PAGE_MASK) >> PAGE_SHIFT)
  300. #define pgoff_to_pte(off) ((pte_t) { ((off) << PAGE_SHIFT) | _PAGE_FILE })
  301. #define PTE_FILE_MAX_BITS __PHYSICAL_MASK_SHIFT
  302. /* PTE - Level 1 access. */
  303. /* page, protection -> pte */
  304. #define mk_pte(page, pgprot) pfn_pte(page_to_pfn(page), (pgprot))
  305. #define mk_pte_huge(entry) (pte_val(entry) |= _PAGE_PRESENT | _PAGE_PSE)
  306. /* physical address -> PTE */
  307. static inline pte_t mk_pte_phys(unsigned long physpage, pgprot_t pgprot)
  308. {
  309. pte_t pte;
  310. pte_val(pte) = physpage | pgprot_val(pgprot);
  311. pte_val(pte) &= __supported_pte_mask;
  312. return pte;
  313. }
  314. /* Change flags of a PTE */
  315. static inline pte_t pte_modify(pte_t pte, pgprot_t newprot)
  316. {
  317. pte_val(pte) &= _PAGE_CHG_MASK;
  318. pte_val(pte) |= pgprot_val(newprot);
  319. pte_val(pte) &= __supported_pte_mask;
  320. return pte;
  321. }
  322. #define pte_index(address) \
  323. (((address) >> PAGE_SHIFT) & (PTRS_PER_PTE - 1))
  324. #define pte_offset_kernel(dir, address) ((pte_t *) pmd_page_vaddr(*(dir)) + \
  325. pte_index(address))
  326. /* x86-64 always has all page tables mapped. */
  327. #define pte_offset_map(dir,address) pte_offset_kernel(dir,address)
  328. #define pte_offset_map_nested(dir,address) pte_offset_kernel(dir,address)
  329. #define pte_unmap(pte) /* NOP */
  330. #define pte_unmap_nested(pte) /* NOP */
  331. #define update_mmu_cache(vma,address,pte) do { } while (0)
  332. /* We only update the dirty/accessed state if we set
  333. * the dirty bit by hand in the kernel, since the hardware
  334. * will do the accessed bit for us, and we don't want to
  335. * race with other CPU's that might be updating the dirty
  336. * bit at the same time. */
  337. #define __HAVE_ARCH_PTEP_SET_ACCESS_FLAGS
  338. #define ptep_set_access_flags(__vma, __address, __ptep, __entry, __dirty) \
  339. do { \
  340. if (__dirty) { \
  341. set_pte(__ptep, __entry); \
  342. flush_tlb_page(__vma, __address); \
  343. } \
  344. } while (0)
  345. /* Encode and de-code a swap entry */
  346. #define __swp_type(x) (((x).val >> 1) & 0x3f)
  347. #define __swp_offset(x) ((x).val >> 8)
  348. #define __swp_entry(type, offset) ((swp_entry_t) { ((type) << 1) | ((offset) << 8) })
  349. #define __pte_to_swp_entry(pte) ((swp_entry_t) { pte_val(pte) })
  350. #define __swp_entry_to_pte(x) ((pte_t) { (x).val })
  351. extern spinlock_t pgd_lock;
  352. extern struct page *pgd_list;
  353. void vmalloc_sync_all(void);
  354. #endif /* !__ASSEMBLY__ */
  355. extern int kern_addr_valid(unsigned long addr);
  356. #define io_remap_pfn_range(vma, vaddr, pfn, size, prot) \
  357. remap_pfn_range(vma, vaddr, pfn, size, prot)
  358. #define MK_IOSPACE_PFN(space, pfn) (pfn)
  359. #define GET_IOSPACE(pfn) 0
  360. #define GET_PFN(pfn) (pfn)
  361. #define HAVE_ARCH_UNMAPPED_AREA
  362. #define pgtable_cache_init() do { } while (0)
  363. #define check_pgt_cache() do { } while (0)
  364. #define PAGE_AGP PAGE_KERNEL_NOCACHE
  365. #define HAVE_PAGE_AGP 1
  366. /* fs/proc/kcore.c */
  367. #define kc_vaddr_to_offset(v) ((v) & __VIRTUAL_MASK)
  368. #define kc_offset_to_vaddr(o) \
  369. (((o) & (1UL << (__VIRTUAL_MASK_SHIFT-1))) ? ((o) | (~__VIRTUAL_MASK)) : (o))
  370. #define __HAVE_ARCH_PTEP_TEST_AND_CLEAR_YOUNG
  371. #define __HAVE_ARCH_PTEP_TEST_AND_CLEAR_DIRTY
  372. #define __HAVE_ARCH_PTEP_GET_AND_CLEAR
  373. #define __HAVE_ARCH_PTEP_GET_AND_CLEAR_FULL
  374. #define __HAVE_ARCH_PTEP_SET_WRPROTECT
  375. #define __HAVE_ARCH_PTE_SAME
  376. #include <asm-generic/pgtable.h>
  377. #endif /* _X86_64_PGTABLE_H */