ARM: amba: Make driver_override output consistent with other buses
[linux/fpc-iii.git] / arch / powerpc / include / asm / mmu.h
blobbb38312cff28ceba0ece038a4523dd22ce0910fa
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _ASM_POWERPC_MMU_H_
3 #define _ASM_POWERPC_MMU_H_
4 #ifdef __KERNEL__
6 #include <linux/types.h>
8 #include <asm/asm-compat.h>
9 #include <asm/feature-fixups.h>
12 * MMU features bit definitions
16 * MMU families
18 #define MMU_FTR_HPTE_TABLE ASM_CONST(0x00000001)
19 #define MMU_FTR_TYPE_8xx ASM_CONST(0x00000002)
20 #define MMU_FTR_TYPE_40x ASM_CONST(0x00000004)
21 #define MMU_FTR_TYPE_44x ASM_CONST(0x00000008)
22 #define MMU_FTR_TYPE_FSL_E ASM_CONST(0x00000010)
23 #define MMU_FTR_TYPE_47x ASM_CONST(0x00000020)
25 /* Radix page table supported and enabled */
26 #define MMU_FTR_TYPE_RADIX ASM_CONST(0x00000040)
29 * Individual features below.
33 * Support for 68 bit VA space. We added that from ISA 2.05
35 #define MMU_FTR_68_BIT_VA ASM_CONST(0x00002000)
37 * Kernel read only support.
38 * We added the ppp value 0b110 in ISA 2.04.
40 #define MMU_FTR_KERNEL_RO ASM_CONST(0x00004000)
43 * We need to clear top 16bits of va (from the remaining 64 bits )in
44 * tlbie* instructions
46 #define MMU_FTR_TLBIE_CROP_VA ASM_CONST(0x00008000)
48 /* Enable use of high BAT registers */
49 #define MMU_FTR_USE_HIGH_BATS ASM_CONST(0x00010000)
51 /* Enable >32-bit physical addresses on 32-bit processor, only used
52 * by CONFIG_6xx currently as BookE supports that from day 1
54 #define MMU_FTR_BIG_PHYS ASM_CONST(0x00020000)
56 /* Enable use of broadcast TLB invalidations. We don't always set it
57 * on processors that support it due to other constraints with the
58 * use of such invalidations
60 #define MMU_FTR_USE_TLBIVAX_BCAST ASM_CONST(0x00040000)
62 /* Enable use of tlbilx invalidate instructions.
64 #define MMU_FTR_USE_TLBILX ASM_CONST(0x00080000)
66 /* This indicates that the processor cannot handle multiple outstanding
67 * broadcast tlbivax or tlbsync. This makes the code use a spinlock
68 * around such invalidate forms.
70 #define MMU_FTR_LOCK_BCAST_INVAL ASM_CONST(0x00100000)
72 /* This indicates that the processor doesn't handle way selection
73 * properly and needs SW to track and update the LRU state. This
74 * is specific to an errata on e300c2/c3/c4 class parts
76 #define MMU_FTR_NEED_DTLB_SW_LRU ASM_CONST(0x00200000)
78 /* Enable use of TLB reservation. Processor should support tlbsrx.
79 * instruction and MAS0[WQ].
81 #define MMU_FTR_USE_TLBRSRV ASM_CONST(0x00800000)
83 /* Use paired MAS registers (MAS7||MAS3, etc.)
85 #define MMU_FTR_USE_PAIRED_MAS ASM_CONST(0x01000000)
87 /* Doesn't support the B bit (1T segment) in SLBIE
89 #define MMU_FTR_NO_SLBIE_B ASM_CONST(0x02000000)
91 /* Support 16M large pages
93 #define MMU_FTR_16M_PAGE ASM_CONST(0x04000000)
95 /* Supports TLBIEL variant
97 #define MMU_FTR_TLBIEL ASM_CONST(0x08000000)
99 /* Supports tlbies w/o locking
101 #define MMU_FTR_LOCKLESS_TLBIE ASM_CONST(0x10000000)
103 /* Large pages can be marked CI
105 #define MMU_FTR_CI_LARGE_PAGE ASM_CONST(0x20000000)
107 /* 1T segments available
109 #define MMU_FTR_1T_SEGMENT ASM_CONST(0x40000000)
111 /* MMU feature bit sets for various CPUs */
112 #define MMU_FTRS_DEFAULT_HPTE_ARCH_V2 \
113 MMU_FTR_HPTE_TABLE | MMU_FTR_PPCAS_ARCH_V2
114 #define MMU_FTRS_POWER4 MMU_FTRS_DEFAULT_HPTE_ARCH_V2
115 #define MMU_FTRS_PPC970 MMU_FTRS_POWER4 | MMU_FTR_TLBIE_CROP_VA
116 #define MMU_FTRS_POWER5 MMU_FTRS_POWER4 | MMU_FTR_LOCKLESS_TLBIE
117 #define MMU_FTRS_POWER6 MMU_FTRS_POWER5 | MMU_FTR_KERNEL_RO | MMU_FTR_68_BIT_VA
118 #define MMU_FTRS_POWER7 MMU_FTRS_POWER6
119 #define MMU_FTRS_POWER8 MMU_FTRS_POWER6
120 #define MMU_FTRS_POWER9 MMU_FTRS_POWER6
121 #define MMU_FTRS_CELL MMU_FTRS_DEFAULT_HPTE_ARCH_V2 | \
122 MMU_FTR_CI_LARGE_PAGE
123 #define MMU_FTRS_PA6T MMU_FTRS_DEFAULT_HPTE_ARCH_V2 | \
124 MMU_FTR_CI_LARGE_PAGE | MMU_FTR_NO_SLBIE_B
125 #ifndef __ASSEMBLY__
126 #include <linux/bug.h>
127 #include <asm/cputable.h>
129 #ifdef CONFIG_PPC_FSL_BOOK3E
130 #include <asm/percpu.h>
131 DECLARE_PER_CPU(int, next_tlbcam_idx);
132 #endif
134 enum {
135 MMU_FTRS_POSSIBLE = MMU_FTR_HPTE_TABLE | MMU_FTR_TYPE_8xx |
136 MMU_FTR_TYPE_40x | MMU_FTR_TYPE_44x | MMU_FTR_TYPE_FSL_E |
137 MMU_FTR_TYPE_47x | MMU_FTR_USE_HIGH_BATS | MMU_FTR_BIG_PHYS |
138 MMU_FTR_USE_TLBIVAX_BCAST | MMU_FTR_USE_TLBILX |
139 MMU_FTR_LOCK_BCAST_INVAL | MMU_FTR_NEED_DTLB_SW_LRU |
140 MMU_FTR_USE_TLBRSRV | MMU_FTR_USE_PAIRED_MAS |
141 MMU_FTR_NO_SLBIE_B | MMU_FTR_16M_PAGE | MMU_FTR_TLBIEL |
142 MMU_FTR_LOCKLESS_TLBIE | MMU_FTR_CI_LARGE_PAGE |
143 MMU_FTR_1T_SEGMENT | MMU_FTR_TLBIE_CROP_VA |
144 MMU_FTR_KERNEL_RO | MMU_FTR_68_BIT_VA |
145 #ifdef CONFIG_PPC_RADIX_MMU
146 MMU_FTR_TYPE_RADIX |
147 #endif
151 static inline bool early_mmu_has_feature(unsigned long feature)
153 return !!(MMU_FTRS_POSSIBLE & cur_cpu_spec->mmu_features & feature);
156 #ifdef CONFIG_JUMP_LABEL_FEATURE_CHECKS
157 #include <linux/jump_label.h>
159 #define NUM_MMU_FTR_KEYS 32
161 extern struct static_key_true mmu_feature_keys[NUM_MMU_FTR_KEYS];
163 extern void mmu_feature_keys_init(void);
165 static __always_inline bool mmu_has_feature(unsigned long feature)
167 int i;
169 #ifndef __clang__ /* clang can't cope with this */
170 BUILD_BUG_ON(!__builtin_constant_p(feature));
171 #endif
173 #ifdef CONFIG_JUMP_LABEL_FEATURE_CHECK_DEBUG
174 if (!static_key_initialized) {
175 printk("Warning! mmu_has_feature() used prior to jump label init!\n");
176 dump_stack();
177 return early_mmu_has_feature(feature);
179 #endif
181 if (!(MMU_FTRS_POSSIBLE & feature))
182 return false;
184 i = __builtin_ctzl(feature);
185 return static_branch_likely(&mmu_feature_keys[i]);
188 static inline void mmu_clear_feature(unsigned long feature)
190 int i;
192 i = __builtin_ctzl(feature);
193 cur_cpu_spec->mmu_features &= ~feature;
194 static_branch_disable(&mmu_feature_keys[i]);
196 #else
198 static inline void mmu_feature_keys_init(void)
203 static inline bool mmu_has_feature(unsigned long feature)
205 return early_mmu_has_feature(feature);
208 static inline void mmu_clear_feature(unsigned long feature)
210 cur_cpu_spec->mmu_features &= ~feature;
212 #endif /* CONFIG_JUMP_LABEL */
214 extern unsigned int __start___mmu_ftr_fixup, __stop___mmu_ftr_fixup;
216 #ifdef CONFIG_PPC64
217 /* This is our real memory area size on ppc64 server, on embedded, we
218 * make it match the size our of bolted TLB area
220 extern u64 ppc64_rma_size;
222 /* Cleanup function used by kexec */
223 extern void mmu_cleanup_all(void);
224 extern void radix__mmu_cleanup_all(void);
226 /* Functions for creating and updating partition table on POWER9 */
227 extern void mmu_partition_table_init(void);
228 extern void mmu_partition_table_set_entry(unsigned int lpid, unsigned long dw0,
229 unsigned long dw1);
230 #endif /* CONFIG_PPC64 */
232 struct mm_struct;
233 #ifdef CONFIG_DEBUG_VM
234 extern void assert_pte_locked(struct mm_struct *mm, unsigned long addr);
235 #else /* CONFIG_DEBUG_VM */
236 static inline void assert_pte_locked(struct mm_struct *mm, unsigned long addr)
239 #endif /* !CONFIG_DEBUG_VM */
241 #ifdef CONFIG_PPC_RADIX_MMU
242 static inline bool radix_enabled(void)
244 return mmu_has_feature(MMU_FTR_TYPE_RADIX);
247 static inline bool early_radix_enabled(void)
249 return early_mmu_has_feature(MMU_FTR_TYPE_RADIX);
251 #else
252 static inline bool radix_enabled(void)
254 return false;
257 static inline bool early_radix_enabled(void)
259 return false;
261 #endif
263 #ifdef CONFIG_PPC_MEM_KEYS
264 extern u16 get_mm_addr_key(struct mm_struct *mm, unsigned long address);
265 #else
266 static inline u16 get_mm_addr_key(struct mm_struct *mm, unsigned long address)
268 return 0;
270 #endif /* CONFIG_PPC_MEM_KEYS */
272 #endif /* !__ASSEMBLY__ */
274 /* The kernel use the constants below to index in the page sizes array.
275 * The use of fixed constants for this purpose is better for performances
276 * of the low level hash refill handlers.
278 * A non supported page size has a "shift" field set to 0
280 * Any new page size being implemented can get a new entry in here. Whether
281 * the kernel will use it or not is a different matter though. The actual page
282 * size used by hugetlbfs is not defined here and may be made variable
284 * Note: This array ended up being a false good idea as it's growing to the
285 * point where I wonder if we should replace it with something different,
286 * to think about, feedback welcome. --BenH.
289 /* These are #defines as they have to be used in assembly */
290 #define MMU_PAGE_4K 0
291 #define MMU_PAGE_16K 1
292 #define MMU_PAGE_64K 2
293 #define MMU_PAGE_64K_AP 3 /* "Admixed pages" (hash64 only) */
294 #define MMU_PAGE_256K 4
295 #define MMU_PAGE_512K 5
296 #define MMU_PAGE_1M 6
297 #define MMU_PAGE_2M 7
298 #define MMU_PAGE_4M 8
299 #define MMU_PAGE_8M 9
300 #define MMU_PAGE_16M 10
301 #define MMU_PAGE_64M 11
302 #define MMU_PAGE_256M 12
303 #define MMU_PAGE_1G 13
304 #define MMU_PAGE_16G 14
305 #define MMU_PAGE_64G 15
308 * N.B. we need to change the type of hpte_page_sizes if this gets to be > 16
309 * Also we need to change he type of mm_context.low/high_slices_psize.
311 #define MMU_PAGE_COUNT 16
313 #ifdef CONFIG_PPC_BOOK3S_64
314 #include <asm/book3s/64/mmu.h>
315 #else /* CONFIG_PPC_BOOK3S_64 */
317 #ifndef __ASSEMBLY__
318 /* MMU initialization */
319 extern void early_init_mmu(void);
320 extern void early_init_mmu_secondary(void);
321 extern void setup_initial_memory_limit(phys_addr_t first_memblock_base,
322 phys_addr_t first_memblock_size);
323 static inline void mmu_early_init_devtree(void) { }
324 #endif /* __ASSEMBLY__ */
325 #endif
327 #if defined(CONFIG_PPC_STD_MMU_32)
328 /* 32-bit classic hash table MMU */
329 #include <asm/book3s/32/mmu-hash.h>
330 #elif defined(CONFIG_40x)
331 /* 40x-style software loaded TLB */
332 # include <asm/mmu-40x.h>
333 #elif defined(CONFIG_44x)
334 /* 44x-style software loaded TLB */
335 # include <asm/mmu-44x.h>
336 #elif defined(CONFIG_PPC_BOOK3E_MMU)
337 /* Freescale Book-E software loaded TLB or Book-3e (ISA 2.06+) MMU */
338 # include <asm/mmu-book3e.h>
339 #elif defined (CONFIG_PPC_8xx)
340 /* Motorola/Freescale 8xx software loaded TLB */
341 # include <asm/mmu-8xx.h>
342 #endif
344 #endif /* __KERNEL__ */
345 #endif /* _ASM_POWERPC_MMU_H_ */