pgtable.h 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445
  1. /*
  2. * include/asm-xtensa/pgtable.h
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License version 2 as
  6. * published by the Free Software Foundation.
  7. *
  8. * Copyright (C) 2001 - 2013 Tensilica Inc.
  9. */
  10. #ifndef _XTENSA_PGTABLE_H
  11. #define _XTENSA_PGTABLE_H
  12. #include <asm-generic/pgtable-nopmd.h>
  13. #include <asm/page.h>
  14. #include <asm/kmem_layout.h>
  15. /*
  16. * We only use two ring levels, user and kernel space.
  17. */
  18. #ifdef CONFIG_MMU
  19. #define USER_RING 1 /* user ring level */
  20. #else
  21. #define USER_RING 0
  22. #endif
  23. #define KERNEL_RING 0 /* kernel ring level */
  24. /*
  25. * The Xtensa architecture port of Linux has a two-level page table system,
  26. * i.e. the logical three-level Linux page table layout is folded.
  27. * Each task has the following memory page tables:
  28. *
  29. * PGD table (page directory), ie. 3rd-level page table:
  30. * One page (4 kB) of 1024 (PTRS_PER_PGD) pointers to PTE tables
  31. * (Architectures that don't have the PMD folded point to the PMD tables)
  32. *
  33. * The pointer to the PGD table for a given task can be retrieved from
  34. * the task structure (struct task_struct*) t, e.g. current():
  35. * (t->mm ? t->mm : t->active_mm)->pgd
  36. *
  37. * PMD tables (page middle-directory), ie. 2nd-level page tables:
  38. * Absent for the Xtensa architecture (folded, PTRS_PER_PMD == 1).
  39. *
  40. * PTE tables (page table entry), ie. 1st-level page tables:
  41. * One page (4 kB) of 1024 (PTRS_PER_PTE) PTEs with a special PTE
  42. * invalid_pte_table for absent mappings.
  43. *
  44. * The individual pages are 4 kB big with special pages for the empty_zero_page.
  45. */
  46. #define PGDIR_SHIFT 22
  47. #define PGDIR_SIZE (1UL << PGDIR_SHIFT)
  48. #define PGDIR_MASK (~(PGDIR_SIZE-1))
  49. /*
  50. * Entries per page directory level: we use two-level, so
  51. * we don't really have any PMD directory physically.
  52. */
  53. #define PTRS_PER_PTE 1024
  54. #define PTRS_PER_PTE_SHIFT 10
  55. #define PTRS_PER_PGD 1024
  56. #define PGD_ORDER 0
  57. #define USER_PTRS_PER_PGD (TASK_SIZE/PGDIR_SIZE)
  58. #define FIRST_USER_ADDRESS 0UL
  59. #define FIRST_USER_PGD_NR (FIRST_USER_ADDRESS >> PGDIR_SHIFT)
  60. /*
  61. * Virtual memory area. We keep a distance to other memory regions to be
  62. * on the safe side. We also use this area for cache aliasing.
  63. */
  64. #define VMALLOC_START (XCHAL_KSEG_CACHED_VADDR - 0x10000000)
  65. #define VMALLOC_END (VMALLOC_START + 0x07FEFFFF)
  66. #define TLBTEMP_BASE_1 (VMALLOC_END + 1)
  67. #define TLBTEMP_BASE_2 (TLBTEMP_BASE_1 + DCACHE_WAY_SIZE)
  68. #if 2 * DCACHE_WAY_SIZE > ICACHE_WAY_SIZE
  69. #define TLBTEMP_SIZE (2 * DCACHE_WAY_SIZE)
  70. #else
  71. #define TLBTEMP_SIZE ICACHE_WAY_SIZE
  72. #endif
  73. /*
  74. * For the Xtensa architecture, the PTE layout is as follows:
  75. *
  76. * 31------12 11 10-9 8-6 5-4 3-2 1-0
  77. * +-----------------------------------------+
  78. * | | Software | HARDWARE |
  79. * | PPN | ADW | RI |Attribute|
  80. * +-----------------------------------------+
  81. * pte_none | MBZ | 01 | 11 | 00 |
  82. * +-----------------------------------------+
  83. * present | PPN | 0 | 00 | ADW | RI | CA | wx |
  84. * +- - - - - - - - - - - - - - - - - - - - -+
  85. * (PAGE_NONE)| PPN | 0 | 00 | ADW | 01 | 11 | 11 |
  86. * +-----------------------------------------+
  87. * swap | index | type | 01 | 11 | 00 |
  88. * +-----------------------------------------+
  89. *
  90. * For T1050 hardware and earlier the layout differs for present and (PAGE_NONE)
  91. * +-----------------------------------------+
  92. * present | PPN | 0 | 00 | ADW | RI | CA | w1 |
  93. * +-----------------------------------------+
  94. * (PAGE_NONE)| PPN | 0 | 00 | ADW | 01 | 01 | 00 |
  95. * +-----------------------------------------+
  96. *
  97. * Legend:
  98. * PPN Physical Page Number
  99. * ADW software: accessed (young) / dirty / writable
  100. * RI ring (0=privileged, 1=user, 2 and 3 are unused)
  101. * CA cache attribute: 00 bypass, 01 writeback, 10 writethrough
  102. * (11 is invalid and used to mark pages that are not present)
  103. * w page is writable (hw)
  104. * x page is executable (hw)
  105. * index swap offset / PAGE_SIZE (bit 11-31: 21 bits -> 8 GB)
  106. * (note that the index is always non-zero)
  107. * type swap type (5 bits -> 32 types)
  108. *
  109. * Notes:
  110. * - (PROT_NONE) is a special case of 'present' but causes an exception for
  111. * any access (read, write, and execute).
  112. * - 'multihit-exception' has the highest priority of all MMU exceptions,
  113. * so the ring must be set to 'RING_USER' even for 'non-present' pages.
  114. * - on older hardware, the exectuable flag was not supported and
  115. * used as a 'valid' flag, so it needs to be always set.
  116. * - we need to keep track of certain flags in software (dirty and young)
  117. * to do this, we use write exceptions and have a separate software w-flag.
  118. * - attribute value 1101 (and 1111 on T1050 and earlier) is reserved
  119. */
  120. #define _PAGE_ATTRIB_MASK 0xf
  121. #define _PAGE_HW_EXEC (1<<0) /* hardware: page is executable */
  122. #define _PAGE_HW_WRITE (1<<1) /* hardware: page is writable */
  123. #define _PAGE_CA_BYPASS (0<<2) /* bypass, non-speculative */
  124. #define _PAGE_CA_WB (1<<2) /* write-back */
  125. #define _PAGE_CA_WT (2<<2) /* write-through */
  126. #define _PAGE_CA_MASK (3<<2)
  127. #define _PAGE_CA_INVALID (3<<2)
  128. /* We use invalid attribute values to distinguish special pte entries */
  129. #if XCHAL_HW_VERSION_MAJOR < 2000
  130. #define _PAGE_HW_VALID 0x01 /* older HW needed this bit set */
  131. #define _PAGE_NONE 0x04
  132. #else
  133. #define _PAGE_HW_VALID 0x00
  134. #define _PAGE_NONE 0x0f
  135. #endif
  136. #define _PAGE_USER (1<<4) /* user access (ring=1) */
  137. /* Software */
  138. #define _PAGE_WRITABLE_BIT 6
  139. #define _PAGE_WRITABLE (1<<6) /* software: page writable */
  140. #define _PAGE_DIRTY (1<<7) /* software: page dirty */
  141. #define _PAGE_ACCESSED (1<<8) /* software: page accessed (read) */
  142. #ifdef CONFIG_MMU
  143. #define _PAGE_CHG_MASK (PAGE_MASK | _PAGE_ACCESSED | _PAGE_DIRTY)
  144. #define _PAGE_PRESENT (_PAGE_HW_VALID | _PAGE_CA_WB | _PAGE_ACCESSED)
  145. #define PAGE_NONE __pgprot(_PAGE_NONE | _PAGE_USER)
  146. #define PAGE_COPY __pgprot(_PAGE_PRESENT | _PAGE_USER)
  147. #define PAGE_COPY_EXEC __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_HW_EXEC)
  148. #define PAGE_READONLY __pgprot(_PAGE_PRESENT | _PAGE_USER)
  149. #define PAGE_READONLY_EXEC __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_HW_EXEC)
  150. #define PAGE_SHARED __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_WRITABLE)
  151. #define PAGE_SHARED_EXEC \
  152. __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_WRITABLE | _PAGE_HW_EXEC)
  153. #define PAGE_KERNEL __pgprot(_PAGE_PRESENT | _PAGE_HW_WRITE)
  154. #define PAGE_KERNEL_EXEC __pgprot(_PAGE_PRESENT|_PAGE_HW_WRITE|_PAGE_HW_EXEC)
  155. #if (DCACHE_WAY_SIZE > PAGE_SIZE)
  156. # define _PAGE_DIRECTORY (_PAGE_HW_VALID | _PAGE_ACCESSED | _PAGE_CA_BYPASS)
  157. #else
  158. # define _PAGE_DIRECTORY (_PAGE_HW_VALID | _PAGE_ACCESSED | _PAGE_CA_WB)
  159. #endif
  160. #else /* no mmu */
  161. # define _PAGE_CHG_MASK (PAGE_MASK | _PAGE_ACCESSED | _PAGE_DIRTY)
  162. # define PAGE_NONE __pgprot(0)
  163. # define PAGE_SHARED __pgprot(0)
  164. # define PAGE_COPY __pgprot(0)
  165. # define PAGE_READONLY __pgprot(0)
  166. # define PAGE_KERNEL __pgprot(0)
  167. #endif
  168. /*
  169. * On certain configurations of Xtensa MMUs (eg. the initial Linux config),
  170. * the MMU can't do page protection for execute, and considers that the same as
  171. * read. Also, write permissions may imply read permissions.
  172. * What follows is the closest we can get by reasonable means..
  173. * See linux/mm/mmap.c for protection_map[] array that uses these definitions.
  174. */
  175. #define __P000 PAGE_NONE /* private --- */
  176. #define __P001 PAGE_READONLY /* private --r */
  177. #define __P010 PAGE_COPY /* private -w- */
  178. #define __P011 PAGE_COPY /* private -wr */
  179. #define __P100 PAGE_READONLY_EXEC /* private x-- */
  180. #define __P101 PAGE_READONLY_EXEC /* private x-r */
  181. #define __P110 PAGE_COPY_EXEC /* private xw- */
  182. #define __P111 PAGE_COPY_EXEC /* private xwr */
  183. #define __S000 PAGE_NONE /* shared --- */
  184. #define __S001 PAGE_READONLY /* shared --r */
  185. #define __S010 PAGE_SHARED /* shared -w- */
  186. #define __S011 PAGE_SHARED /* shared -wr */
  187. #define __S100 PAGE_READONLY_EXEC /* shared x-- */
  188. #define __S101 PAGE_READONLY_EXEC /* shared x-r */
  189. #define __S110 PAGE_SHARED_EXEC /* shared xw- */
  190. #define __S111 PAGE_SHARED_EXEC /* shared xwr */
  191. #ifndef __ASSEMBLY__
  192. #define pte_ERROR(e) \
  193. printk("%s:%d: bad pte %08lx.\n", __FILE__, __LINE__, pte_val(e))
  194. #define pgd_ERROR(e) \
  195. printk("%s:%d: bad pgd entry %08lx.\n", __FILE__, __LINE__, pgd_val(e))
  196. extern unsigned long empty_zero_page[1024];
  197. #define ZERO_PAGE(vaddr) (virt_to_page(empty_zero_page))
  198. #ifdef CONFIG_MMU
  199. extern pgd_t swapper_pg_dir[PAGE_SIZE/sizeof(pgd_t)];
  200. extern void paging_init(void);
  201. #else
  202. # define swapper_pg_dir NULL
  203. static inline void paging_init(void) { }
  204. #endif
  205. static inline void pgtable_cache_init(void) { }
  206. /*
  207. * The pmd contains the kernel virtual address of the pte page.
  208. */
  209. #define pmd_page_vaddr(pmd) ((unsigned long)(pmd_val(pmd) & PAGE_MASK))
  210. #define pmd_page(pmd) virt_to_page(pmd_val(pmd))
  211. /*
  212. * pte status.
  213. */
  214. # define pte_none(pte) (pte_val(pte) == (_PAGE_CA_INVALID | _PAGE_USER))
  215. #if XCHAL_HW_VERSION_MAJOR < 2000
  216. # define pte_present(pte) ((pte_val(pte) & _PAGE_CA_MASK) != _PAGE_CA_INVALID)
  217. #else
  218. # define pte_present(pte) \
  219. (((pte_val(pte) & _PAGE_CA_MASK) != _PAGE_CA_INVALID) \
  220. || ((pte_val(pte) & _PAGE_ATTRIB_MASK) == _PAGE_NONE))
  221. #endif
  222. #define pte_clear(mm,addr,ptep) \
  223. do { update_pte(ptep, __pte(_PAGE_CA_INVALID | _PAGE_USER)); } while (0)
  224. #define pmd_none(pmd) (!pmd_val(pmd))
  225. #define pmd_present(pmd) (pmd_val(pmd) & PAGE_MASK)
  226. #define pmd_bad(pmd) (pmd_val(pmd) & ~PAGE_MASK)
  227. #define pmd_clear(pmdp) do { set_pmd(pmdp, __pmd(0)); } while (0)
  228. static inline int pte_write(pte_t pte) { return pte_val(pte) & _PAGE_WRITABLE; }
  229. static inline int pte_dirty(pte_t pte) { return pte_val(pte) & _PAGE_DIRTY; }
  230. static inline int pte_young(pte_t pte) { return pte_val(pte) & _PAGE_ACCESSED; }
  231. static inline int pte_special(pte_t pte) { return 0; }
  232. static inline pte_t pte_wrprotect(pte_t pte)
  233. { pte_val(pte) &= ~(_PAGE_WRITABLE | _PAGE_HW_WRITE); return pte; }
  234. static inline pte_t pte_mkclean(pte_t pte)
  235. { pte_val(pte) &= ~(_PAGE_DIRTY | _PAGE_HW_WRITE); return pte; }
  236. static inline pte_t pte_mkold(pte_t pte)
  237. { pte_val(pte) &= ~_PAGE_ACCESSED; return pte; }
  238. static inline pte_t pte_mkdirty(pte_t pte)
  239. { pte_val(pte) |= _PAGE_DIRTY; return pte; }
  240. static inline pte_t pte_mkyoung(pte_t pte)
  241. { pte_val(pte) |= _PAGE_ACCESSED; return pte; }
  242. static inline pte_t pte_mkwrite(pte_t pte)
  243. { pte_val(pte) |= _PAGE_WRITABLE; return pte; }
  244. static inline pte_t pte_mkspecial(pte_t pte)
  245. { return pte; }
  246. #define pgprot_noncached(prot) (__pgprot(pgprot_val(prot) & ~_PAGE_CA_MASK))
  247. /*
  248. * Conversion functions: convert a page and protection to a page entry,
  249. * and a page entry and page directory to the page they refer to.
  250. */
  251. #define pte_pfn(pte) (pte_val(pte) >> PAGE_SHIFT)
  252. #define pte_same(a,b) (pte_val(a) == pte_val(b))
  253. #define pte_page(x) pfn_to_page(pte_pfn(x))
  254. #define pfn_pte(pfn, prot) __pte(((pfn) << PAGE_SHIFT) | pgprot_val(prot))
  255. #define mk_pte(page, prot) pfn_pte(page_to_pfn(page), prot)
  256. static inline pte_t pte_modify(pte_t pte, pgprot_t newprot)
  257. {
  258. return __pte((pte_val(pte) & _PAGE_CHG_MASK) | pgprot_val(newprot));
  259. }
  260. /*
  261. * Certain architectures need to do special things when pte's
  262. * within a page table are directly modified. Thus, the following
  263. * hook is made available.
  264. */
  265. static inline void update_pte(pte_t *ptep, pte_t pteval)
  266. {
  267. *ptep = pteval;
  268. #if (DCACHE_WAY_SIZE > PAGE_SIZE) && XCHAL_DCACHE_IS_WRITEBACK
  269. __asm__ __volatile__ ("dhwb %0, 0" :: "a" (ptep));
  270. #endif
  271. }
  272. struct mm_struct;
  273. static inline void
  274. set_pte_at(struct mm_struct *mm, unsigned long addr, pte_t *ptep, pte_t pteval)
  275. {
  276. update_pte(ptep, pteval);
  277. }
  278. static inline void set_pte(pte_t *ptep, pte_t pteval)
  279. {
  280. update_pte(ptep, pteval);
  281. }
  282. static inline void
  283. set_pmd(pmd_t *pmdp, pmd_t pmdval)
  284. {
  285. *pmdp = pmdval;
  286. }
  287. struct vm_area_struct;
  288. static inline int
  289. ptep_test_and_clear_young(struct vm_area_struct *vma, unsigned long addr,
  290. pte_t *ptep)
  291. {
  292. pte_t pte = *ptep;
  293. if (!pte_young(pte))
  294. return 0;
  295. update_pte(ptep, pte_mkold(pte));
  296. return 1;
  297. }
  298. static inline pte_t
  299. ptep_get_and_clear(struct mm_struct *mm, unsigned long addr, pte_t *ptep)
  300. {
  301. pte_t pte = *ptep;
  302. pte_clear(mm, addr, ptep);
  303. return pte;
  304. }
  305. static inline void
  306. ptep_set_wrprotect(struct mm_struct *mm, unsigned long addr, pte_t *ptep)
  307. {
  308. pte_t pte = *ptep;
  309. update_pte(ptep, pte_wrprotect(pte));
  310. }
  311. /* to find an entry in a kernel page-table-directory */
  312. #define pgd_offset_k(address) pgd_offset(&init_mm, address)
  313. /* to find an entry in a page-table-directory */
  314. #define pgd_offset(mm,address) ((mm)->pgd + pgd_index(address))
  315. #define pgd_index(address) ((address) >> PGDIR_SHIFT)
  316. /* Find an entry in the second-level page table.. */
  317. #define pmd_offset(dir,address) ((pmd_t*)(dir))
  318. /* Find an entry in the third-level page table.. */
  319. #define pte_index(address) (((address) >> PAGE_SHIFT) & (PTRS_PER_PTE - 1))
  320. #define pte_offset_kernel(dir,addr) \
  321. ((pte_t*) pmd_page_vaddr(*(dir)) + pte_index(addr))
  322. #define pte_offset_map(dir,addr) pte_offset_kernel((dir),(addr))
  323. #define pte_unmap(pte) do { } while (0)
  324. /*
  325. * Encode and decode a swap and file entry.
  326. */
  327. #define SWP_TYPE_BITS 5
  328. #define MAX_SWAPFILES_CHECK() BUILD_BUG_ON(MAX_SWAPFILES_SHIFT > SWP_TYPE_BITS)
  329. #define __swp_type(entry) (((entry).val >> 6) & 0x1f)
  330. #define __swp_offset(entry) ((entry).val >> 11)
  331. #define __swp_entry(type,offs) \
  332. ((swp_entry_t){((type) << 6) | ((offs) << 11) | \
  333. _PAGE_CA_INVALID | _PAGE_USER})
  334. #define __pte_to_swp_entry(pte) ((swp_entry_t) { pte_val(pte) })
  335. #define __swp_entry_to_pte(x) ((pte_t) { (x).val })
  336. #endif /* !defined (__ASSEMBLY__) */
  337. #ifdef __ASSEMBLY__
  338. /* Assembly macro _PGD_INDEX is the same as C pgd_index(unsigned long),
  339. * _PGD_OFFSET as C pgd_offset(struct mm_struct*, unsigned long),
  340. * _PMD_OFFSET as C pmd_offset(pgd_t*, unsigned long)
  341. * _PTE_OFFSET as C pte_offset(pmd_t*, unsigned long)
  342. *
  343. * Note: We require an additional temporary register which can be the same as
  344. * the register that holds the address.
  345. *
  346. * ((pte_t*) ((unsigned long)(pmd_val(*pmd) & PAGE_MASK)) + pte_index(addr))
  347. *
  348. */
  349. #define _PGD_INDEX(rt,rs) extui rt, rs, PGDIR_SHIFT, 32-PGDIR_SHIFT
  350. #define _PTE_INDEX(rt,rs) extui rt, rs, PAGE_SHIFT, PTRS_PER_PTE_SHIFT
  351. #define _PGD_OFFSET(mm,adr,tmp) l32i mm, mm, MM_PGD; \
  352. _PGD_INDEX(tmp, adr); \
  353. addx4 mm, tmp, mm
  354. #define _PTE_OFFSET(pmd,adr,tmp) _PTE_INDEX(tmp, adr); \
  355. srli pmd, pmd, PAGE_SHIFT; \
  356. slli pmd, pmd, PAGE_SHIFT; \
  357. addx4 pmd, tmp, pmd
  358. #else
  359. #define kern_addr_valid(addr) (1)
  360. extern void update_mmu_cache(struct vm_area_struct * vma,
  361. unsigned long address, pte_t *ptep);
  362. typedef pte_t *pte_addr_t;
  363. #endif /* !defined (__ASSEMBLY__) */
  364. #define __HAVE_ARCH_PTEP_TEST_AND_CLEAR_YOUNG
  365. #define __HAVE_ARCH_PTEP_GET_AND_CLEAR
  366. #define __HAVE_ARCH_PTEP_SET_WRPROTECT
  367. #define __HAVE_ARCH_PTEP_MKDIRTY
  368. #define __HAVE_ARCH_PTE_SAME
  369. /* We provide our own get_unmapped_area to cope with
  370. * SHM area cache aliasing for userland.
  371. */
  372. #define HAVE_ARCH_UNMAPPED_AREA
  373. #include <asm-generic/pgtable.h>
  374. #endif /* _XTENSA_PGTABLE_H */