1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _ASM_POWERPC_MMU_H_
3 #define _ASM_POWERPC_MMU_H_
6 #include <linux/types.h>
8 #include <asm/asm-const.h>
11 * MMU features bit definitions
17 #define MMU_FTR_HPTE_TABLE ASM_CONST(0x00000001)
18 #define MMU_FTR_TYPE_8xx ASM_CONST(0x00000002)
19 #define MMU_FTR_TYPE_44x ASM_CONST(0x00000008)
20 #define MMU_FTR_TYPE_FSL_E ASM_CONST(0x00000010)
21 #define MMU_FTR_TYPE_47x ASM_CONST(0x00000020)
23 /* Radix page table supported and enabled */
24 #define MMU_FTR_TYPE_RADIX ASM_CONST(0x00000040)
27 * Individual features below.
31 * Supports KUAP feature
32 * key 0 controlling userspace addresses on radix
35 #define MMU_FTR_KUAP ASM_CONST(0x00000200)
38 * Supports KUEP feature
39 * key 0 controlling userspace addresses on radix
42 #define MMU_FTR_BOOK3S_KUEP ASM_CONST(0x00000400)
45 * Support for memory protection keys.
47 #define MMU_FTR_PKEY ASM_CONST(0x00000800)
49 /* Guest Translation Shootdown Enable */
50 #define MMU_FTR_GTSE ASM_CONST(0x00001000)
53 * Support for 68 bit VA space. We added that from ISA 2.05
55 #define MMU_FTR_68_BIT_VA ASM_CONST(0x00002000)
57 * Kernel read only support.
58 * We added the ppp value 0b110 in ISA 2.04.
60 #define MMU_FTR_KERNEL_RO ASM_CONST(0x00004000)
63 * We need to clear top 16bits of va (from the remaining 64 bits )in
66 #define MMU_FTR_TLBIE_CROP_VA ASM_CONST(0x00008000)
68 /* Enable use of high BAT registers */
69 #define MMU_FTR_USE_HIGH_BATS ASM_CONST(0x00010000)
71 /* Enable >32-bit physical addresses on 32-bit processor, only used
72 * by CONFIG_PPC_BOOK3S_32 currently as BookE supports that from day 1
74 #define MMU_FTR_BIG_PHYS ASM_CONST(0x00020000)
76 /* Enable use of broadcast TLB invalidations. We don't always set it
77 * on processors that support it due to other constraints with the
78 * use of such invalidations
80 #define MMU_FTR_USE_TLBIVAX_BCAST ASM_CONST(0x00040000)
82 /* Enable use of tlbilx invalidate instructions.
84 #define MMU_FTR_USE_TLBILX ASM_CONST(0x00080000)
86 /* This indicates that the processor cannot handle multiple outstanding
87 * broadcast tlbivax or tlbsync. This makes the code use a spinlock
88 * around such invalidate forms.
90 #define MMU_FTR_LOCK_BCAST_INVAL ASM_CONST(0x00100000)
92 /* This indicates that the processor doesn't handle way selection
93 * properly and needs SW to track and update the LRU state. This
94 * is specific to an errata on e300c2/c3/c4 class parts
96 #define MMU_FTR_NEED_DTLB_SW_LRU ASM_CONST(0x00200000)
98 /* Doesn't support the B bit (1T segment) in SLBIE
100 #define MMU_FTR_NO_SLBIE_B ASM_CONST(0x02000000)
102 /* Support 16M large pages
104 #define MMU_FTR_16M_PAGE ASM_CONST(0x04000000)
106 /* Supports TLBIEL variant
108 #define MMU_FTR_TLBIEL ASM_CONST(0x08000000)
110 /* Supports tlbies w/o locking
112 #define MMU_FTR_LOCKLESS_TLBIE ASM_CONST(0x10000000)
114 /* Large pages can be marked CI
116 #define MMU_FTR_CI_LARGE_PAGE ASM_CONST(0x20000000)
118 /* 1T segments available
120 #define MMU_FTR_1T_SEGMENT ASM_CONST(0x40000000)
122 // NX paste RMA reject in DSI
123 #define MMU_FTR_NX_DSI ASM_CONST(0x80000000)
125 /* MMU feature bit sets for various CPUs */
126 #define MMU_FTRS_DEFAULT_HPTE_ARCH_V2 (MMU_FTR_HPTE_TABLE | MMU_FTR_TLBIEL | MMU_FTR_16M_PAGE)
127 #define MMU_FTRS_POWER MMU_FTRS_DEFAULT_HPTE_ARCH_V2
128 #define MMU_FTRS_PPC970 MMU_FTRS_POWER | MMU_FTR_TLBIE_CROP_VA
129 #define MMU_FTRS_POWER5 MMU_FTRS_POWER | MMU_FTR_LOCKLESS_TLBIE
130 #define MMU_FTRS_POWER6 MMU_FTRS_POWER5 | MMU_FTR_KERNEL_RO | MMU_FTR_68_BIT_VA
131 #define MMU_FTRS_POWER7 MMU_FTRS_POWER6
132 #define MMU_FTRS_POWER8 MMU_FTRS_POWER6
133 #define MMU_FTRS_POWER9 MMU_FTRS_POWER6
134 #define MMU_FTRS_POWER10 MMU_FTRS_POWER6
135 #define MMU_FTRS_POWER11 MMU_FTRS_POWER6
136 #define MMU_FTRS_CELL MMU_FTRS_DEFAULT_HPTE_ARCH_V2 | \
137 MMU_FTR_CI_LARGE_PAGE
138 #define MMU_FTRS_PA6T MMU_FTRS_DEFAULT_HPTE_ARCH_V2 | \
139 MMU_FTR_CI_LARGE_PAGE | MMU_FTR_NO_SLBIE_B
141 #include <linux/bug.h>
142 #include <asm/cputable.h>
143 #include <asm/page.h>
145 typedef pte_t
*pgtable_t
;
149 #if defined(CONFIG_PPC_BOOK3S_604)
152 #ifdef CONFIG_PPC_8xx
155 #ifdef CONFIG_PPC_47x
156 MMU_FTR_TYPE_47x
| MMU_FTR_USE_TLBIVAX_BCAST
| MMU_FTR_LOCK_BCAST_INVAL
|
157 #elif defined(CONFIG_44x)
160 #ifdef CONFIG_PPC_E500
161 MMU_FTR_TYPE_FSL_E
| MMU_FTR_BIG_PHYS
| MMU_FTR_USE_TLBILX
|
163 #ifdef CONFIG_PPC_BOOK3S_32
164 MMU_FTR_USE_HIGH_BATS
|
166 #ifdef CONFIG_PPC_83xx
167 MMU_FTR_NEED_DTLB_SW_LRU
|
169 #ifdef CONFIG_PPC_BOOK3S_64
171 #ifdef CONFIG_PPC_64S_HASH_MMU
172 MMU_FTR_NO_SLBIE_B
| MMU_FTR_16M_PAGE
| MMU_FTR_TLBIEL
|
173 MMU_FTR_LOCKLESS_TLBIE
| MMU_FTR_CI_LARGE_PAGE
|
174 MMU_FTR_1T_SEGMENT
| MMU_FTR_TLBIE_CROP_VA
|
175 MMU_FTR_68_BIT_VA
| MMU_FTR_HPTE_TABLE
|
177 #ifdef CONFIG_PPC_RADIX_MMU
179 MMU_FTR_GTSE
| MMU_FTR_NX_DSI
|
180 #endif /* CONFIG_PPC_RADIX_MMU */
182 #ifdef CONFIG_PPC_KUAP
184 #endif /* CONFIG_PPC_KUAP */
185 #ifdef CONFIG_PPC_MEM_KEYS
188 #ifdef CONFIG_PPC_KUEP
189 MMU_FTR_BOOK3S_KUEP
|
190 #endif /* CONFIG_PPC_KUAP */
195 #if defined(CONFIG_PPC_BOOK3S_604) && !defined(CONFIG_PPC_BOOK3S_603)
196 #define MMU_FTRS_ALWAYS MMU_FTR_HPTE_TABLE
198 #ifdef CONFIG_PPC_8xx
199 #define MMU_FTRS_ALWAYS MMU_FTR_TYPE_8xx
201 #ifdef CONFIG_PPC_47x
202 #define MMU_FTRS_ALWAYS MMU_FTR_TYPE_47x
203 #elif defined(CONFIG_44x)
204 #define MMU_FTRS_ALWAYS MMU_FTR_TYPE_44x
206 #ifdef CONFIG_PPC_E500
207 #define MMU_FTRS_ALWAYS MMU_FTR_TYPE_FSL_E
210 /* BOOK3S_64 options */
211 #if defined(CONFIG_PPC_RADIX_MMU) && !defined(CONFIG_PPC_64S_HASH_MMU)
212 #define MMU_FTRS_ALWAYS MMU_FTR_TYPE_RADIX
213 #elif !defined(CONFIG_PPC_RADIX_MMU) && defined(CONFIG_PPC_64S_HASH_MMU)
214 #define MMU_FTRS_ALWAYS MMU_FTR_HPTE_TABLE
217 #ifndef MMU_FTRS_ALWAYS
218 #define MMU_FTRS_ALWAYS 0
221 static __always_inline
bool early_mmu_has_feature(unsigned long feature
)
223 if (MMU_FTRS_ALWAYS
& feature
)
226 return !!(MMU_FTRS_POSSIBLE
& cur_cpu_spec
->mmu_features
& feature
);
229 #ifdef CONFIG_JUMP_LABEL_FEATURE_CHECKS
230 #include <linux/jump_label.h>
232 #define NUM_MMU_FTR_KEYS 32
234 extern struct static_key_true mmu_feature_keys
[NUM_MMU_FTR_KEYS
];
236 extern void mmu_feature_keys_init(void);
238 static __always_inline
bool mmu_has_feature(unsigned long feature
)
242 BUILD_BUG_ON(!__builtin_constant_p(feature
));
243 BUILD_BUG_ON(__builtin_popcountl(feature
) > 1);
245 #ifdef CONFIG_JUMP_LABEL_FEATURE_CHECK_DEBUG
246 if (!static_key_feature_checks_initialized
) {
247 printk("Warning! mmu_has_feature() used prior to jump label init!\n");
249 return early_mmu_has_feature(feature
);
253 if (MMU_FTRS_ALWAYS
& feature
)
256 if (!(MMU_FTRS_POSSIBLE
& feature
))
259 i
= __builtin_ctzl(feature
);
260 return static_branch_likely(&mmu_feature_keys
[i
]);
263 static inline void mmu_clear_feature(unsigned long feature
)
267 i
= __builtin_ctzl(feature
);
268 cur_cpu_spec
->mmu_features
&= ~feature
;
269 static_branch_disable(&mmu_feature_keys
[i
]);
273 static inline void mmu_feature_keys_init(void)
278 static __always_inline
bool mmu_has_feature(unsigned long feature
)
280 return early_mmu_has_feature(feature
);
283 static inline void mmu_clear_feature(unsigned long feature
)
285 cur_cpu_spec
->mmu_features
&= ~feature
;
287 #endif /* CONFIG_JUMP_LABEL */
289 extern unsigned int __start___mmu_ftr_fixup
, __stop___mmu_ftr_fixup
;
292 /* This is our real memory area size on ppc64 server, on embedded, we
293 * make it match the size our of bolted TLB area
295 extern u64 ppc64_rma_size
;
297 /* Cleanup function used by kexec */
298 extern void mmu_cleanup_all(void);
299 extern void radix__mmu_cleanup_all(void);
301 /* Functions for creating and updating partition table on POWER9 */
302 extern void mmu_partition_table_init(void);
303 extern void mmu_partition_table_set_entry(unsigned int lpid
, unsigned long dw0
,
304 unsigned long dw1
, bool flush
);
305 #endif /* CONFIG_PPC64 */
308 #ifdef CONFIG_DEBUG_VM
309 extern void assert_pte_locked(struct mm_struct
*mm
, unsigned long addr
);
310 #else /* CONFIG_DEBUG_VM */
311 static inline void assert_pte_locked(struct mm_struct
*mm
, unsigned long addr
)
314 #endif /* !CONFIG_DEBUG_VM */
316 static __always_inline
bool radix_enabled(void)
318 return mmu_has_feature(MMU_FTR_TYPE_RADIX
);
321 static __always_inline
bool early_radix_enabled(void)
323 return early_mmu_has_feature(MMU_FTR_TYPE_RADIX
);
326 static inline bool strict_kernel_rwx_enabled(void)
328 return IS_ENABLED(CONFIG_STRICT_KERNEL_RWX
) && rodata_enabled
;
331 static inline bool strict_module_rwx_enabled(void)
333 return IS_ENABLED(CONFIG_STRICT_MODULE_RWX
) && strict_kernel_rwx_enabled();
335 #endif /* !__ASSEMBLY__ */
337 /* The kernel use the constants below to index in the page sizes array.
338 * The use of fixed constants for this purpose is better for performances
339 * of the low level hash refill handlers.
341 * A non supported page size has a "shift" field set to 0
343 * Any new page size being implemented can get a new entry in here. Whether
344 * the kernel will use it or not is a different matter though. The actual page
345 * size used by hugetlbfs is not defined here and may be made variable
347 * Note: This array ended up being a false good idea as it's growing to the
348 * point where I wonder if we should replace it with something different,
349 * to think about, feedback welcome. --BenH.
352 /* These are #defines as they have to be used in assembly */
353 #define MMU_PAGE_4K 0
354 #define MMU_PAGE_16K 1
355 #define MMU_PAGE_64K 2
356 #define MMU_PAGE_64K_AP 3 /* "Admixed pages" (hash64 only) */
357 #define MMU_PAGE_256K 4
358 #define MMU_PAGE_512K 5
359 #define MMU_PAGE_1M 6
360 #define MMU_PAGE_2M 7
361 #define MMU_PAGE_4M 8
362 #define MMU_PAGE_8M 9
363 #define MMU_PAGE_16M 10
364 #define MMU_PAGE_64M 11
365 #define MMU_PAGE_256M 12
366 #define MMU_PAGE_1G 13
367 #define MMU_PAGE_16G 14
368 #define MMU_PAGE_64G 15
371 * N.B. we need to change the type of hpte_page_sizes if this gets to be > 16
372 * Also we need to change he type of mm_context.low/high_slices_psize.
374 #define MMU_PAGE_COUNT 16
376 #ifdef CONFIG_PPC_BOOK3S_64
377 #include <asm/book3s/64/mmu.h>
378 #else /* CONFIG_PPC_BOOK3S_64 */
381 /* MMU initialization */
382 extern void early_init_mmu(void);
383 extern void early_init_mmu_secondary(void);
384 extern void setup_initial_memory_limit(phys_addr_t first_memblock_base
,
385 phys_addr_t first_memblock_size
);
386 static inline void mmu_early_init_devtree(void) { }
388 static inline void pkey_early_init_devtree(void) {}
390 extern void *abatron_pteptrs
[2];
391 #endif /* __ASSEMBLY__ */
394 #if defined(CONFIG_PPC_BOOK3S_32)
395 /* 32-bit classic hash table MMU */
396 #include <asm/book3s/32/mmu-hash.h>
397 #elif defined(CONFIG_PPC_MMU_NOHASH)
398 #include <asm/nohash/mmu.h>
401 #endif /* __KERNEL__ */
402 #endif /* _ASM_POWERPC_MMU_H_ */