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_40x ASM_CONST(0x00000004)
20 #define MMU_FTR_TYPE_44x ASM_CONST(0x00000008)
21 #define MMU_FTR_TYPE_FSL_E ASM_CONST(0x00000010)
22 #define MMU_FTR_TYPE_47x ASM_CONST(0x00000020)
24 /* Radix page table supported and enabled */
25 #define MMU_FTR_TYPE_RADIX ASM_CONST(0x00000040)
28 * Individual features below.
32 * Supports KUAP feature
33 * key 0 controlling userspace addresses on radix
36 #define MMU_FTR_BOOK3S_KUAP ASM_CONST(0x00000200)
39 * Supports KUEP feature
40 * key 0 controlling userspace addresses on radix
43 #define MMU_FTR_BOOK3S_KUEP ASM_CONST(0x00000400)
46 * Support for memory protection keys.
48 #define MMU_FTR_PKEY ASM_CONST(0x00000800)
50 /* Guest Translation Shootdown Enable */
51 #define MMU_FTR_GTSE ASM_CONST(0x00001000)
54 * Support for 68 bit VA space. We added that from ISA 2.05
56 #define MMU_FTR_68_BIT_VA ASM_CONST(0x00002000)
58 * Kernel read only support.
59 * We added the ppp value 0b110 in ISA 2.04.
61 #define MMU_FTR_KERNEL_RO ASM_CONST(0x00004000)
64 * We need to clear top 16bits of va (from the remaining 64 bits )in
67 #define MMU_FTR_TLBIE_CROP_VA ASM_CONST(0x00008000)
69 /* Enable use of high BAT registers */
70 #define MMU_FTR_USE_HIGH_BATS ASM_CONST(0x00010000)
72 /* Enable >32-bit physical addresses on 32-bit processor, only used
73 * by CONFIG_PPC_BOOK3S_32 currently as BookE supports that from day 1
75 #define MMU_FTR_BIG_PHYS ASM_CONST(0x00020000)
77 /* Enable use of broadcast TLB invalidations. We don't always set it
78 * on processors that support it due to other constraints with the
79 * use of such invalidations
81 #define MMU_FTR_USE_TLBIVAX_BCAST ASM_CONST(0x00040000)
83 /* Enable use of tlbilx invalidate instructions.
85 #define MMU_FTR_USE_TLBILX ASM_CONST(0x00080000)
87 /* This indicates that the processor cannot handle multiple outstanding
88 * broadcast tlbivax or tlbsync. This makes the code use a spinlock
89 * around such invalidate forms.
91 #define MMU_FTR_LOCK_BCAST_INVAL ASM_CONST(0x00100000)
93 /* This indicates that the processor doesn't handle way selection
94 * properly and needs SW to track and update the LRU state. This
95 * is specific to an errata on e300c2/c3/c4 class parts
97 #define MMU_FTR_NEED_DTLB_SW_LRU ASM_CONST(0x00200000)
99 /* Enable use of TLB reservation. Processor should support tlbsrx.
100 * instruction and MAS0[WQ].
102 #define MMU_FTR_USE_TLBRSRV ASM_CONST(0x00800000)
104 /* Use paired MAS registers (MAS7||MAS3, etc.)
106 #define MMU_FTR_USE_PAIRED_MAS ASM_CONST(0x01000000)
108 /* Doesn't support the B bit (1T segment) in SLBIE
110 #define MMU_FTR_NO_SLBIE_B ASM_CONST(0x02000000)
112 /* Support 16M large pages
114 #define MMU_FTR_16M_PAGE ASM_CONST(0x04000000)
116 /* Supports TLBIEL variant
118 #define MMU_FTR_TLBIEL ASM_CONST(0x08000000)
120 /* Supports tlbies w/o locking
122 #define MMU_FTR_LOCKLESS_TLBIE ASM_CONST(0x10000000)
124 /* Large pages can be marked CI
126 #define MMU_FTR_CI_LARGE_PAGE ASM_CONST(0x20000000)
128 /* 1T segments available
130 #define MMU_FTR_1T_SEGMENT ASM_CONST(0x40000000)
132 /* MMU feature bit sets for various CPUs */
133 #define MMU_FTRS_DEFAULT_HPTE_ARCH_V2 (MMU_FTR_HPTE_TABLE | MMU_FTR_TLBIEL | MMU_FTR_16M_PAGE)
134 #define MMU_FTRS_POWER MMU_FTRS_DEFAULT_HPTE_ARCH_V2
135 #define MMU_FTRS_PPC970 MMU_FTRS_POWER | MMU_FTR_TLBIE_CROP_VA
136 #define MMU_FTRS_POWER5 MMU_FTRS_POWER | MMU_FTR_LOCKLESS_TLBIE
137 #define MMU_FTRS_POWER6 MMU_FTRS_POWER5 | MMU_FTR_KERNEL_RO | MMU_FTR_68_BIT_VA
138 #define MMU_FTRS_POWER7 MMU_FTRS_POWER6
139 #define MMU_FTRS_POWER8 MMU_FTRS_POWER6
140 #define MMU_FTRS_POWER9 MMU_FTRS_POWER6
141 #define MMU_FTRS_POWER10 MMU_FTRS_POWER6
142 #define MMU_FTRS_CELL MMU_FTRS_DEFAULT_HPTE_ARCH_V2 | \
143 MMU_FTR_CI_LARGE_PAGE
144 #define MMU_FTRS_PA6T MMU_FTRS_DEFAULT_HPTE_ARCH_V2 | \
145 MMU_FTR_CI_LARGE_PAGE | MMU_FTR_NO_SLBIE_B
147 #include <linux/bug.h>
148 #include <asm/cputable.h>
149 #include <asm/page.h>
151 typedef pte_t
*pgtable_t
;
153 #ifdef CONFIG_PPC_FSL_BOOK3E
154 #include <asm/percpu.h>
155 DECLARE_PER_CPU(int, next_tlbcam_idx
);
160 #if defined(CONFIG_PPC_BOOK3S_64) || defined(CONFIG_PPC_BOOK3S_604)
163 #ifdef CONFIG_PPC_8xx
169 #ifdef CONFIG_PPC_47x
170 MMU_FTR_TYPE_47x
| MMU_FTR_USE_TLBIVAX_BCAST
| MMU_FTR_LOCK_BCAST_INVAL
|
171 #elif defined(CONFIG_44x)
175 MMU_FTR_TYPE_FSL_E
| MMU_FTR_BIG_PHYS
| MMU_FTR_USE_TLBILX
|
177 #ifdef CONFIG_PPC_BOOK3S_32
178 MMU_FTR_USE_HIGH_BATS
|
180 #ifdef CONFIG_PPC_83xx
181 MMU_FTR_NEED_DTLB_SW_LRU
|
183 #ifdef CONFIG_PPC_BOOK3E_64
184 MMU_FTR_USE_TLBRSRV
| MMU_FTR_USE_PAIRED_MAS
|
186 #ifdef CONFIG_PPC_BOOK3S_64
187 MMU_FTR_NO_SLBIE_B
| MMU_FTR_16M_PAGE
| MMU_FTR_TLBIEL
|
188 MMU_FTR_LOCKLESS_TLBIE
| MMU_FTR_CI_LARGE_PAGE
|
189 MMU_FTR_1T_SEGMENT
| MMU_FTR_TLBIE_CROP_VA
|
190 MMU_FTR_KERNEL_RO
| MMU_FTR_68_BIT_VA
|
192 #ifdef CONFIG_PPC_RADIX_MMU
195 #endif /* CONFIG_PPC_RADIX_MMU */
196 #ifdef CONFIG_PPC_KUAP
197 MMU_FTR_BOOK3S_KUAP
|
198 #endif /* CONFIG_PPC_KUAP */
199 #ifdef CONFIG_PPC_MEM_KEYS
202 #ifdef CONFIG_PPC_KUEP
203 MMU_FTR_BOOK3S_KUEP
|
204 #endif /* CONFIG_PPC_KUAP */
209 #if defined(CONFIG_PPC_BOOK3S_604) && !defined(CONFIG_PPC_BOOK3S_603)
210 #define MMU_FTRS_ALWAYS MMU_FTR_HPTE_TABLE
212 #ifdef CONFIG_PPC_8xx
213 #define MMU_FTRS_ALWAYS MMU_FTR_TYPE_8xx
216 #define MMU_FTRS_ALWAYS MMU_FTR_TYPE_40x
218 #ifdef CONFIG_PPC_47x
219 #define MMU_FTRS_ALWAYS MMU_FTR_TYPE_47x
220 #elif defined(CONFIG_44x)
221 #define MMU_FTRS_ALWAYS MMU_FTR_TYPE_44x
223 #if defined(CONFIG_E200) || defined(CONFIG_E500)
224 #define MMU_FTRS_ALWAYS MMU_FTR_TYPE_FSL_E
227 #ifndef MMU_FTRS_ALWAYS
228 #define MMU_FTRS_ALWAYS 0
231 static inline bool early_mmu_has_feature(unsigned long feature
)
233 if (MMU_FTRS_ALWAYS
& feature
)
236 return !!(MMU_FTRS_POSSIBLE
& cur_cpu_spec
->mmu_features
& feature
);
239 #ifdef CONFIG_JUMP_LABEL_FEATURE_CHECKS
240 #include <linux/jump_label.h>
242 #define NUM_MMU_FTR_KEYS 32
244 extern struct static_key_true mmu_feature_keys
[NUM_MMU_FTR_KEYS
];
246 extern void mmu_feature_keys_init(void);
248 static __always_inline
bool mmu_has_feature(unsigned long feature
)
252 #ifndef __clang__ /* clang can't cope with this */
253 BUILD_BUG_ON(!__builtin_constant_p(feature
));
256 #ifdef CONFIG_JUMP_LABEL_FEATURE_CHECK_DEBUG
257 if (!static_key_initialized
) {
258 printk("Warning! mmu_has_feature() used prior to jump label init!\n");
260 return early_mmu_has_feature(feature
);
264 if (MMU_FTRS_ALWAYS
& feature
)
267 if (!(MMU_FTRS_POSSIBLE
& feature
))
270 i
= __builtin_ctzl(feature
);
271 return static_branch_likely(&mmu_feature_keys
[i
]);
274 static inline void mmu_clear_feature(unsigned long feature
)
278 i
= __builtin_ctzl(feature
);
279 cur_cpu_spec
->mmu_features
&= ~feature
;
280 static_branch_disable(&mmu_feature_keys
[i
]);
284 static inline void mmu_feature_keys_init(void)
289 static inline bool mmu_has_feature(unsigned long feature
)
291 return early_mmu_has_feature(feature
);
294 static inline void mmu_clear_feature(unsigned long feature
)
296 cur_cpu_spec
->mmu_features
&= ~feature
;
298 #endif /* CONFIG_JUMP_LABEL */
300 extern unsigned int __start___mmu_ftr_fixup
, __stop___mmu_ftr_fixup
;
303 /* This is our real memory area size on ppc64 server, on embedded, we
304 * make it match the size our of bolted TLB area
306 extern u64 ppc64_rma_size
;
308 /* Cleanup function used by kexec */
309 extern void mmu_cleanup_all(void);
310 extern void radix__mmu_cleanup_all(void);
312 /* Functions for creating and updating partition table on POWER9 */
313 extern void mmu_partition_table_init(void);
314 extern void mmu_partition_table_set_entry(unsigned int lpid
, unsigned long dw0
,
315 unsigned long dw1
, bool flush
);
316 #endif /* CONFIG_PPC64 */
319 #ifdef CONFIG_DEBUG_VM
320 extern void assert_pte_locked(struct mm_struct
*mm
, unsigned long addr
);
321 #else /* CONFIG_DEBUG_VM */
322 static inline void assert_pte_locked(struct mm_struct
*mm
, unsigned long addr
)
325 #endif /* !CONFIG_DEBUG_VM */
327 #ifdef CONFIG_PPC_RADIX_MMU
328 static inline bool radix_enabled(void)
330 return mmu_has_feature(MMU_FTR_TYPE_RADIX
);
333 static inline bool early_radix_enabled(void)
335 return early_mmu_has_feature(MMU_FTR_TYPE_RADIX
);
338 static inline bool radix_enabled(void)
343 static inline bool early_radix_enabled(void)
349 #ifdef CONFIG_STRICT_KERNEL_RWX
350 static inline bool strict_kernel_rwx_enabled(void)
352 return rodata_enabled
;
355 static inline bool strict_kernel_rwx_enabled(void)
360 #endif /* !__ASSEMBLY__ */
362 /* The kernel use the constants below to index in the page sizes array.
363 * The use of fixed constants for this purpose is better for performances
364 * of the low level hash refill handlers.
366 * A non supported page size has a "shift" field set to 0
368 * Any new page size being implemented can get a new entry in here. Whether
369 * the kernel will use it or not is a different matter though. The actual page
370 * size used by hugetlbfs is not defined here and may be made variable
372 * Note: This array ended up being a false good idea as it's growing to the
373 * point where I wonder if we should replace it with something different,
374 * to think about, feedback welcome. --BenH.
377 /* These are #defines as they have to be used in assembly */
378 #define MMU_PAGE_4K 0
379 #define MMU_PAGE_16K 1
380 #define MMU_PAGE_64K 2
381 #define MMU_PAGE_64K_AP 3 /* "Admixed pages" (hash64 only) */
382 #define MMU_PAGE_256K 4
383 #define MMU_PAGE_512K 5
384 #define MMU_PAGE_1M 6
385 #define MMU_PAGE_2M 7
386 #define MMU_PAGE_4M 8
387 #define MMU_PAGE_8M 9
388 #define MMU_PAGE_16M 10
389 #define MMU_PAGE_64M 11
390 #define MMU_PAGE_256M 12
391 #define MMU_PAGE_1G 13
392 #define MMU_PAGE_16G 14
393 #define MMU_PAGE_64G 15
396 * N.B. we need to change the type of hpte_page_sizes if this gets to be > 16
397 * Also we need to change he type of mm_context.low/high_slices_psize.
399 #define MMU_PAGE_COUNT 16
401 #ifdef CONFIG_PPC_BOOK3S_64
402 #include <asm/book3s/64/mmu.h>
403 #else /* CONFIG_PPC_BOOK3S_64 */
406 /* MMU initialization */
407 extern void early_init_mmu(void);
408 extern void early_init_mmu_secondary(void);
409 extern void setup_initial_memory_limit(phys_addr_t first_memblock_base
,
410 phys_addr_t first_memblock_size
);
411 static inline void mmu_early_init_devtree(void) { }
413 static inline void pkey_early_init_devtree(void) {}
415 extern void *abatron_pteptrs
[2];
416 #endif /* __ASSEMBLY__ */
419 #if defined(CONFIG_PPC_BOOK3S_32)
420 /* 32-bit classic hash table MMU */
421 #include <asm/book3s/32/mmu-hash.h>
422 #elif defined(CONFIG_PPC_MMU_NOHASH)
423 #include <asm/nohash/mmu.h>
426 #endif /* __KERNEL__ */
427 #endif /* _ASM_POWERPC_MMU_H_ */