pte-common.h 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  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. #ifndef _PMD_PRESENT_MASK
  37. #define _PMD_PRESENT_MASK _PMD_PRESENT
  38. #endif
  39. #ifndef _PMD_SIZE
  40. #define _PMD_SIZE 0
  41. #define PMD_PAGE_SIZE(pmd) bad_call_to_PMD_PAGE_SIZE()
  42. #endif
  43. #ifndef _PAGE_KERNEL_RO
  44. #define _PAGE_KERNEL_RO 0
  45. #endif
  46. #ifndef _PAGE_KERNEL_ROX
  47. #define _PAGE_KERNEL_ROX (_PAGE_EXEC)
  48. #endif
  49. #ifndef _PAGE_KERNEL_RW
  50. #define _PAGE_KERNEL_RW (_PAGE_DIRTY | _PAGE_RW | _PAGE_HWWRITE)
  51. #endif
  52. #ifndef _PAGE_KERNEL_RWX
  53. #define _PAGE_KERNEL_RWX (_PAGE_DIRTY | _PAGE_RW | _PAGE_HWWRITE | _PAGE_EXEC)
  54. #endif
  55. #ifndef _PAGE_HPTEFLAGS
  56. #define _PAGE_HPTEFLAGS _PAGE_HASHPTE
  57. #endif
  58. #ifndef _PTE_NONE_MASK
  59. #define _PTE_NONE_MASK _PAGE_HPTEFLAGS
  60. #endif
  61. /* Make sure we get a link error if PMD_PAGE_SIZE is ever called on a
  62. * kernel without large page PMD support
  63. */
  64. #ifndef __ASSEMBLY__
  65. extern unsigned long bad_call_to_PMD_PAGE_SIZE(void);
  66. #endif /* __ASSEMBLY__ */
  67. /* Location of the PFN in the PTE. Most 32-bit platforms use the same
  68. * as _PAGE_SHIFT here (ie, naturally aligned).
  69. * Platform who don't just pre-define the value so we don't override it here
  70. */
  71. #ifndef PTE_RPN_SHIFT
  72. #define PTE_RPN_SHIFT (PAGE_SHIFT)
  73. #endif
  74. /* The mask convered by the RPN must be a ULL on 32-bit platforms with
  75. * 64-bit PTEs
  76. */
  77. #if defined(CONFIG_PPC32) && defined(CONFIG_PTE_64BIT)
  78. #define PTE_RPN_MAX (1ULL << (64 - PTE_RPN_SHIFT))
  79. #define PTE_RPN_MASK (~((1ULL<<PTE_RPN_SHIFT)-1))
  80. #else
  81. #define PTE_RPN_MAX (1UL << (32 - PTE_RPN_SHIFT))
  82. #define PTE_RPN_MASK (~((1UL<<PTE_RPN_SHIFT)-1))
  83. #endif
  84. /* _PAGE_CHG_MASK masks of bits that are to be preserved accross
  85. * pgprot changes
  86. */
  87. #define _PAGE_CHG_MASK (PTE_RPN_MASK | _PAGE_HPTEFLAGS | _PAGE_DIRTY | \
  88. _PAGE_ACCESSED | _PAGE_SPECIAL)
  89. /* Mask of bits returned by pte_pgprot() */
  90. #define PAGE_PROT_BITS (_PAGE_GUARDED | _PAGE_COHERENT | _PAGE_NO_CACHE | \
  91. _PAGE_WRITETHRU | _PAGE_ENDIAN | _PAGE_4K_PFN | \
  92. _PAGE_USER | _PAGE_ACCESSED | \
  93. _PAGE_RW | _PAGE_HWWRITE | _PAGE_DIRTY | _PAGE_EXEC)
  94. /*
  95. * We define 2 sets of base prot bits, one for basic pages (ie,
  96. * cacheable kernel and user pages) and one for non cacheable
  97. * pages. We always set _PAGE_COHERENT when SMP is enabled or
  98. * the processor might need it for DMA coherency.
  99. */
  100. #define _PAGE_BASE_NC (_PAGE_PRESENT | _PAGE_ACCESSED | _PAGE_PSIZE)
  101. #if defined(CONFIG_SMP) || defined(CONFIG_PPC_STD_MMU)
  102. #define _PAGE_BASE (_PAGE_BASE_NC | _PAGE_COHERENT)
  103. #else
  104. #define _PAGE_BASE (_PAGE_BASE_NC)
  105. #endif
  106. /* Permission masks used to generate the __P and __S table,
  107. *
  108. * Note:__pgprot is defined in arch/powerpc/include/asm/page.h
  109. *
  110. * Write permissions imply read permissions for now (we could make write-only
  111. * pages on BookE but we don't bother for now). Execute permission control is
  112. * possible on platforms that define _PAGE_EXEC
  113. *
  114. * Note due to the way vm flags are laid out, the bits are XWR
  115. */
  116. #define PAGE_NONE __pgprot(_PAGE_BASE)
  117. #define PAGE_SHARED __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_RW)
  118. #define PAGE_SHARED_X __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_RW | _PAGE_EXEC)
  119. #define PAGE_COPY __pgprot(_PAGE_BASE | _PAGE_USER)
  120. #define PAGE_COPY_X __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_EXEC)
  121. #define PAGE_READONLY __pgprot(_PAGE_BASE | _PAGE_USER)
  122. #define PAGE_READONLY_X __pgprot(_PAGE_BASE | _PAGE_USER | _PAGE_EXEC)
  123. #define __P000 PAGE_NONE
  124. #define __P001 PAGE_READONLY
  125. #define __P010 PAGE_COPY
  126. #define __P011 PAGE_COPY
  127. #define __P100 PAGE_READONLY_X
  128. #define __P101 PAGE_READONLY_X
  129. #define __P110 PAGE_COPY_X
  130. #define __P111 PAGE_COPY_X
  131. #define __S000 PAGE_NONE
  132. #define __S001 PAGE_READONLY
  133. #define __S010 PAGE_SHARED
  134. #define __S011 PAGE_SHARED
  135. #define __S100 PAGE_READONLY_X
  136. #define __S101 PAGE_READONLY_X
  137. #define __S110 PAGE_SHARED_X
  138. #define __S111 PAGE_SHARED_X
  139. /* Permission masks used for kernel mappings */
  140. #define PAGE_KERNEL __pgprot(_PAGE_BASE | _PAGE_KERNEL_RW)
  141. #define PAGE_KERNEL_NC __pgprot(_PAGE_BASE_NC | _PAGE_KERNEL_RW | \
  142. _PAGE_NO_CACHE)
  143. #define PAGE_KERNEL_NCG __pgprot(_PAGE_BASE_NC | _PAGE_KERNEL_RW | \
  144. _PAGE_NO_CACHE | _PAGE_GUARDED)
  145. #define PAGE_KERNEL_X __pgprot(_PAGE_BASE | _PAGE_KERNEL_RWX)
  146. #define PAGE_KERNEL_RO __pgprot(_PAGE_BASE | _PAGE_KERNEL_RO)
  147. #define PAGE_KERNEL_ROX __pgprot(_PAGE_BASE | _PAGE_KERNEL_ROX)
  148. /* Protection used for kernel text. We want the debuggers to be able to
  149. * set breakpoints anywhere, so don't write protect the kernel text
  150. * on platforms where such control is possible.
  151. */
  152. #if defined(CONFIG_KGDB) || defined(CONFIG_XMON) || defined(CONFIG_BDI_SWITCH) ||\
  153. defined(CONFIG_KPROBES)
  154. #define PAGE_KERNEL_TEXT PAGE_KERNEL_X
  155. #else
  156. #define PAGE_KERNEL_TEXT PAGE_KERNEL_ROX
  157. #endif
  158. /* Make modules code happy. We don't set RO yet */
  159. #define PAGE_KERNEL_EXEC PAGE_KERNEL_X
  160. /* Advertise special mapping type for AGP */
  161. #define PAGE_AGP (PAGE_KERNEL_NC)
  162. #define HAVE_PAGE_AGP
  163. /* Advertise support for _PAGE_SPECIAL */
  164. #define __HAVE_ARCH_PTE_SPECIAL