pgtable.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312
  1. /*
  2. * linux/include/asm-arm26/pgtable.h
  3. *
  4. * Copyright (C) 2000-2002 Russell King
  5. * Copyright (C) 2003 Ian Molton
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2 as
  9. * published by the Free Software Foundation.
  10. */
  11. #ifndef _ASMARM_PGTABLE_H
  12. #define _ASMARM_PGTABLE_H
  13. #include <asm-generic/4level-fixup.h>
  14. #include <linux/config.h>
  15. #include <asm/memory.h>
  16. /*
  17. * The table below defines the page protection levels that we insert into our
  18. * Linux page table version. These get translated into the best that the
  19. * architecture can perform. Note that on most ARM hardware:
  20. * 1) We cannot do execute protection
  21. * 2) If we could do execute protection, then read is implied
  22. * 3) write implies read permissions
  23. */
  24. #define __P000 PAGE_NONE
  25. #define __P001 PAGE_READONLY
  26. #define __P010 PAGE_COPY
  27. #define __P011 PAGE_COPY
  28. #define __P100 PAGE_READONLY
  29. #define __P101 PAGE_READONLY
  30. #define __P110 PAGE_COPY
  31. #define __P111 PAGE_COPY
  32. #define __S000 PAGE_NONE
  33. #define __S001 PAGE_READONLY
  34. #define __S010 PAGE_SHARED
  35. #define __S011 PAGE_SHARED
  36. #define __S100 PAGE_READONLY
  37. #define __S101 PAGE_READONLY
  38. #define __S110 PAGE_SHARED
  39. #define __S111 PAGE_SHARED
  40. /*
  41. * PMD_SHIFT determines the size of the area a second-level page table can map
  42. * PGDIR_SHIFT determines what a third-level page table entry can map
  43. */
  44. #define PGD_SHIFT 25
  45. #define PMD_SHIFT 20
  46. #define PGD_SIZE (1UL << PGD_SHIFT)
  47. #define PGD_MASK (~(PGD_SIZE-1))
  48. #define PMD_SIZE (1UL << PMD_SHIFT)
  49. #define PMD_MASK (~(PMD_SIZE-1))
  50. /* The kernel likes to use these names for the above (ick) */
  51. #define PGDIR_SIZE PGD_SIZE
  52. #define PGDIR_MASK PGD_MASK
  53. #define PTRS_PER_PGD 32
  54. #define PTRS_PER_PMD 1
  55. #define PTRS_PER_PTE 32
  56. /*
  57. * This is the lowest virtual address we can permit any user space
  58. * mapping to be mapped at. This is particularly important for
  59. * non-high vector CPUs.
  60. */
  61. #define FIRST_USER_ADDRESS PAGE_SIZE
  62. #define FIRST_USER_PGD_NR 1
  63. #define USER_PTRS_PER_PGD ((TASK_SIZE/PGD_SIZE) - FIRST_USER_PGD_NR)
  64. // FIXME - WTF?
  65. #define LIBRARY_TEXT_START 0x0c000000
  66. #ifndef __ASSEMBLY__
  67. extern void __pte_error(const char *file, int line, unsigned long val);
  68. extern void __pmd_error(const char *file, int line, unsigned long val);
  69. extern void __pgd_error(const char *file, int line, unsigned long val);
  70. #define pte_ERROR(pte) __pte_error(__FILE__, __LINE__, pte_val(pte))
  71. #define pmd_ERROR(pmd) __pmd_error(__FILE__, __LINE__, pmd_val(pmd))
  72. #define pgd_ERROR(pgd) __pgd_error(__FILE__, __LINE__, pgd_val(pgd))
  73. /*
  74. * ZERO_PAGE is a global shared page that is always zero: used
  75. * for zero-mapped memory areas etc..
  76. */
  77. extern struct page *empty_zero_page;
  78. #define ZERO_PAGE(vaddr) (empty_zero_page)
  79. #define pte_pfn(pte) (pte_val(pte) >> PAGE_SHIFT)
  80. #define pte_page(pte) (pfn_to_page(pte_pfn(pte)))
  81. #define pfn_pte(pfn,prot) (__pte(((pfn) << PAGE_SHIFT) | pgprot_val(prot)))
  82. #define pages_to_mb(x) ((x) >> (20 - PAGE_SHIFT))
  83. #define mk_pte(page,prot) pfn_pte(page_to_pfn(page),prot)
  84. #define page_pte_prot(page,prot) mk_pte(page, prot)
  85. #define page_pte(page) mk_pte(page, __pgprot(0))
  86. /*
  87. * Terminology: PGD = Page Directory, PMD = Page Middle Directory,
  88. * PTE = Page Table Entry
  89. *
  90. * on arm26 we have no 2nd level page table. we simulate this by removing the
  91. * PMD.
  92. *
  93. * pgd_none is 0 to prevernt pmd_alloc() calling __pmd_alloc(). This causes it
  94. * to return pmd_offset(pgd,addr) which is a pointer to the pgd (IOW, a no-op).
  95. *
  96. * however, to work this way, whilst we are allocating 32 pgds, containing 32
  97. * PTEs, the actual work is done on the PMDs, thus:
  98. *
  99. * instead of mm->pgd->pmd->pte
  100. * we have mm->pgdpmd->pte
  101. *
  102. * IOW, think of PGD operations and PMD ones as being the same thing, just
  103. * that PGD stuff deals with the mm_struct side of things, wheras PMD stuff
  104. * deals with the pte side of things.
  105. *
  106. * additionally, we store some bits in the PGD and PTE pointers:
  107. * PGDs:
  108. * o The lowest (1) bit of the PGD is to determine if it is present or swap.
  109. * o The 2nd bit of the PGD is unused and must be zero.
  110. * o The top 6 bits of the PGD must be zero.
  111. * PTEs:
  112. * o The lower 5 bits of a pte are flags. bit 1 is the 'present' flag. The
  113. * others determine the pages attributes.
  114. *
  115. * the pgd_val, pmd_val, and pte_val macros seem to be private to our code.
  116. * They get the RAW value of the PGD/PMD/PTE entry, including our flags
  117. * encoded into the pointers.
  118. *
  119. * The pgd_offset, pmd_offset, and pte_offset macros are used by the kernel,
  120. * so they shouldnt have our flags attached.
  121. *
  122. * If you understood that, feel free to explain it to me...
  123. *
  124. */
  125. #define _PMD_PRESENT (0x01)
  126. /* These definitions allow us to optimise out stuff like pmd_alloc() */
  127. #define pgd_none(pgd) (0)
  128. #define pgd_bad(pgd) (0)
  129. #define pgd_present(pgd) (1)
  130. #define pgd_clear(pgdp) do { } while (0)
  131. /* Whilst these handle our actual 'page directory' (the agglomeration of pgd and pmd)
  132. */
  133. #define pmd_none(pmd) (!pmd_val(pmd))
  134. #define pmd_bad(pmd) ((pmd_val(pmd) & 0xfc000002))
  135. #define pmd_present(pmd) (pmd_val(pmd) & _PMD_PRESENT)
  136. #define set_pmd(pmd_ptr, pmd) ((*(pmd_ptr)) = (pmd))
  137. #define pmd_clear(pmdp) set_pmd(pmdp, __pmd(0))
  138. /* and these handle our pte tables */
  139. #define pte_none(pte) (!pte_val(pte))
  140. #define pte_present(pte) (pte_val(pte) & _PAGE_PRESENT)
  141. #define set_pte(pte_ptr, pte) ((*(pte_ptr)) = (pte))
  142. #define set_pte_at(mm,addr,ptep,pteval) set_pte(ptep,pteval)
  143. #define pte_clear(mm,addr,ptep) set_pte_at((mm),(addr),(ptep), __pte(0))
  144. /* macros to ease the getting of pointers to stuff... */
  145. #define pgd_offset(mm, addr) ((pgd_t *)(mm)->pgd + __pgd_index(addr))
  146. #define pmd_offset(pgd, addr) ((pmd_t *)(pgd))
  147. #define pte_offset(pmd, addr) ((pte_t *)pmd_page(*(pmd)) + __pte_index(addr))
  148. /* there is no __pmd_index as we dont use pmds */
  149. #define __pgd_index(addr) ((addr) >> PGD_SHIFT)
  150. #define __pte_index(addr) (((addr) >> PAGE_SHIFT) & (PTRS_PER_PTE - 1))
  151. /* Keep the kernel happy */
  152. #define pgd_index(addr) __pgd_index(addr)
  153. #define pgd_offset_k(addr) (pgd_offset(&init_mm, addr))
  154. /*
  155. * The vmalloc() routines leaves a hole of 4kB between each vmalloced
  156. * area for the same reason. ;) FIXME: surely 1 page not 4k ?
  157. */
  158. #define VMALLOC_START 0x01a00000
  159. #define VMALLOC_END 0x01c00000
  160. /* Is pmd_page supposed to return a pointer to a page in some arches? ours seems to
  161. * return a pointer to memory (no special alignment)
  162. */
  163. #define pmd_page(pmd) ((struct page *)(pmd_val((pmd)) & ~_PMD_PRESENT))
  164. #define pmd_page_kernel(pmd) ((pte_t *)(pmd_val((pmd)) & ~_PMD_PRESENT))
  165. #define pte_offset_kernel(dir,addr) (pmd_page_kernel(*(dir)) + __pte_index(addr))
  166. #define pte_offset_map(dir,addr) (pmd_page_kernel(*(dir)) + __pte_index(addr))
  167. #define pte_offset_map_nested(dir,addr) (pmd_page_kernel(*(dir)) + __pte_index(addr))
  168. #define pte_unmap(pte) do { } while (0)
  169. #define pte_unmap_nested(pte) do { } while (0)
  170. #define _PAGE_PRESENT 0x01
  171. #define _PAGE_READONLY 0x02
  172. #define _PAGE_NOT_USER 0x04
  173. #define _PAGE_OLD 0x08
  174. #define _PAGE_CLEAN 0x10
  175. // an old page has never been read.
  176. // a clean page has never been written.
  177. /* -- present -- -- !dirty -- --- !write --- ---- !user --- */
  178. #define PAGE_NONE __pgprot(_PAGE_PRESENT | _PAGE_CLEAN | _PAGE_READONLY | _PAGE_NOT_USER)
  179. #define PAGE_SHARED __pgprot(_PAGE_PRESENT | _PAGE_CLEAN )
  180. #define PAGE_COPY __pgprot(_PAGE_PRESENT | _PAGE_CLEAN | _PAGE_READONLY )
  181. #define PAGE_READONLY __pgprot(_PAGE_PRESENT | _PAGE_CLEAN | _PAGE_READONLY )
  182. #define PAGE_KERNEL __pgprot(_PAGE_PRESENT | _PAGE_NOT_USER)
  183. #define _PAGE_CHG_MASK (PAGE_MASK | _PAGE_OLD | _PAGE_CLEAN)
  184. /*
  185. * The following only work if pte_present() is true.
  186. * Undefined behaviour if not..
  187. */
  188. #define pte_read(pte) (!(pte_val(pte) & _PAGE_NOT_USER))
  189. #define pte_write(pte) (!(pte_val(pte) & _PAGE_READONLY))
  190. #define pte_exec(pte) (!(pte_val(pte) & _PAGE_NOT_USER))
  191. #define pte_dirty(pte) (!(pte_val(pte) & _PAGE_CLEAN))
  192. #define pte_young(pte) (!(pte_val(pte) & _PAGE_OLD))
  193. //ONLY when !pte_present() I think. nicked from arm32 (FIXME!)
  194. #define pte_file(pte) (!(pte_val(pte) & _PAGE_OLD))
  195. #define PTE_BIT_FUNC(fn,op) \
  196. static inline pte_t pte_##fn(pte_t pte) { pte_val(pte) op; return pte; }
  197. PTE_BIT_FUNC(wrprotect, |= _PAGE_READONLY);
  198. PTE_BIT_FUNC(mkwrite, &= ~_PAGE_READONLY);
  199. PTE_BIT_FUNC(exprotect, |= _PAGE_NOT_USER);
  200. PTE_BIT_FUNC(mkexec, &= ~_PAGE_NOT_USER);
  201. PTE_BIT_FUNC(mkclean, |= _PAGE_CLEAN);
  202. PTE_BIT_FUNC(mkdirty, &= ~_PAGE_CLEAN);
  203. PTE_BIT_FUNC(mkold, |= _PAGE_OLD);
  204. PTE_BIT_FUNC(mkyoung, &= ~_PAGE_OLD);
  205. /*
  206. * We don't store cache state bits in the page table here. FIXME - or do we?
  207. */
  208. #define pgprot_noncached(prot) (prot)
  209. #define pgprot_writecombine(prot) (prot) //FIXME - is a no-op?
  210. extern void pgtable_cache_init(void);
  211. //FIXME - nicked from arm32 and brutally hacked. probably wrong.
  212. #define pte_to_pgoff(x) (pte_val(x) >> 2)
  213. #define pgoff_to_pte(x) __pte(((x) << 2) & ~_PAGE_OLD)
  214. //FIXME - next line borrowed from arm32. is it right?
  215. #define PTE_FILE_MAX_BITS 30
  216. static inline pte_t pte_modify(pte_t pte, pgprot_t newprot)
  217. {
  218. pte_val(pte) = (pte_val(pte) & _PAGE_CHG_MASK) | pgprot_val(newprot);
  219. return pte;
  220. }
  221. extern pgd_t swapper_pg_dir[PTRS_PER_PGD];
  222. /* Encode and decode a swap entry.
  223. *
  224. * We support up to 32GB of swap on 4k machines
  225. */
  226. #define __swp_type(x) (((x).val >> 2) & 0x7f)
  227. #define __swp_offset(x) ((x).val >> 9)
  228. #define __swp_entry(type,offset) ((swp_entry_t) { ((type) << 2) | ((offset) << 9) })
  229. #define __pte_to_swp_entry(pte) ((swp_entry_t) { pte_val(pte) })
  230. #define __swp_entry_to_pte(swp) ((pte_t) { (swp).val })
  231. /* Needs to be defined here and not in linux/mm.h, as it is arch dependent */
  232. /* FIXME: this is not correct */
  233. #define kern_addr_valid(addr) (1)
  234. /*
  235. * Conversion functions: convert a page and protection to a page entry,
  236. * and a page entry and page directory to the page they refer to.
  237. */
  238. static inline pte_t mk_pte_phys(unsigned long physpage, pgprot_t pgprot)
  239. {
  240. pte_t pte;
  241. pte_val(pte) = physpage | pgprot_val(pgprot);
  242. return pte;
  243. }
  244. #include <asm-generic/pgtable.h>
  245. /*
  246. * remap a physical address `phys' of size `size' with page protection `prot'
  247. * into virtual address `from'
  248. */
  249. #define io_remap_page_range(vma,from,phys,size,prot) \
  250. remap_pfn_range(vma, from, (phys) >> PAGE_SHIFT, size, prot)
  251. #define io_remap_pfn_range(vma,from,pfn,size,prot) \
  252. remap_pfn_range(vma, from, pfn, size, prot)
  253. #define MK_IOSPACE_PFN(space, pfn) (pfn)
  254. #define GET_IOSPACE(pfn) 0
  255. #define GET_PFN(pfn) (pfn)
  256. #endif /* !__ASSEMBLY__ */
  257. #endif /* _ASMARM_PGTABLE_H */