pgtable.h 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557
  1. /* pgtable.h: FR-V page table mangling
  2. *
  3. * Copyright (C) 2004 Red Hat, Inc. All Rights Reserved.
  4. * Written by David Howells (dhowells@redhat.com)
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License
  8. * as published by the Free Software Foundation; either version
  9. * 2 of the License, or (at your option) any later version.
  10. *
  11. * Derived from:
  12. * include/asm-m68knommu/pgtable.h
  13. * include/asm-i386/pgtable.h
  14. */
  15. #ifndef _ASM_PGTABLE_H
  16. #define _ASM_PGTABLE_H
  17. #include <linux/config.h>
  18. #include <asm/mem-layout.h>
  19. #include <asm/setup.h>
  20. #include <asm/processor.h>
  21. #ifndef __ASSEMBLY__
  22. #include <linux/threads.h>
  23. #include <linux/slab.h>
  24. #include <linux/list.h>
  25. #include <linux/spinlock.h>
  26. struct mm_struct;
  27. struct vm_area_struct;
  28. #endif
  29. #ifndef __ASSEMBLY__
  30. #if defined(CONFIG_HIGHPTE)
  31. typedef unsigned long pte_addr_t;
  32. #else
  33. typedef pte_t *pte_addr_t;
  34. #endif
  35. #endif
  36. /*****************************************************************************/
  37. /*
  38. * MMU-less operation case first
  39. */
  40. #ifndef CONFIG_MMU
  41. #define pgd_present(pgd) (1) /* pages are always present on NO_MM */
  42. #define pgd_none(pgd) (0)
  43. #define pgd_bad(pgd) (0)
  44. #define pgd_clear(pgdp)
  45. #define kern_addr_valid(addr) (1)
  46. #define pmd_offset(a, b) ((void *) 0)
  47. #define PAGE_NONE __pgprot(0) /* these mean nothing to NO_MM */
  48. #define PAGE_SHARED __pgprot(0) /* these mean nothing to NO_MM */
  49. #define PAGE_COPY __pgprot(0) /* these mean nothing to NO_MM */
  50. #define PAGE_READONLY __pgprot(0) /* these mean nothing to NO_MM */
  51. #define PAGE_KERNEL __pgprot(0) /* these mean nothing to NO_MM */
  52. #define __swp_type(x) (0)
  53. #define __swp_offset(x) (0)
  54. #define __swp_entry(typ,off) ((swp_entry_t) { ((typ) | ((off) << 7)) })
  55. #define __pte_to_swp_entry(pte) ((swp_entry_t) { pte_val(pte) })
  56. #define __swp_entry_to_pte(x) ((pte_t) { (x).val })
  57. #ifndef __ASSEMBLY__
  58. static inline int pte_file(pte_t pte) { return 0; }
  59. #endif
  60. #define ZERO_PAGE(vaddr) ({ BUG(); NULL; })
  61. #define swapper_pg_dir ((pgd_t *) NULL)
  62. #define pgtable_cache_init() do {} while(0)
  63. #else /* !CONFIG_MMU */
  64. /*****************************************************************************/
  65. /*
  66. * then MMU operation
  67. */
  68. /*
  69. * ZERO_PAGE is a global shared page that is always zero: used
  70. * for zero-mapped memory areas etc..
  71. */
  72. #ifndef __ASSEMBLY__
  73. extern unsigned long empty_zero_page;
  74. #define ZERO_PAGE(vaddr) virt_to_page(empty_zero_page)
  75. #endif
  76. /*
  77. * we use 2-level page tables, folding the PMD (mid-level table) into the PGE (top-level entry)
  78. * [see Documentation/fujitsu/frv/mmu-layout.txt]
  79. *
  80. * Page Directory:
  81. * - Size: 16KB
  82. * - 64 PGEs per PGD
  83. * - Each PGE holds 1 PUD and covers 64MB
  84. *
  85. * Page Upper Directory:
  86. * - Size: 256B
  87. * - 1 PUE per PUD
  88. * - Each PUE holds 1 PMD and covers 64MB
  89. *
  90. * Page Mid-Level Directory
  91. * - Size: 256B
  92. * - 1 PME per PMD
  93. * - Each PME holds 64 STEs, all of which point to separate chunks of the same Page Table
  94. * - All STEs are instantiated at the same time
  95. *
  96. * Page Table
  97. * - Size: 16KB
  98. * - 4096 PTEs per PT
  99. * - Each Linux PT is subdivided into 64 FR451 PT's, each of which holds 64 entries
  100. *
  101. * Pages
  102. * - Size: 4KB
  103. *
  104. * total PTEs
  105. * = 1 PML4E * 64 PGEs * 1 PUEs * 1 PMEs * 4096 PTEs
  106. * = 1 PML4E * 64 PGEs * 64 STEs * 64 PTEs/FR451-PT
  107. * = 262144 (or 256 * 1024)
  108. */
  109. #define PGDIR_SHIFT 26
  110. #define PGDIR_SIZE (1UL << PGDIR_SHIFT)
  111. #define PGDIR_MASK (~(PGDIR_SIZE - 1))
  112. #define PTRS_PER_PGD 64
  113. #define PUD_SHIFT 26
  114. #define PTRS_PER_PUD 1
  115. #define PUD_SIZE (1UL << PUD_SHIFT)
  116. #define PUD_MASK (~(PUD_SIZE - 1))
  117. #define PUE_SIZE 256
  118. #define PMD_SHIFT 26
  119. #define PMD_SIZE (1UL << PMD_SHIFT)
  120. #define PMD_MASK (~(PMD_SIZE - 1))
  121. #define PTRS_PER_PMD 1
  122. #define PME_SIZE 256
  123. #define __frv_PT_SIZE 256
  124. #define PTRS_PER_PTE 4096
  125. #define USER_PGDS_IN_LAST_PML4 (TASK_SIZE / PGDIR_SIZE)
  126. #define FIRST_USER_ADDRESS 0
  127. #define USER_PGD_PTRS (PAGE_OFFSET >> PGDIR_SHIFT)
  128. #define KERNEL_PGD_PTRS (PTRS_PER_PGD - USER_PGD_PTRS)
  129. #define TWOLEVEL_PGDIR_SHIFT 26
  130. #define BOOT_USER_PGD_PTRS (__PAGE_OFFSET >> TWOLEVEL_PGDIR_SHIFT)
  131. #define BOOT_KERNEL_PGD_PTRS (PTRS_PER_PGD - BOOT_USER_PGD_PTRS)
  132. #ifndef __ASSEMBLY__
  133. extern pgd_t swapper_pg_dir[PTRS_PER_PGD];
  134. #define pte_ERROR(e) \
  135. printk("%s:%d: bad pte %08lx.\n", __FILE__, __LINE__, (e).pte)
  136. #define pmd_ERROR(e) \
  137. printk("%s:%d: bad pmd %08lx.\n", __FILE__, __LINE__, pmd_val(e))
  138. #define pud_ERROR(e) \
  139. printk("%s:%d: bad pud %08lx.\n", __FILE__, __LINE__, pmd_val(pud_val(e)))
  140. #define pgd_ERROR(e) \
  141. printk("%s:%d: bad pgd %08lx.\n", __FILE__, __LINE__, pmd_val(pud_val(pgd_val(e))))
  142. /*
  143. * Certain architectures need to do special things when PTEs
  144. * within a page table are directly modified. Thus, the following
  145. * hook is made available.
  146. */
  147. #define set_pte(pteptr, pteval) \
  148. do { \
  149. *(pteptr) = (pteval); \
  150. asm volatile("dcf %M0" :: "U"(*pteptr)); \
  151. } while(0)
  152. #define set_pte_at(mm,addr,ptep,pteval) set_pte(ptep,pteval)
  153. #define set_pte_atomic(pteptr, pteval) set_pte((pteptr), (pteval))
  154. /*
  155. * pgd_offset() returns a (pgd_t *)
  156. * pgd_index() is used get the offset into the pgd page's array of pgd_t's;
  157. */
  158. #define pgd_offset(mm, address) ((mm)->pgd + pgd_index(address))
  159. /*
  160. * a shortcut which implies the use of the kernel's pgd, instead
  161. * of a process's
  162. */
  163. #define pgd_offset_k(address) pgd_offset(&init_mm, address)
  164. /*
  165. * The "pgd_xxx()" functions here are trivial for a folded two-level
  166. * setup: the pud is never bad, and a pud always exists (as it's folded
  167. * into the pgd entry)
  168. */
  169. static inline int pgd_none(pgd_t pgd) { return 0; }
  170. static inline int pgd_bad(pgd_t pgd) { return 0; }
  171. static inline int pgd_present(pgd_t pgd) { return 1; }
  172. static inline void pgd_clear(pgd_t *pgd) { }
  173. #define pgd_populate(mm, pgd, pud) do { } while (0)
  174. /*
  175. * (puds are folded into pgds so this doesn't get actually called,
  176. * but the define is needed for a generic inline function.)
  177. */
  178. #define set_pgd(pgdptr, pgdval) \
  179. do { \
  180. memcpy((pgdptr), &(pgdval), sizeof(pgd_t)); \
  181. asm volatile("dcf %M0" :: "U"(*(pgdptr))); \
  182. } while(0)
  183. static inline pud_t *pud_offset(pgd_t *pgd, unsigned long address)
  184. {
  185. return (pud_t *) pgd;
  186. }
  187. #define pgd_page(pgd) (pud_page((pud_t){ pgd }))
  188. #define pgd_page_kernel(pgd) (pud_page_kernel((pud_t){ pgd }))
  189. /*
  190. * allocating and freeing a pud is trivial: the 1-entry pud is
  191. * inside the pgd, so has no extra memory associated with it.
  192. */
  193. #define pud_alloc_one(mm, address) NULL
  194. #define pud_free(x) do { } while (0)
  195. #define __pud_free_tlb(tlb, x) do { } while (0)
  196. /*
  197. * The "pud_xxx()" functions here are trivial for a folded two-level
  198. * setup: the pmd is never bad, and a pmd always exists (as it's folded
  199. * into the pud entry)
  200. */
  201. static inline int pud_none(pud_t pud) { return 0; }
  202. static inline int pud_bad(pud_t pud) { return 0; }
  203. static inline int pud_present(pud_t pud) { return 1; }
  204. static inline void pud_clear(pud_t *pud) { }
  205. #define pud_populate(mm, pmd, pte) do { } while (0)
  206. /*
  207. * (pmds are folded into puds so this doesn't get actually called,
  208. * but the define is needed for a generic inline function.)
  209. */
  210. #define set_pud(pudptr, pudval) set_pmd((pmd_t *)(pudptr), (pmd_t) { pudval })
  211. #define pud_page(pud) (pmd_page((pmd_t){ pud }))
  212. #define pud_page_kernel(pud) (pmd_page_kernel((pmd_t){ pud }))
  213. /*
  214. * (pmds are folded into pgds so this doesn't get actually called,
  215. * but the define is needed for a generic inline function.)
  216. */
  217. extern void __set_pmd(pmd_t *pmdptr, unsigned long __pmd);
  218. #define set_pmd(pmdptr, pmdval) \
  219. do { \
  220. __set_pmd((pmdptr), (pmdval).ste[0]); \
  221. } while(0)
  222. #define __pmd_index(address) 0
  223. static inline pmd_t *pmd_offset(pud_t *dir, unsigned long address)
  224. {
  225. return (pmd_t *) dir + __pmd_index(address);
  226. }
  227. #define pte_same(a, b) ((a).pte == (b).pte)
  228. #define pte_page(x) (mem_map + ((unsigned long)(((x).pte >> PAGE_SHIFT))))
  229. #define pte_none(x) (!(x).pte)
  230. #define pte_pfn(x) ((unsigned long)(((x).pte >> PAGE_SHIFT)))
  231. #define pfn_pte(pfn, prot) __pte(((pfn) << PAGE_SHIFT) | pgprot_val(prot))
  232. #define pfn_pmd(pfn, prot) __pmd(((pfn) << PAGE_SHIFT) | pgprot_val(prot))
  233. #define VMALLOC_VMADDR(x) ((unsigned long) (x))
  234. #endif /* !__ASSEMBLY__ */
  235. /*
  236. * control flags in AMPR registers and TLB entries
  237. */
  238. #define _PAGE_BIT_PRESENT xAMPRx_V_BIT
  239. #define _PAGE_BIT_WP DAMPRx_WP_BIT
  240. #define _PAGE_BIT_NOCACHE xAMPRx_C_BIT
  241. #define _PAGE_BIT_SUPER xAMPRx_S_BIT
  242. #define _PAGE_BIT_ACCESSED xAMPRx_RESERVED8_BIT
  243. #define _PAGE_BIT_DIRTY xAMPRx_M_BIT
  244. #define _PAGE_BIT_NOTGLOBAL xAMPRx_NG_BIT
  245. #define _PAGE_PRESENT xAMPRx_V
  246. #define _PAGE_WP DAMPRx_WP
  247. #define _PAGE_NOCACHE xAMPRx_C
  248. #define _PAGE_SUPER xAMPRx_S
  249. #define _PAGE_ACCESSED xAMPRx_RESERVED8 /* accessed if set */
  250. #define _PAGE_DIRTY xAMPRx_M
  251. #define _PAGE_NOTGLOBAL xAMPRx_NG
  252. #define _PAGE_RESERVED_MASK (xAMPRx_RESERVED8 | xAMPRx_RESERVED13)
  253. #define _PAGE_FILE 0x002 /* set:pagecache unset:swap */
  254. #define _PAGE_PROTNONE 0x000 /* If not present */
  255. #define _PAGE_CHG_MASK (PTE_MASK | _PAGE_ACCESSED | _PAGE_DIRTY)
  256. #define __PGPROT_BASE \
  257. (_PAGE_PRESENT | xAMPRx_SS_16Kb | xAMPRx_D | _PAGE_NOTGLOBAL | _PAGE_ACCESSED)
  258. #define PAGE_NONE __pgprot(_PAGE_PROTNONE | _PAGE_ACCESSED)
  259. #define PAGE_SHARED __pgprot(__PGPROT_BASE)
  260. #define PAGE_COPY __pgprot(__PGPROT_BASE | _PAGE_WP)
  261. #define PAGE_READONLY __pgprot(__PGPROT_BASE | _PAGE_WP)
  262. #define __PAGE_KERNEL (__PGPROT_BASE | _PAGE_SUPER | _PAGE_DIRTY)
  263. #define __PAGE_KERNEL_NOCACHE (__PGPROT_BASE | _PAGE_SUPER | _PAGE_DIRTY | _PAGE_NOCACHE)
  264. #define __PAGE_KERNEL_RO (__PGPROT_BASE | _PAGE_SUPER | _PAGE_DIRTY | _PAGE_WP)
  265. #define MAKE_GLOBAL(x) __pgprot((x) & ~_PAGE_NOTGLOBAL)
  266. #define PAGE_KERNEL MAKE_GLOBAL(__PAGE_KERNEL)
  267. #define PAGE_KERNEL_RO MAKE_GLOBAL(__PAGE_KERNEL_RO)
  268. #define PAGE_KERNEL_NOCACHE MAKE_GLOBAL(__PAGE_KERNEL_NOCACHE)
  269. #define _PAGE_TABLE (_PAGE_PRESENT | xAMPRx_SS_16Kb)
  270. #ifndef __ASSEMBLY__
  271. /*
  272. * The FR451 can do execute protection by virtue of having separate TLB miss handlers for
  273. * instruction access and for data access. However, we don't have enough reserved bits to say
  274. * "execute only", so we don't bother. If you can read it, you can execute it and vice versa.
  275. */
  276. #define __P000 PAGE_NONE
  277. #define __P001 PAGE_READONLY
  278. #define __P010 PAGE_COPY
  279. #define __P011 PAGE_COPY
  280. #define __P100 PAGE_READONLY
  281. #define __P101 PAGE_READONLY
  282. #define __P110 PAGE_COPY
  283. #define __P111 PAGE_COPY
  284. #define __S000 PAGE_NONE
  285. #define __S001 PAGE_READONLY
  286. #define __S010 PAGE_SHARED
  287. #define __S011 PAGE_SHARED
  288. #define __S100 PAGE_READONLY
  289. #define __S101 PAGE_READONLY
  290. #define __S110 PAGE_SHARED
  291. #define __S111 PAGE_SHARED
  292. /*
  293. * Define this to warn about kernel memory accesses that are
  294. * done without a 'access_ok(VERIFY_WRITE,..)'
  295. */
  296. #undef TEST_ACCESS_OK
  297. #define pte_present(x) (pte_val(x) & _PAGE_PRESENT)
  298. #define pte_clear(mm,addr,xp) do { set_pte_at(mm, addr, xp, __pte(0)); } while (0)
  299. #define pmd_none(x) (!pmd_val(x))
  300. #define pmd_present(x) (pmd_val(x) & _PAGE_PRESENT)
  301. #define pmd_bad(x) (pmd_val(x) & xAMPRx_SS)
  302. #define pmd_clear(xp) do { __set_pmd(xp, 0); } while(0)
  303. #define pmd_page_kernel(pmd) \
  304. ((unsigned long) __va(pmd_val(pmd) & PAGE_MASK))
  305. #ifndef CONFIG_DISCONTIGMEM
  306. #define pmd_page(pmd) (pfn_to_page(pmd_val(pmd) >> PAGE_SHIFT))
  307. #endif
  308. #define pages_to_mb(x) ((x) >> (20-PAGE_SHIFT))
  309. /*
  310. * The following only work if pte_present() is true.
  311. * Undefined behaviour if not..
  312. */
  313. static inline int pte_read(pte_t pte) { return !((pte).pte & _PAGE_SUPER); }
  314. static inline int pte_exec(pte_t pte) { return !((pte).pte & _PAGE_SUPER); }
  315. static inline int pte_dirty(pte_t pte) { return (pte).pte & _PAGE_DIRTY; }
  316. static inline int pte_young(pte_t pte) { return (pte).pte & _PAGE_ACCESSED; }
  317. static inline int pte_write(pte_t pte) { return !((pte).pte & _PAGE_WP); }
  318. static inline pte_t pte_rdprotect(pte_t pte) { (pte).pte |= _PAGE_SUPER; return pte; }
  319. static inline pte_t pte_exprotect(pte_t pte) { (pte).pte |= _PAGE_SUPER; return pte; }
  320. static inline pte_t pte_mkclean(pte_t pte) { (pte).pte &= ~_PAGE_DIRTY; return pte; }
  321. static inline pte_t pte_mkold(pte_t pte) { (pte).pte &= ~_PAGE_ACCESSED; return pte; }
  322. static inline pte_t pte_wrprotect(pte_t pte) { (pte).pte |= _PAGE_WP; return pte; }
  323. static inline pte_t pte_mkread(pte_t pte) { (pte).pte &= ~_PAGE_SUPER; return pte; }
  324. static inline pte_t pte_mkexec(pte_t pte) { (pte).pte &= ~_PAGE_SUPER; return pte; }
  325. static inline pte_t pte_mkdirty(pte_t pte) { (pte).pte |= _PAGE_DIRTY; return pte; }
  326. static inline pte_t pte_mkyoung(pte_t pte) { (pte).pte |= _PAGE_ACCESSED; return pte; }
  327. static inline pte_t pte_mkwrite(pte_t pte) { (pte).pte &= ~_PAGE_WP; return pte; }
  328. static inline int ptep_test_and_clear_dirty(struct vm_area_struct *vma, unsigned long addr, pte_t *ptep)
  329. {
  330. int i = test_and_clear_bit(_PAGE_BIT_DIRTY, ptep);
  331. asm volatile("dcf %M0" :: "U"(*ptep));
  332. return i;
  333. }
  334. static inline int ptep_test_and_clear_young(struct vm_area_struct *vma, unsigned long addr, pte_t *ptep)
  335. {
  336. int i = test_and_clear_bit(_PAGE_BIT_ACCESSED, ptep);
  337. asm volatile("dcf %M0" :: "U"(*ptep));
  338. return i;
  339. }
  340. static inline pte_t ptep_get_and_clear(struct mm_struct *mm, unsigned long addr, pte_t *ptep)
  341. {
  342. unsigned long x = xchg(&ptep->pte, 0);
  343. asm volatile("dcf %M0" :: "U"(*ptep));
  344. return __pte(x);
  345. }
  346. static inline void ptep_set_wrprotect(struct mm_struct *mm, unsigned long addr, pte_t *ptep)
  347. {
  348. set_bit(_PAGE_BIT_WP, ptep);
  349. asm volatile("dcf %M0" :: "U"(*ptep));
  350. }
  351. /*
  352. * Macro to mark a page protection value as "uncacheable"
  353. */
  354. #define pgprot_noncached(prot) (__pgprot(pgprot_val(prot) | _PAGE_NOCACHE))
  355. /*
  356. * Conversion functions: convert a page and protection to a page entry,
  357. * and a page entry and page directory to the page they refer to.
  358. */
  359. #define mk_pte(page, pgprot) pfn_pte(page_to_pfn(page), (pgprot))
  360. #define mk_pte_huge(entry) ((entry).pte_low |= _PAGE_PRESENT | _PAGE_PSE)
  361. /* This takes a physical page address that is used by the remapping functions */
  362. #define mk_pte_phys(physpage, pgprot) pfn_pte((physpage) >> PAGE_SHIFT, pgprot)
  363. static inline pte_t pte_modify(pte_t pte, pgprot_t newprot)
  364. {
  365. pte.pte &= _PAGE_CHG_MASK;
  366. pte.pte |= pgprot_val(newprot);
  367. return pte;
  368. }
  369. /* to find an entry in a page-table-directory. */
  370. #define pgd_index(address) (((address) >> PGDIR_SHIFT) & (PTRS_PER_PGD - 1))
  371. #define pgd_index_k(addr) pgd_index(addr)
  372. /* Find an entry in the bottom-level page table.. */
  373. #define __pte_index(address) (((address) >> PAGE_SHIFT) & (PTRS_PER_PTE - 1))
  374. /*
  375. * the pte page can be thought of an array like this: pte_t[PTRS_PER_PTE]
  376. *
  377. * this macro returns the index of the entry in the pte page which would
  378. * control the given virtual address
  379. */
  380. #define pte_index(address) \
  381. (((address) >> PAGE_SHIFT) & (PTRS_PER_PTE - 1))
  382. #define pte_offset_kernel(dir, address) \
  383. ((pte_t *) pmd_page_kernel(*(dir)) + pte_index(address))
  384. #if defined(CONFIG_HIGHPTE)
  385. #define pte_offset_map(dir, address) \
  386. ((pte_t *)kmap_atomic(pmd_page(*(dir)),KM_PTE0) + pte_index(address))
  387. #define pte_offset_map_nested(dir, address) \
  388. ((pte_t *)kmap_atomic(pmd_page(*(dir)),KM_PTE1) + pte_index(address))
  389. #define pte_unmap(pte) kunmap_atomic(pte, KM_PTE0)
  390. #define pte_unmap_nested(pte) kunmap_atomic((pte), KM_PTE1)
  391. #else
  392. #define pte_offset_map(dir, address) \
  393. ((pte_t *)page_address(pmd_page(*(dir))) + pte_index(address))
  394. #define pte_offset_map_nested(dir, address) pte_offset_map((dir), (address))
  395. #define pte_unmap(pte) do { } while (0)
  396. #define pte_unmap_nested(pte) do { } while (0)
  397. #endif
  398. /*
  399. * Handle swap and file entries
  400. * - the PTE is encoded in the following format:
  401. * bit 0: Must be 0 (!_PAGE_PRESENT)
  402. * bit 1: Type: 0 for swap, 1 for file (_PAGE_FILE)
  403. * bits 2-7: Swap type
  404. * bits 8-31: Swap offset
  405. * bits 2-31: File pgoff
  406. */
  407. #define __swp_type(x) (((x).val >> 2) & 0x1f)
  408. #define __swp_offset(x) ((x).val >> 8)
  409. #define __swp_entry(type, offset) ((swp_entry_t) { ((type) << 2) | ((offset) << 8) })
  410. #define __pte_to_swp_entry(pte) ((swp_entry_t) { (pte).pte })
  411. #define __swp_entry_to_pte(x) ((pte_t) { (x).val })
  412. static inline int pte_file(pte_t pte)
  413. {
  414. return pte.pte & _PAGE_FILE;
  415. }
  416. #define PTE_FILE_MAX_BITS 29
  417. #define pte_to_pgoff(PTE) ((PTE).pte >> 2)
  418. #define pgoff_to_pte(off) __pte((off) << 2 | _PAGE_FILE)
  419. /* Needs to be defined here and not in linux/mm.h, as it is arch dependent */
  420. #define PageSkip(page) (0)
  421. #define kern_addr_valid(addr) (1)
  422. #define io_remap_pfn_range(vma, vaddr, pfn, size, prot) \
  423. remap_pfn_range(vma, vaddr, pfn, size, prot)
  424. #define MK_IOSPACE_PFN(space, pfn) (pfn)
  425. #define GET_IOSPACE(pfn) 0
  426. #define GET_PFN(pfn) (pfn)
  427. #define __HAVE_ARCH_PTEP_TEST_AND_CLEAR_YOUNG
  428. #define __HAVE_ARCH_PTEP_TEST_AND_CLEAR_DIRTY
  429. #define __HAVE_ARCH_PTEP_GET_AND_CLEAR
  430. #define __HAVE_ARCH_PTEP_SET_WRPROTECT
  431. #define __HAVE_ARCH_PTE_SAME
  432. #include <asm-generic/pgtable.h>
  433. /*
  434. * preload information about a newly instantiated PTE into the SCR0/SCR1 PGE cache
  435. */
  436. static inline void update_mmu_cache(struct vm_area_struct *vma, unsigned long address, pte_t pte)
  437. {
  438. unsigned long ampr;
  439. pgd_t *pge = pgd_offset(current->mm, address);
  440. pud_t *pue = pud_offset(pge, address);
  441. pmd_t *pme = pmd_offset(pue, address);
  442. ampr = pme->ste[0] & 0xffffff00;
  443. ampr |= xAMPRx_L | xAMPRx_SS_16Kb | xAMPRx_S | xAMPRx_C | xAMPRx_V;
  444. asm volatile("movgs %0,scr0\n"
  445. "movgs %0,scr1\n"
  446. "movgs %1,dampr4\n"
  447. "movgs %1,dampr5\n"
  448. :
  449. : "r"(address), "r"(ampr)
  450. );
  451. }
  452. #ifdef CONFIG_PROC_FS
  453. extern char *proc_pid_status_frv_cxnr(struct mm_struct *mm, char *buffer);
  454. #endif
  455. extern void __init pgtable_cache_init(void);
  456. #endif /* !__ASSEMBLY__ */
  457. #endif /* !CONFIG_MMU */
  458. #ifndef __ASSEMBLY__
  459. extern void __init paging_init(void);
  460. #endif /* !__ASSEMBLY__ */
  461. #endif /* _ASM_PGTABLE_H */