pte-common.h 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  1. /* Included from asm/pgtable-*.h only ! */
  2. /*
  3. * Some bits are only used on some cpu families... Make sure that all
  4. * the undefined gets a sensible default
  5. */
  6. #ifndef _PAGE_HASHPTE
  7. #define _PAGE_HASHPTE 0
  8. #endif
  9. #ifndef _PAGE_SHARED
  10. #define _PAGE_SHARED 0
  11. #endif
  12. #ifndef _PAGE_HWWRITE
  13. #define _PAGE_HWWRITE 0
  14. #endif
  15. #ifndef _PAGE_EXEC
  16. #define _PAGE_EXEC 0
  17. #endif
  18. #ifndef _PAGE_ENDIAN
  19. #define _PAGE_ENDIAN 0
  20. #endif
  21. #ifndef _PAGE_COHERENT
  22. #define _PAGE_COHERENT 0
  23. #endif
  24. #ifndef _PAGE_WRITETHRU
  25. #define _PAGE_WRITETHRU 0
  26. #endif
  27. #ifndef _PAGE_4K_PFN
  28. #define _PAGE_4K_PFN 0
  29. #endif
  30. #ifndef _PAGE_SAO
  31. #define _PAGE_SAO 0
  32. #endif
  33. #ifndef _PAGE_PSIZE
  34. #define _PAGE_PSIZE 0
  35. #endif
  36. /* _PAGE_RO and _PAGE_RW shall not be defined at the same time */
  37. #ifndef _PAGE_RO
  38. #define _PAGE_RO 0
  39. #else
  40. #define _PAGE_RW 0
  41. #endif
  42. #ifndef _PMD_PRESENT_MASK
  43. #define _PMD_PRESENT_MASK _PMD_PRESENT
  44. #endif
  45. #ifndef _PMD_SIZE
  46. #define _PMD_SIZE 0
  47. #define PMD_PAGE_SIZE(pmd) bad_call_to_PMD_PAGE_SIZE()
  48. #endif
  49. #ifndef _PAGE_KERNEL_RO
  50. #define _PAGE_KERNEL_RO (_PAGE_RO)
  51. #endif
  52. #ifndef _PAGE_KERNEL_ROX
  53. #define _PAGE_KERNEL_ROX (_PAGE_EXEC | _PAGE_RO)
  54. #endif
  55. #ifndef _PAGE_KERNEL_RW
  56. #define _PAGE_KERNEL_RW (_PAGE_DIRTY | _PAGE_RW | _PAGE_HWWRITE)
  57. #endif
  58. #ifndef _PAGE_KERNEL_RWX
  59. #define _PAGE_KERNEL_RWX (_PAGE_DIRTY | _PAGE_RW | _PAGE_HWWRITE | _PAGE_EXEC)
  60. #endif
  61. #ifndef _PAGE_HPTEFLAGS
  62. #define _PAGE_HPTEFLAGS _PAGE_HASHPTE
  63. #endif
  64. #ifndef _PTE_NONE_MASK
  65. #define _PTE_NONE_MASK _PAGE_HPTEFLAGS
  66. #endif
  67. /* Make sure we get a link error if PMD_PAGE_SIZE is ever called on a
  68. * kernel without large page PMD support
  69. */
  70. #ifndef __ASSEMBLY__
  71. extern unsigned long bad_call_to_PMD_PAGE_SIZE(void);
  72. #endif /* __ASSEMBLY__ */
  73. /* Location of the PFN in the PTE. Most 32-bit platforms use the same
  74. * as _PAGE_SHIFT here (ie, naturally aligned).
  75. * Platform who don't just pre-define the value so we don't override it here
  76. */
  77. #ifndef PTE_RPN_SHIFT
  78. #define PTE_RPN_SHIFT (PAGE_SHIFT)
  79. #endif
  80. /* The mask convered by the RPN must be a ULL on 32-bit platforms with
  81. * 64-bit PTEs
  82. */
  83. #if defined(CONFIG_PPC32) && defined(CONFIG_PTE_64BIT)
  84. #define PTE_RPN_MASK (~((1ULL<<PTE_RPN_SHIFT)-1))
  85. #else
  86. #define PTE_RPN_MASK (~((1UL<<PTE_RPN_SHIFT)-1))
  87. #endif
  88. /* _PAGE_CHG_MASK masks of bits that are to be preserved across
  89. * pgprot changes
  90. */
  91. #define _PAGE_CHG_MASK (PTE_RPN_MASK | _PAGE_HPTEFLAGS | _PAGE_DIRTY | \
  92. _PAGE_ACCESSED | _PAGE_SPECIAL)
  93. /* Mask of bits returned by pte_pgprot() */
  94. #define PAGE_PROT_BITS (_PAGE_GUARDED | _PAGE_COHERENT | _PAGE_NO_CACHE | \
  95. _PAGE_WRITETHRU | _PAGE_ENDIAN | _PAGE_4K_PFN | \
  96. _PAGE_USER | _PAGE_ACCESSED | _PAGE_RO | \
  97. _PAGE_RW | _PAGE_HWWRITE | _PAGE_DIRTY | _PAGE_EXEC)
  98. /*
  99. * We define 2 sets of base prot bits, one for basic pages (ie,
  100. * cacheable kernel and user pages) and one for non cacheable
  101. * pages. We always set _PAGE_COHERENT when SMP is enabled or
  102. * the processor might need it for DMA coherency.
  103. */
  104. #define _PAGE_BASE_NC (_PAGE_PRESENT | _PAGE_ACCESSED | _PAGE_PSIZE)
  105. #if defined(CONFIG_SMP) || defined(CONFIG_PPC_STD_MMU) || \
  106. defined(CONFIG_PPC_E500MC)
  107. #define _PAGE_BASE (_PAGE_BASE_NC | _PAGE_COHERENT)
  108. #else
  109. #define _PAGE_BASE (_PAGE_BASE_NC)
  110. #endif
  111. /* Permission masks used to generate the __P and __S table,
  112. *
  113. * Note:__pgprot is defined in arch/powerpc/include/asm/page.h
  114. *
  115. * Write permissions imply read permissions for now (we could make write-only
  116. * pages on BookE but we don't bother for now). Execute permission control is
  117. * possible on platforms that define _PAGE_EXEC
  118. *
  119. * Note due to the way vm flags are laid out, the bits are XWR
  120. */
  121. #define PAGE_NONE __pgprot(_PAGE_BASE)
  122. #define PAGE_SHARED __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_RW)
  123. #define PAGE_SHARED_X __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_RW | \
  124. _PAGE_EXEC)
  125. #define PAGE_COPY __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_RO)
  126. #define PAGE_COPY_X __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_RO | \
  127. _PAGE_EXEC)
  128. #define PAGE_READONLY __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_RO)
  129. #define PAGE_READONLY_X __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_RO | \
  130. _PAGE_EXEC)
  131. #define __P000 PAGE_NONE
  132. #define __P001 PAGE_READONLY
  133. #define __P010 PAGE_COPY
  134. #define __P011 PAGE_COPY
  135. #define __P100 PAGE_READONLY_X
  136. #define __P101 PAGE_READONLY_X
  137. #define __P110 PAGE_COPY_X
  138. #define __P111 PAGE_COPY_X
  139. #define __S000 PAGE_NONE
  140. #define __S001 PAGE_READONLY
  141. #define __S010 PAGE_SHARED
  142. #define __S011 PAGE_SHARED
  143. #define __S100 PAGE_READONLY_X
  144. #define __S101 PAGE_READONLY_X
  145. #define __S110 PAGE_SHARED_X
  146. #define __S111 PAGE_SHARED_X
  147. /* Permission masks used for kernel mappings */
  148. #define PAGE_KERNEL __pgprot(_PAGE_BASE | _PAGE_KERNEL_RW)
  149. #define PAGE_KERNEL_NC __pgprot(_PAGE_BASE_NC | _PAGE_KERNEL_RW | \
  150. _PAGE_NO_CACHE)
  151. #define PAGE_KERNEL_NCG __pgprot(_PAGE_BASE_NC | _PAGE_KERNEL_RW | \
  152. _PAGE_NO_CACHE | _PAGE_GUARDED)
  153. #define PAGE_KERNEL_X __pgprot(_PAGE_BASE | _PAGE_KERNEL_RWX)
  154. #define PAGE_KERNEL_RO __pgprot(_PAGE_BASE | _PAGE_KERNEL_RO)
  155. #define PAGE_KERNEL_ROX __pgprot(_PAGE_BASE | _PAGE_KERNEL_ROX)
  156. /* Protection used for kernel text. We want the debuggers to be able to
  157. * set breakpoints anywhere, so don't write protect the kernel text
  158. * on platforms where such control is possible.
  159. */
  160. #if defined(CONFIG_KGDB) || defined(CONFIG_XMON) || defined(CONFIG_BDI_SWITCH) ||\
  161. defined(CONFIG_KPROBES) || defined(CONFIG_DYNAMIC_FTRACE)
  162. #define PAGE_KERNEL_TEXT PAGE_KERNEL_X
  163. #else
  164. #define PAGE_KERNEL_TEXT PAGE_KERNEL_ROX
  165. #endif
  166. /* Make modules code happy. We don't set RO yet */
  167. #define PAGE_KERNEL_EXEC PAGE_KERNEL_X
  168. /*
  169. * Don't just check for any non zero bits in __PAGE_USER, since for book3e
  170. * and PTE_64BIT, PAGE_KERNEL_X contains _PAGE_BAP_SR which is also in
  171. * _PAGE_USER. Need to explicitly match _PAGE_BAP_UR bit in that case too.
  172. */
  173. #define pte_user(val) ((val & _PAGE_USER) == _PAGE_USER)
  174. /* Advertise special mapping type for AGP */
  175. #define PAGE_AGP (PAGE_KERNEL_NC)
  176. #define HAVE_PAGE_AGP
  177. /* Advertise support for _PAGE_SPECIAL */
  178. #define __HAVE_ARCH_PTE_SPECIAL