pgtable.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432
  1. /*
  2. * Copyright (C) 2012 Regents of the University of California
  3. *
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public License
  6. * as published by the Free Software Foundation, version 2.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. */
  13. #ifndef _ASM_RISCV_PGTABLE_H
  14. #define _ASM_RISCV_PGTABLE_H
  15. #include <linux/mmzone.h>
  16. #include <asm/pgtable-bits.h>
  17. #ifndef __ASSEMBLY__
  18. /* Page Upper Directory not used in RISC-V */
  19. #include <asm-generic/pgtable-nopud.h>
  20. #include <asm/page.h>
  21. #include <asm/tlbflush.h>
  22. #include <linux/mm_types.h>
  23. #ifdef CONFIG_64BIT
  24. #include <asm/pgtable-64.h>
  25. #else
  26. #include <asm/pgtable-32.h>
  27. #endif /* CONFIG_64BIT */
  28. /* Number of entries in the page global directory */
  29. #define PTRS_PER_PGD (PAGE_SIZE / sizeof(pgd_t))
  30. /* Number of entries in the page table */
  31. #define PTRS_PER_PTE (PAGE_SIZE / sizeof(pte_t))
  32. /* Number of PGD entries that a user-mode program can use */
  33. #define USER_PTRS_PER_PGD (TASK_SIZE / PGDIR_SIZE)
  34. #define FIRST_USER_ADDRESS 0
  35. /* Page protection bits */
  36. #define _PAGE_BASE (_PAGE_PRESENT | _PAGE_ACCESSED | _PAGE_USER)
  37. #define PAGE_NONE __pgprot(0)
  38. #define PAGE_READ __pgprot(_PAGE_BASE | _PAGE_READ)
  39. #define PAGE_WRITE __pgprot(_PAGE_BASE | _PAGE_READ | _PAGE_WRITE)
  40. #define PAGE_EXEC __pgprot(_PAGE_BASE | _PAGE_EXEC)
  41. #define PAGE_READ_EXEC __pgprot(_PAGE_BASE | _PAGE_READ | _PAGE_EXEC)
  42. #define PAGE_WRITE_EXEC __pgprot(_PAGE_BASE | _PAGE_READ | \
  43. _PAGE_EXEC | _PAGE_WRITE)
  44. #define PAGE_COPY PAGE_READ
  45. #define PAGE_COPY_EXEC PAGE_EXEC
  46. #define PAGE_COPY_READ_EXEC PAGE_READ_EXEC
  47. #define PAGE_SHARED PAGE_WRITE
  48. #define PAGE_SHARED_EXEC PAGE_WRITE_EXEC
  49. #define _PAGE_KERNEL (_PAGE_READ \
  50. | _PAGE_WRITE \
  51. | _PAGE_PRESENT \
  52. | _PAGE_ACCESSED \
  53. | _PAGE_DIRTY)
  54. #define PAGE_KERNEL __pgprot(_PAGE_KERNEL)
  55. #define PAGE_KERNEL_EXEC __pgprot(_PAGE_KERNEL | _PAGE_EXEC)
  56. extern pgd_t swapper_pg_dir[];
  57. /* MAP_PRIVATE permissions: xwr (copy-on-write) */
  58. #define __P000 PAGE_NONE
  59. #define __P001 PAGE_READ
  60. #define __P010 PAGE_COPY
  61. #define __P011 PAGE_COPY
  62. #define __P100 PAGE_EXEC
  63. #define __P101 PAGE_READ_EXEC
  64. #define __P110 PAGE_COPY_EXEC
  65. #define __P111 PAGE_COPY_READ_EXEC
  66. /* MAP_SHARED permissions: xwr */
  67. #define __S000 PAGE_NONE
  68. #define __S001 PAGE_READ
  69. #define __S010 PAGE_SHARED
  70. #define __S011 PAGE_SHARED
  71. #define __S100 PAGE_EXEC
  72. #define __S101 PAGE_READ_EXEC
  73. #define __S110 PAGE_SHARED_EXEC
  74. #define __S111 PAGE_SHARED_EXEC
  75. /*
  76. * ZERO_PAGE is a global shared page that is always zero,
  77. * used for zero-mapped memory areas, etc.
  78. */
  79. extern unsigned long empty_zero_page[PAGE_SIZE / sizeof(unsigned long)];
  80. #define ZERO_PAGE(vaddr) (virt_to_page(empty_zero_page))
  81. static inline int pmd_present(pmd_t pmd)
  82. {
  83. return (pmd_val(pmd) & _PAGE_PRESENT);
  84. }
  85. static inline int pmd_none(pmd_t pmd)
  86. {
  87. return (pmd_val(pmd) == 0);
  88. }
  89. static inline int pmd_bad(pmd_t pmd)
  90. {
  91. return !pmd_present(pmd);
  92. }
  93. static inline void set_pmd(pmd_t *pmdp, pmd_t pmd)
  94. {
  95. *pmdp = pmd;
  96. }
  97. static inline void pmd_clear(pmd_t *pmdp)
  98. {
  99. set_pmd(pmdp, __pmd(0));
  100. }
  101. static inline pgd_t pfn_pgd(unsigned long pfn, pgprot_t prot)
  102. {
  103. return __pgd((pfn << _PAGE_PFN_SHIFT) | pgprot_val(prot));
  104. }
  105. #define pgd_index(addr) (((addr) >> PGDIR_SHIFT) & (PTRS_PER_PGD - 1))
  106. /* Locate an entry in the page global directory */
  107. static inline pgd_t *pgd_offset(const struct mm_struct *mm, unsigned long addr)
  108. {
  109. return mm->pgd + pgd_index(addr);
  110. }
  111. /* Locate an entry in the kernel page global directory */
  112. #define pgd_offset_k(addr) pgd_offset(&init_mm, (addr))
  113. static inline struct page *pmd_page(pmd_t pmd)
  114. {
  115. return pfn_to_page(pmd_val(pmd) >> _PAGE_PFN_SHIFT);
  116. }
  117. static inline unsigned long pmd_page_vaddr(pmd_t pmd)
  118. {
  119. return (unsigned long)pfn_to_virt(pmd_val(pmd) >> _PAGE_PFN_SHIFT);
  120. }
  121. /* Yields the page frame number (PFN) of a page table entry */
  122. static inline unsigned long pte_pfn(pte_t pte)
  123. {
  124. return (pte_val(pte) >> _PAGE_PFN_SHIFT);
  125. }
  126. #define pte_page(x) pfn_to_page(pte_pfn(x))
  127. /* Constructs a page table entry */
  128. static inline pte_t pfn_pte(unsigned long pfn, pgprot_t prot)
  129. {
  130. return __pte((pfn << _PAGE_PFN_SHIFT) | pgprot_val(prot));
  131. }
  132. static inline pte_t mk_pte(struct page *page, pgprot_t prot)
  133. {
  134. return pfn_pte(page_to_pfn(page), prot);
  135. }
  136. #define pte_index(addr) (((addr) >> PAGE_SHIFT) & (PTRS_PER_PTE - 1))
  137. static inline pte_t *pte_offset_kernel(pmd_t *pmd, unsigned long addr)
  138. {
  139. return (pte_t *)pmd_page_vaddr(*pmd) + pte_index(addr);
  140. }
  141. #define pte_offset_map(dir, addr) pte_offset_kernel((dir), (addr))
  142. #define pte_unmap(pte) ((void)(pte))
  143. static inline int pte_present(pte_t pte)
  144. {
  145. return (pte_val(pte) & _PAGE_PRESENT);
  146. }
  147. static inline int pte_none(pte_t pte)
  148. {
  149. return (pte_val(pte) == 0);
  150. }
  151. static inline int pte_write(pte_t pte)
  152. {
  153. return pte_val(pte) & _PAGE_WRITE;
  154. }
  155. static inline int pte_exec(pte_t pte)
  156. {
  157. return pte_val(pte) & _PAGE_EXEC;
  158. }
  159. static inline int pte_huge(pte_t pte)
  160. {
  161. return pte_present(pte)
  162. && (pte_val(pte) & (_PAGE_READ | _PAGE_WRITE | _PAGE_EXEC));
  163. }
  164. static inline int pte_dirty(pte_t pte)
  165. {
  166. return pte_val(pte) & _PAGE_DIRTY;
  167. }
  168. static inline int pte_young(pte_t pte)
  169. {
  170. return pte_val(pte) & _PAGE_ACCESSED;
  171. }
  172. static inline int pte_special(pte_t pte)
  173. {
  174. return pte_val(pte) & _PAGE_SPECIAL;
  175. }
  176. /* static inline pte_t pte_rdprotect(pte_t pte) */
  177. static inline pte_t pte_wrprotect(pte_t pte)
  178. {
  179. return __pte(pte_val(pte) & ~(_PAGE_WRITE));
  180. }
  181. /* static inline pte_t pte_mkread(pte_t pte) */
  182. static inline pte_t pte_mkwrite(pte_t pte)
  183. {
  184. return __pte(pte_val(pte) | _PAGE_WRITE);
  185. }
  186. /* static inline pte_t pte_mkexec(pte_t pte) */
  187. static inline pte_t pte_mkdirty(pte_t pte)
  188. {
  189. return __pte(pte_val(pte) | _PAGE_DIRTY);
  190. }
  191. static inline pte_t pte_mkclean(pte_t pte)
  192. {
  193. return __pte(pte_val(pte) & ~(_PAGE_DIRTY));
  194. }
  195. static inline pte_t pte_mkyoung(pte_t pte)
  196. {
  197. return __pte(pte_val(pte) | _PAGE_ACCESSED);
  198. }
  199. static inline pte_t pte_mkold(pte_t pte)
  200. {
  201. return __pte(pte_val(pte) & ~(_PAGE_ACCESSED));
  202. }
  203. static inline pte_t pte_mkspecial(pte_t pte)
  204. {
  205. return __pte(pte_val(pte) | _PAGE_SPECIAL);
  206. }
  207. /* Modify page protection bits */
  208. static inline pte_t pte_modify(pte_t pte, pgprot_t newprot)
  209. {
  210. return __pte((pte_val(pte) & _PAGE_CHG_MASK) | pgprot_val(newprot));
  211. }
  212. #define pgd_ERROR(e) \
  213. pr_err("%s:%d: bad pgd " PTE_FMT ".\n", __FILE__, __LINE__, pgd_val(e))
  214. /* Commit new configuration to MMU hardware */
  215. static inline void update_mmu_cache(struct vm_area_struct *vma,
  216. unsigned long address, pte_t *ptep)
  217. {
  218. /*
  219. * The kernel assumes that TLBs don't cache invalid entries, but
  220. * in RISC-V, SFENCE.VMA specifies an ordering constraint, not a
  221. * cache flush; it is necessary even after writing invalid entries.
  222. * Relying on flush_tlb_fix_spurious_fault would suffice, but
  223. * the extra traps reduce performance. So, eagerly SFENCE.VMA.
  224. */
  225. local_flush_tlb_page(address);
  226. }
  227. #define __HAVE_ARCH_PTE_SAME
  228. static inline int pte_same(pte_t pte_a, pte_t pte_b)
  229. {
  230. return pte_val(pte_a) == pte_val(pte_b);
  231. }
  232. /*
  233. * Certain architectures need to do special things when PTEs within
  234. * a page table are directly modified. Thus, the following hook is
  235. * made available.
  236. */
  237. static inline void set_pte(pte_t *ptep, pte_t pteval)
  238. {
  239. *ptep = pteval;
  240. }
  241. void flush_icache_pte(pte_t pte);
  242. static inline void set_pte_at(struct mm_struct *mm,
  243. unsigned long addr, pte_t *ptep, pte_t pteval)
  244. {
  245. if (pte_present(pteval) && pte_exec(pteval))
  246. flush_icache_pte(pteval);
  247. set_pte(ptep, pteval);
  248. }
  249. static inline void pte_clear(struct mm_struct *mm,
  250. unsigned long addr, pte_t *ptep)
  251. {
  252. set_pte_at(mm, addr, ptep, __pte(0));
  253. }
  254. #define __HAVE_ARCH_PTEP_SET_ACCESS_FLAGS
  255. static inline int ptep_set_access_flags(struct vm_area_struct *vma,
  256. unsigned long address, pte_t *ptep,
  257. pte_t entry, int dirty)
  258. {
  259. if (!pte_same(*ptep, entry))
  260. set_pte_at(vma->vm_mm, address, ptep, entry);
  261. /*
  262. * update_mmu_cache will unconditionally execute, handling both
  263. * the case that the PTE changed and the spurious fault case.
  264. */
  265. return true;
  266. }
  267. #define __HAVE_ARCH_PTEP_GET_AND_CLEAR
  268. static inline pte_t ptep_get_and_clear(struct mm_struct *mm,
  269. unsigned long address, pte_t *ptep)
  270. {
  271. return __pte(atomic_long_xchg((atomic_long_t *)ptep, 0));
  272. }
  273. #define __HAVE_ARCH_PTEP_TEST_AND_CLEAR_YOUNG
  274. static inline int ptep_test_and_clear_young(struct vm_area_struct *vma,
  275. unsigned long address,
  276. pte_t *ptep)
  277. {
  278. if (!pte_young(*ptep))
  279. return 0;
  280. return test_and_clear_bit(_PAGE_ACCESSED_OFFSET, &pte_val(*ptep));
  281. }
  282. #define __HAVE_ARCH_PTEP_SET_WRPROTECT
  283. static inline void ptep_set_wrprotect(struct mm_struct *mm,
  284. unsigned long address, pte_t *ptep)
  285. {
  286. atomic_long_and(~(unsigned long)_PAGE_WRITE, (atomic_long_t *)ptep);
  287. }
  288. #define __HAVE_ARCH_PTEP_CLEAR_YOUNG_FLUSH
  289. static inline int ptep_clear_flush_young(struct vm_area_struct *vma,
  290. unsigned long address, pte_t *ptep)
  291. {
  292. /*
  293. * This comment is borrowed from x86, but applies equally to RISC-V:
  294. *
  295. * Clearing the accessed bit without a TLB flush
  296. * doesn't cause data corruption. [ It could cause incorrect
  297. * page aging and the (mistaken) reclaim of hot pages, but the
  298. * chance of that should be relatively low. ]
  299. *
  300. * So as a performance optimization don't flush the TLB when
  301. * clearing the accessed bit, it will eventually be flushed by
  302. * a context switch or a VM operation anyway. [ In the rare
  303. * event of it not getting flushed for a long time the delay
  304. * shouldn't really matter because there's no real memory
  305. * pressure for swapout to react to. ]
  306. */
  307. return ptep_test_and_clear_young(vma, address, ptep);
  308. }
  309. /*
  310. * Encode and decode a swap entry
  311. *
  312. * Format of swap PTE:
  313. * bit 0: _PAGE_PRESENT (zero)
  314. * bit 1: reserved for future use (zero)
  315. * bits 2 to 6: swap type
  316. * bits 7 to XLEN-1: swap offset
  317. */
  318. #define __SWP_TYPE_SHIFT 2
  319. #define __SWP_TYPE_BITS 5
  320. #define __SWP_TYPE_MASK ((1UL << __SWP_TYPE_BITS) - 1)
  321. #define __SWP_OFFSET_SHIFT (__SWP_TYPE_BITS + __SWP_TYPE_SHIFT)
  322. #define MAX_SWAPFILES_CHECK() \
  323. BUILD_BUG_ON(MAX_SWAPFILES_SHIFT > __SWP_TYPE_BITS)
  324. #define __swp_type(x) (((x).val >> __SWP_TYPE_SHIFT) & __SWP_TYPE_MASK)
  325. #define __swp_offset(x) ((x).val >> __SWP_OFFSET_SHIFT)
  326. #define __swp_entry(type, offset) ((swp_entry_t) \
  327. { ((type) << __SWP_TYPE_SHIFT) | ((offset) << __SWP_OFFSET_SHIFT) })
  328. #define __pte_to_swp_entry(pte) ((swp_entry_t) { pte_val(pte) })
  329. #define __swp_entry_to_pte(x) ((pte_t) { (x).val })
  330. #ifdef CONFIG_FLATMEM
  331. #define kern_addr_valid(addr) (1) /* FIXME */
  332. #endif
  333. extern void paging_init(void);
  334. static inline void pgtable_cache_init(void)
  335. {
  336. /* No page table caches to initialize */
  337. }
  338. #define VMALLOC_SIZE (KERN_VIRT_SIZE >> 1)
  339. #define VMALLOC_END (PAGE_OFFSET - 1)
  340. #define VMALLOC_START (PAGE_OFFSET - VMALLOC_SIZE)
  341. /*
  342. * Task size is 0x40000000000 for RV64 or 0xb800000 for RV32.
  343. * Note that PGDIR_SIZE must evenly divide TASK_SIZE.
  344. */
  345. #ifdef CONFIG_64BIT
  346. #define TASK_SIZE (PGDIR_SIZE * PTRS_PER_PGD / 2)
  347. #else
  348. #define TASK_SIZE VMALLOC_START
  349. #endif
  350. #include <asm-generic/pgtable.h>
  351. #endif /* !__ASSEMBLY__ */
  352. #endif /* _ASM_RISCV_PGTABLE_H */