pgtable.h 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486
  1. /*
  2. * Page table support for the Hexagon architecture
  3. *
  4. * Copyright (c) 2010-2011, The Linux Foundation. All rights reserved.
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License version 2 and
  8. * only version 2 as published by the Free Software Foundation.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, write to the Free Software
  17. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
  18. * 02110-1301, USA.
  19. */
  20. #ifndef _ASM_PGTABLE_H
  21. #define _ASM_PGTABLE_H
  22. /*
  23. * Page table definitions for Qualcomm Hexagon processor.
  24. */
  25. #include <asm/page.h>
  26. #define __ARCH_USE_5LEVEL_HACK
  27. #include <asm-generic/pgtable-nopmd.h>
  28. /* A handy thing to have if one has the RAM. Declared in head.S */
  29. extern unsigned long empty_zero_page;
  30. /*
  31. * The PTE model described here is that of the Hexagon Virtual Machine,
  32. * which autonomously walks 2-level page tables. At a lower level, we
  33. * also describe the RISCish software-loaded TLB entry structure of
  34. * the underlying Hexagon processor. A kernel built to run on the
  35. * virtual machine has no need to know about the underlying hardware.
  36. */
  37. #include <asm/vm_mmu.h>
  38. /*
  39. * To maximize the comfort level for the PTE manipulation macros,
  40. * define the "well known" architecture-specific bits.
  41. */
  42. #define _PAGE_READ __HVM_PTE_R
  43. #define _PAGE_WRITE __HVM_PTE_W
  44. #define _PAGE_EXECUTE __HVM_PTE_X
  45. #define _PAGE_USER __HVM_PTE_U
  46. /*
  47. * We have a total of 4 "soft" bits available in the abstract PTE.
  48. * The two mandatory software bits are Dirty and Accessed.
  49. * To make nonlinear swap work according to the more recent
  50. * model, we want a low order "Present" bit to indicate whether
  51. * the PTE describes MMU programming or swap space.
  52. */
  53. #define _PAGE_PRESENT (1<<0)
  54. #define _PAGE_DIRTY (1<<1)
  55. #define _PAGE_ACCESSED (1<<2)
  56. /*
  57. * For now, let's say that Valid and Present are the same thing.
  58. * Alternatively, we could say that it's the "or" of R, W, and X
  59. * permissions.
  60. */
  61. #define _PAGE_VALID _PAGE_PRESENT
  62. /*
  63. * We're not defining _PAGE_GLOBAL here, since there's no concept
  64. * of global pages or ASIDs exposed to the Hexagon Virtual Machine,
  65. * and we want to use the same page table structures and macros in
  66. * the native kernel as we do in the virtual machine kernel.
  67. * So we'll put up with a bit of inefficiency for now...
  68. */
  69. /*
  70. * Top "FOURTH" level (pgd), which for the Hexagon VM is really
  71. * only the second from the bottom, pgd and pud both being collapsed.
  72. * Each entry represents 4MB of virtual address space, 4K of table
  73. * thus maps the full 4GB.
  74. */
  75. #define PGDIR_SHIFT 22
  76. #define PTRS_PER_PGD 1024
  77. #define PGDIR_SIZE (1UL << PGDIR_SHIFT)
  78. #define PGDIR_MASK (~(PGDIR_SIZE-1))
  79. #ifdef CONFIG_PAGE_SIZE_4KB
  80. #define PTRS_PER_PTE 1024
  81. #endif
  82. #ifdef CONFIG_PAGE_SIZE_16KB
  83. #define PTRS_PER_PTE 256
  84. #endif
  85. #ifdef CONFIG_PAGE_SIZE_64KB
  86. #define PTRS_PER_PTE 64
  87. #endif
  88. #ifdef CONFIG_PAGE_SIZE_256KB
  89. #define PTRS_PER_PTE 16
  90. #endif
  91. #ifdef CONFIG_PAGE_SIZE_1MB
  92. #define PTRS_PER_PTE 4
  93. #endif
  94. /* Any bigger and the PTE disappears. */
  95. #define pgd_ERROR(e) \
  96. printk(KERN_ERR "%s:%d: bad pgd %08lx.\n", __FILE__, __LINE__,\
  97. pgd_val(e))
  98. /*
  99. * Page Protection Constants. Includes (in this variant) cache attributes.
  100. */
  101. extern unsigned long _dflt_cache_att;
  102. #define PAGE_NONE __pgprot(_PAGE_PRESENT | _PAGE_USER | \
  103. _dflt_cache_att)
  104. #define PAGE_READONLY __pgprot(_PAGE_PRESENT | _PAGE_USER | \
  105. _PAGE_READ | _PAGE_EXECUTE | _dflt_cache_att)
  106. #define PAGE_COPY PAGE_READONLY
  107. #define PAGE_EXEC __pgprot(_PAGE_PRESENT | _PAGE_USER | \
  108. _PAGE_READ | _PAGE_EXECUTE | _dflt_cache_att)
  109. #define PAGE_COPY_EXEC PAGE_EXEC
  110. #define PAGE_SHARED __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_READ | \
  111. _PAGE_EXECUTE | _PAGE_WRITE | _dflt_cache_att)
  112. #define PAGE_KERNEL __pgprot(_PAGE_PRESENT | _PAGE_READ | \
  113. _PAGE_WRITE | _PAGE_EXECUTE | _dflt_cache_att)
  114. /*
  115. * Aliases for mapping mmap() protection bits to page protections.
  116. * These get used for static initialization, so using the _dflt_cache_att
  117. * variable for the default cache attribute isn't workable. If the
  118. * default gets changed at boot time, the boot option code has to
  119. * update data structures like the protaction_map[] array.
  120. */
  121. #define CACHEDEF (CACHE_DEFAULT << 6)
  122. /* Private (copy-on-write) page protections. */
  123. #define __P000 __pgprot(_PAGE_PRESENT | _PAGE_USER | CACHEDEF)
  124. #define __P001 __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_READ | CACHEDEF)
  125. #define __P010 __P000 /* Write-only copy-on-write */
  126. #define __P011 __P001 /* Read/Write copy-on-write */
  127. #define __P100 __pgprot(_PAGE_PRESENT | _PAGE_USER | \
  128. _PAGE_EXECUTE | CACHEDEF)
  129. #define __P101 __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_EXECUTE | \
  130. _PAGE_READ | CACHEDEF)
  131. #define __P110 __P100 /* Write/execute copy-on-write */
  132. #define __P111 __P101 /* Read/Write/Execute, copy-on-write */
  133. /* Shared page protections. */
  134. #define __S000 __P000
  135. #define __S001 __P001
  136. #define __S010 __pgprot(_PAGE_PRESENT | _PAGE_USER | \
  137. _PAGE_WRITE | CACHEDEF)
  138. #define __S011 __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_READ | \
  139. _PAGE_WRITE | CACHEDEF)
  140. #define __S100 __pgprot(_PAGE_PRESENT | _PAGE_USER | \
  141. _PAGE_EXECUTE | CACHEDEF)
  142. #define __S101 __P101
  143. #define __S110 __pgprot(_PAGE_PRESENT | _PAGE_USER | \
  144. _PAGE_EXECUTE | _PAGE_WRITE | CACHEDEF)
  145. #define __S111 __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_READ | \
  146. _PAGE_EXECUTE | _PAGE_WRITE | CACHEDEF)
  147. extern pgd_t swapper_pg_dir[PTRS_PER_PGD]; /* located in head.S */
  148. /* Seems to be zero even in architectures where the zero page is firewalled? */
  149. #define FIRST_USER_ADDRESS 0UL
  150. #define pte_special(pte) 0
  151. #define pte_mkspecial(pte) (pte)
  152. /* HUGETLB not working currently */
  153. #ifdef CONFIG_HUGETLB_PAGE
  154. #define pte_mkhuge(pte) __pte((pte_val(pte) & ~0x3) | HVM_HUGEPAGE_SIZE)
  155. #endif
  156. /*
  157. * For now, assume that higher-level code will do TLB/MMU invalidations
  158. * and don't insert that overhead into this low-level function.
  159. */
  160. extern void sync_icache_dcache(pte_t pte);
  161. #define pte_present_exec_user(pte) \
  162. ((pte_val(pte) & (_PAGE_EXECUTE | _PAGE_USER)) == \
  163. (_PAGE_EXECUTE | _PAGE_USER))
  164. static inline void set_pte(pte_t *ptep, pte_t pteval)
  165. {
  166. /* should really be using pte_exec, if it weren't declared later. */
  167. if (pte_present_exec_user(pteval))
  168. sync_icache_dcache(pteval);
  169. *ptep = pteval;
  170. }
  171. /*
  172. * For the Hexagon Virtual Machine MMU (or its emulation), a null/invalid
  173. * L1 PTE (PMD/PGD) has 7 in the least significant bits. For the L2 PTE
  174. * (Linux PTE), the key is to have bits 11..9 all zero. We'd use 0x7
  175. * as a universal null entry, but some of those least significant bits
  176. * are interpreted by software.
  177. */
  178. #define _NULL_PMD 0x7
  179. #define _NULL_PTE 0x0
  180. static inline void pmd_clear(pmd_t *pmd_entry_ptr)
  181. {
  182. pmd_val(*pmd_entry_ptr) = _NULL_PMD;
  183. }
  184. /*
  185. * Conveniently, a null PTE value is invalid.
  186. */
  187. static inline void pte_clear(struct mm_struct *mm, unsigned long addr,
  188. pte_t *ptep)
  189. {
  190. pte_val(*ptep) = _NULL_PTE;
  191. }
  192. #ifdef NEED_PMD_INDEX_DESPITE_BEING_2_LEVEL
  193. /**
  194. * pmd_index - returns the index of the entry in the PMD page
  195. * which would control the given virtual address
  196. */
  197. #define pmd_index(address) (((address) >> PMD_SHIFT) & (PTRS_PER_PMD-1))
  198. #endif
  199. /**
  200. * pgd_index - returns the index of the entry in the PGD page
  201. * which would control the given virtual address
  202. *
  203. * This returns the *index* for the address in the pgd_t
  204. */
  205. #define pgd_index(address) (((address) >> PGDIR_SHIFT) & (PTRS_PER_PGD-1))
  206. /*
  207. * pgd_offset - find an offset in a page-table-directory
  208. */
  209. #define pgd_offset(mm, addr) ((mm)->pgd + pgd_index(addr))
  210. /*
  211. * pgd_offset_k - get kernel (init_mm) pgd entry pointer for addr
  212. */
  213. #define pgd_offset_k(address) pgd_offset(&init_mm, address)
  214. /**
  215. * pmd_none - check if pmd_entry is mapped
  216. * @pmd_entry: pmd entry
  217. *
  218. * MIPS checks it against that "invalid pte table" thing.
  219. */
  220. static inline int pmd_none(pmd_t pmd)
  221. {
  222. return pmd_val(pmd) == _NULL_PMD;
  223. }
  224. /**
  225. * pmd_present - is there a page table behind this?
  226. * Essentially the inverse of pmd_none. We maybe
  227. * save an inline instruction by defining it this
  228. * way, instead of simply "!pmd_none".
  229. */
  230. static inline int pmd_present(pmd_t pmd)
  231. {
  232. return pmd_val(pmd) != (unsigned long)_NULL_PMD;
  233. }
  234. /**
  235. * pmd_bad - check if a PMD entry is "bad". That might mean swapped out.
  236. * As we have no known cause of badness, it's null, as it is for many
  237. * architectures.
  238. */
  239. static inline int pmd_bad(pmd_t pmd)
  240. {
  241. return 0;
  242. }
  243. /*
  244. * pmd_page - converts a PMD entry to a page pointer
  245. */
  246. #define pmd_page(pmd) (pfn_to_page(pmd_val(pmd) >> PAGE_SHIFT))
  247. #define pmd_pgtable(pmd) pmd_page(pmd)
  248. /**
  249. * pte_none - check if pte is mapped
  250. * @pte: pte_t entry
  251. */
  252. static inline int pte_none(pte_t pte)
  253. {
  254. return pte_val(pte) == _NULL_PTE;
  255. };
  256. /*
  257. * pte_present - check if page is present
  258. */
  259. static inline int pte_present(pte_t pte)
  260. {
  261. return pte_val(pte) & _PAGE_PRESENT;
  262. }
  263. /* mk_pte - make a PTE out of a page pointer and protection bits */
  264. #define mk_pte(page, pgprot) pfn_pte(page_to_pfn(page), (pgprot))
  265. /* pte_page - returns a page (frame pointer/descriptor?) based on a PTE */
  266. #define pte_page(x) pfn_to_page(pte_pfn(x))
  267. /* pte_mkold - mark PTE as not recently accessed */
  268. static inline pte_t pte_mkold(pte_t pte)
  269. {
  270. pte_val(pte) &= ~_PAGE_ACCESSED;
  271. return pte;
  272. }
  273. /* pte_mkyoung - mark PTE as recently accessed */
  274. static inline pte_t pte_mkyoung(pte_t pte)
  275. {
  276. pte_val(pte) |= _PAGE_ACCESSED;
  277. return pte;
  278. }
  279. /* pte_mkclean - mark page as in sync with backing store */
  280. static inline pte_t pte_mkclean(pte_t pte)
  281. {
  282. pte_val(pte) &= ~_PAGE_DIRTY;
  283. return pte;
  284. }
  285. /* pte_mkdirty - mark page as modified */
  286. static inline pte_t pte_mkdirty(pte_t pte)
  287. {
  288. pte_val(pte) |= _PAGE_DIRTY;
  289. return pte;
  290. }
  291. /* pte_young - "is PTE marked as accessed"? */
  292. static inline int pte_young(pte_t pte)
  293. {
  294. return pte_val(pte) & _PAGE_ACCESSED;
  295. }
  296. /* pte_dirty - "is PTE dirty?" */
  297. static inline int pte_dirty(pte_t pte)
  298. {
  299. return pte_val(pte) & _PAGE_DIRTY;
  300. }
  301. /* pte_modify - set protection bits on PTE */
  302. static inline pte_t pte_modify(pte_t pte, pgprot_t prot)
  303. {
  304. pte_val(pte) &= PAGE_MASK;
  305. pte_val(pte) |= pgprot_val(prot);
  306. return pte;
  307. }
  308. /* pte_wrprotect - mark page as not writable */
  309. static inline pte_t pte_wrprotect(pte_t pte)
  310. {
  311. pte_val(pte) &= ~_PAGE_WRITE;
  312. return pte;
  313. }
  314. /* pte_mkwrite - mark page as writable */
  315. static inline pte_t pte_mkwrite(pte_t pte)
  316. {
  317. pte_val(pte) |= _PAGE_WRITE;
  318. return pte;
  319. }
  320. /* pte_mkexec - mark PTE as executable */
  321. static inline pte_t pte_mkexec(pte_t pte)
  322. {
  323. pte_val(pte) |= _PAGE_EXECUTE;
  324. return pte;
  325. }
  326. /* pte_read - "is PTE marked as readable?" */
  327. static inline int pte_read(pte_t pte)
  328. {
  329. return pte_val(pte) & _PAGE_READ;
  330. }
  331. /* pte_write - "is PTE marked as writable?" */
  332. static inline int pte_write(pte_t pte)
  333. {
  334. return pte_val(pte) & _PAGE_WRITE;
  335. }
  336. /* pte_exec - "is PTE marked as executable?" */
  337. static inline int pte_exec(pte_t pte)
  338. {
  339. return pte_val(pte) & _PAGE_EXECUTE;
  340. }
  341. /* __pte_to_swp_entry - extract swap entry from PTE */
  342. #define __pte_to_swp_entry(pte) ((swp_entry_t) { pte_val(pte) })
  343. /* __swp_entry_to_pte - extract PTE from swap entry */
  344. #define __swp_entry_to_pte(x) ((pte_t) { (x).val })
  345. /* pfn_pte - convert page number and protection value to page table entry */
  346. #define pfn_pte(pfn, pgprot) __pte((pfn << PAGE_SHIFT) | pgprot_val(pgprot))
  347. /* pte_pfn - convert pte to page frame number */
  348. #define pte_pfn(pte) (pte_val(pte) >> PAGE_SHIFT)
  349. #define set_pmd(pmdptr, pmdval) (*(pmdptr) = (pmdval))
  350. /*
  351. * set_pte_at - update page table and do whatever magic may be
  352. * necessary to make the underlying hardware/firmware take note.
  353. *
  354. * VM may require a virtual instruction to alert the MMU.
  355. */
  356. #define set_pte_at(mm, addr, ptep, pte) set_pte(ptep, pte)
  357. /*
  358. * May need to invoke the virtual machine as well...
  359. */
  360. #define pte_unmap(pte) do { } while (0)
  361. #define pte_unmap_nested(pte) do { } while (0)
  362. /*
  363. * pte_offset_map - returns the linear address of the page table entry
  364. * corresponding to an address
  365. */
  366. #define pte_offset_map(dir, address) \
  367. ((pte_t *)page_address(pmd_page(*(dir))) + __pte_offset(address))
  368. #define pte_offset_map_nested(pmd, addr) pte_offset_map(pmd, addr)
  369. /* pte_offset_kernel - kernel version of pte_offset */
  370. #define pte_offset_kernel(dir, address) \
  371. ((pte_t *) (unsigned long) __va(pmd_val(*dir) & PAGE_MASK) \
  372. + __pte_offset(address))
  373. /* ZERO_PAGE - returns the globally shared zero page */
  374. #define ZERO_PAGE(vaddr) (virt_to_page(&empty_zero_page))
  375. #define __pte_offset(address) (((address) >> PAGE_SHIFT) & (PTRS_PER_PTE - 1))
  376. /* I think this is in case we have page table caches; needed by init/main.c */
  377. #define pgtable_cache_init() do { } while (0)
  378. /*
  379. * Swap/file PTE definitions. If _PAGE_PRESENT is zero, the rest of the PTE is
  380. * interpreted as swap information. The remaining free bits are interpreted as
  381. * swap type/offset tuple. Rather than have the TLB fill handler test
  382. * _PAGE_PRESENT, we're going to reserve the permissions bits and set them to
  383. * all zeros for swap entries, which speeds up the miss handler at the cost of
  384. * 3 bits of offset. That trade-off can be revisited if necessary, but Hexagon
  385. * processor architecture and target applications suggest a lot of TLB misses
  386. * and not much swap space.
  387. *
  388. * Format of swap PTE:
  389. * bit 0: Present (zero)
  390. * bits 1-5: swap type (arch independent layer uses 5 bits max)
  391. * bits 6-9: bits 3:0 of offset
  392. * bits 10-12: effectively _PAGE_PROTNONE (all zero)
  393. * bits 13-31: bits 22:4 of swap offset
  394. *
  395. * The split offset makes some of the following macros a little gnarly,
  396. * but there's plenty of precedent for this sort of thing.
  397. */
  398. /* Used for swap PTEs */
  399. #define __swp_type(swp_pte) (((swp_pte).val >> 1) & 0x1f)
  400. #define __swp_offset(swp_pte) \
  401. ((((swp_pte).val >> 6) & 0xf) | (((swp_pte).val >> 9) & 0x7ffff0))
  402. #define __swp_entry(type, offset) \
  403. ((swp_entry_t) { \
  404. ((type << 1) | \
  405. ((offset & 0x7ffff0) << 9) | ((offset & 0xf) << 6)) })
  406. /* Oh boy. There are a lot of possible arch overrides found in this file. */
  407. #include <asm-generic/pgtable.h>
  408. #endif