1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _ASM_POWERPC_BOOK3S_64_MMU_H_
3 #define _ASM_POWERPC_BOOK3S_64_MMU_H_
9 * shift : is the "PAGE_SHIFT" value for that page size
10 * sllp : is a bit mask with the value of SLB L || LP to be or'ed
11 * directly to a slbmte "vsid" value
12 * penc : is the HPTE encoding mask for the "LP" field:
15 struct mmu_psize_def
{
16 unsigned int shift
; /* number of bits */
17 int penc
[MMU_PAGE_COUNT
]; /* HPTE encoding */
18 unsigned int tlbiel
; /* tlbiel supported for that page size */
19 unsigned long avpnm
; /* bits to mask out in AVPN in the HPTE */
21 unsigned long sllp
; /* SLB L||LP (exact mask to use in slbmte) */
22 unsigned long ap
; /* Ap encoding used by PowerISA 3.0 */
25 extern struct mmu_psize_def mmu_psize_defs
[MMU_PAGE_COUNT
];
27 #endif /* __ASSEMBLY__ */
29 /* 64-bit classic hash table MMU */
30 #include <asm/book3s/64/mmu-hash.h>
34 * ISA 3.0 partition and process table entry format
40 extern struct prtb_entry
*process_tb
;
46 extern struct patb_entry
*partition_tb
;
48 /* Bits in patb0 field */
49 #define PATB_HR (1UL << 63)
50 #define RPDB_MASK 0x0fffffffffffff00UL
51 #define RPDB_SHIFT (1UL << 8)
52 #define RTS1_SHIFT 61 /* top 2 bits of radix tree size */
53 #define RTS1_MASK (3UL << RTS1_SHIFT)
54 #define RTS2_SHIFT 5 /* bottom 3 bits of radix tree size */
55 #define RTS2_MASK (7UL << RTS2_SHIFT)
56 #define RPDS_MASK 0x1f /* root page dir. size field */
58 /* Bits in patb1 field */
59 #define PATB_GR (1UL << 63) /* guest uses radix; must match HR */
60 #define PRTS_MASK 0x1f /* process table size field */
61 #define PRTB_MASK 0x0ffffffffffff000UL
63 /* Number of supported PID bits */
64 extern unsigned int mmu_pid_bits
;
66 /* Base PID to allocate from */
67 extern unsigned int mmu_base_pid
;
69 #define PRTB_SIZE_SHIFT (mmu_pid_bits + 4)
70 #define PRTB_ENTRIES (1ul << mmu_pid_bits)
73 * Power9 currently only support 64K partition table size.
75 #define PATB_SIZE_SHIFT 16
77 typedef unsigned long mm_context_id_t
;
80 /* Maximum possible number of NPUs in a system. */
85 u16 user_psize
; /* page size index */
87 /* Number of bits in the mm_cpumask */
90 /* Number of users of the external (Nest) MMU */
93 /* NPU NMMU context */
94 struct npu_context
*npu_context
;
96 #ifdef CONFIG_PPC_MM_SLICES
97 u64 low_slices_psize
; /* SLB page size encodings */
98 unsigned char high_slices_psize
[SLICE_ARRAY_SIZE
];
99 unsigned long slb_addr_limit
;
101 u16 sllp
; /* SLB page size encoding */
103 unsigned long vdso_base
;
104 #ifdef CONFIG_PPC_SUBPAGE_PROT
105 struct subpage_prot_table spt
;
106 #endif /* CONFIG_PPC_SUBPAGE_PROT */
107 #ifdef CONFIG_PPC_64K_PAGES
108 /* for 4K PTE fragment support */
111 #ifdef CONFIG_SPAPR_TCE_IOMMU
112 struct list_head iommu_group_mem_list
;
115 #ifdef CONFIG_PPC_MEM_KEYS
117 * Each bit represents one protection key.
118 * bit set -> key allocated
119 * bit unset -> key available for allocation
121 u32 pkey_allocation_map
;
122 s16 execute_only_pkey
; /* key holding execute-only protection */
127 * The current system page and segment sizes
129 extern int mmu_linear_psize
;
130 extern int mmu_virtual_psize
;
131 extern int mmu_vmalloc_psize
;
132 extern int mmu_vmemmap_psize
;
133 extern int mmu_io_psize
;
135 /* MMU initialization */
136 void mmu_early_init_devtree(void);
137 void hash__early_init_devtree(void);
138 void radix__early_init_devtree(void);
139 extern void radix_init_native(void);
140 extern void hash__early_init_mmu(void);
141 extern void radix__early_init_mmu(void);
142 static inline void early_init_mmu(void)
145 return radix__early_init_mmu();
146 return hash__early_init_mmu();
148 extern void hash__early_init_mmu_secondary(void);
149 extern void radix__early_init_mmu_secondary(void);
150 static inline void early_init_mmu_secondary(void)
153 return radix__early_init_mmu_secondary();
154 return hash__early_init_mmu_secondary();
157 extern void hash__setup_initial_memory_limit(phys_addr_t first_memblock_base
,
158 phys_addr_t first_memblock_size
);
159 extern void radix__setup_initial_memory_limit(phys_addr_t first_memblock_base
,
160 phys_addr_t first_memblock_size
);
161 static inline void setup_initial_memory_limit(phys_addr_t first_memblock_base
,
162 phys_addr_t first_memblock_size
)
164 if (early_radix_enabled())
165 return radix__setup_initial_memory_limit(first_memblock_base
,
166 first_memblock_size
);
167 return hash__setup_initial_memory_limit(first_memblock_base
,
168 first_memblock_size
);
171 extern int (*register_process_table
)(unsigned long base
, unsigned long page_size
,
172 unsigned long tbl_size
);
174 #ifdef CONFIG_PPC_PSERIES
175 extern void radix_init_pseries(void);
177 static inline void radix_init_pseries(void) { };
180 #endif /* __ASSEMBLY__ */
181 #endif /* _ASM_POWERPC_BOOK3S_64_MMU_H_ */