powerpc/book3s64/kuap/kuep: Add PPC_PKEY config on book3s64
[linux-2.6-block.git] / arch / powerpc / include / asm / book3s / 64 / mmu.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
11a6f6ab
AK
2#ifndef _ASM_POWERPC_BOOK3S_64_MMU_H_
3#define _ASM_POWERPC_BOOK3S_64_MMU_H_
4
d09780f3
CL
5#include <asm/page.h>
6
11a6f6ab
AK
7#ifndef __ASSEMBLY__
8/*
9 * Page size definition
10 *
11 * shift : is the "PAGE_SHIFT" value for that page size
12 * sllp : is a bit mask with the value of SLB L || LP to be or'ed
13 * directly to a slbmte "vsid" value
14 * penc : is the HPTE encoding mask for the "LP" field:
15 *
16 */
17struct mmu_psize_def {
18 unsigned int shift; /* number of bits */
19 int penc[MMU_PAGE_COUNT]; /* HPTE encoding */
20 unsigned int tlbiel; /* tlbiel supported for that page size */
21 unsigned long avpnm; /* bits to mask out in AVPN in the HPTE */
2bfd65e4
AK
22 union {
23 unsigned long sllp; /* SLB L||LP (exact mask to use in slbmte) */
24 unsigned long ap; /* Ap encoding used by PowerISA 3.0 */
25 };
11a6f6ab
AK
26};
27extern struct mmu_psize_def mmu_psize_defs[MMU_PAGE_COUNT];
28#endif /* __ASSEMBLY__ */
29
11a6f6ab
AK
30/* 64-bit classic hash table MMU */
31#include <asm/book3s/64/mmu-hash.h>
11a6f6ab
AK
32
33#ifndef __ASSEMBLY__
e9983344 34/*
8ab102d6 35 * ISA 3.0 partition and process table entry format
e9983344
AK
36 */
37struct prtb_entry {
38 __be64 prtb0;
39 __be64 prtb1;
40};
41extern struct prtb_entry *process_tb;
42
43struct patb_entry {
44 __be64 patb0;
45 __be64 patb1;
46};
47extern struct patb_entry *partition_tb;
48
dbcbfee0 49/* Bits in patb0 field */
e9983344 50#define PATB_HR (1UL << 63)
70cd4c10 51#define RPDB_MASK 0x0fffffffffffff00UL
e9983344 52#define RPDB_SHIFT (1UL << 8)
dbcbfee0
PM
53#define RTS1_SHIFT 61 /* top 2 bits of radix tree size */
54#define RTS1_MASK (3UL << RTS1_SHIFT)
55#define RTS2_SHIFT 5 /* bottom 3 bits of radix tree size */
56#define RTS2_MASK (7UL << RTS2_SHIFT)
57#define RPDS_MASK 0x1f /* root page dir. size field */
58
59/* Bits in patb1 field */
60#define PATB_GR (1UL << 63) /* guest uses radix; must match HR */
61#define PRTS_MASK 0x1f /* process table size field */
70cd4c10 62#define PRTB_MASK 0x0ffffffffffff000UL
dbcbfee0 63
a25bd72b
BH
64/* Number of supported PID bits */
65extern unsigned int mmu_pid_bits;
66
67/* Base PID to allocate from */
68extern unsigned int mmu_base_pid;
69
af9d00e9
AK
70/*
71 * memory block size used with radix translation.
72 */
950805f4 73extern unsigned long __ro_after_init radix_mem_block_size;
af9d00e9 74
a25bd72b
BH
75#define PRTB_SIZE_SHIFT (mmu_pid_bits + 4)
76#define PRTB_ENTRIES (1ul << mmu_pid_bits)
760573c1 77
e9983344
AK
78/*
79 * Power9 currently only support 64K partition table size.
80 */
81#define PATB_SIZE_SHIFT 16
11a6f6ab
AK
82
83typedef unsigned long mm_context_id_t;
84struct spinlock;
85
1ab66d1f
AP
86/* Maximum possible number of NPUs in a system. */
87#define NV_MAX_NPUS 8
88
11a6f6ab 89typedef struct {
f384796c
AK
90 union {
91 /*
92 * We use id as the PIDR content for radix. On hash we can use
93 * more than one id. The extended ids are used when we start
94 * having address above 512TB. We allocate one extended id
95 * for each 512TB. The new id is then used with the 49 bit
96 * EA to build a new VA. We always use ESID_BITS_1T_MASK bits
97 * from EA and new context ids to build the new VAs.
98 */
99 mm_context_id_t id;
100 mm_context_id_t extended_id[TASK_SIZE_USER64/TASK_CONTEXT_SIZE];
101 };
11a6f6ab 102
a619e59c
BH
103 /* Number of bits in the mm_cpumask */
104 atomic_t active_cpus;
105
aff6f8cb
BH
106 /* Number of users of the external (Nest) MMU */
107 atomic_t copros;
108
c420644c
HM
109 /* Number of user space windows opened in process mm_context */
110 atomic_t vas_windows;
111
70110186 112 struct hash_mm_context *hash_context;
1ab66d1f 113
c102f076 114 void __user *vdso;
1c7ec8a4
AK
115 /*
116 * pagetable fragment support
117 */
11a6f6ab 118 void *pte_frag;
8a6c697b 119 void *pmd_frag;
11a6f6ab
AK
120#ifdef CONFIG_SPAPR_TCE_IOMMU
121 struct list_head iommu_group_mem_list;
122#endif
4fb158f6
RP
123
124#ifdef CONFIG_PPC_MEM_KEYS
125 /*
126 * Each bit represents one protection key.
127 * bit set -> key allocated
128 * bit unset -> key available for allocation
129 */
130 u32 pkey_allocation_map;
5586cf61 131 s16 execute_only_pkey; /* key holding execute-only protection */
4fb158f6 132#endif
11a6f6ab
AK
133} mm_context_t;
134
60458fba
AK
135static inline u16 mm_ctx_user_psize(mm_context_t *ctx)
136{
70110186 137 return ctx->hash_context->user_psize;
60458fba
AK
138}
139
140static inline void mm_ctx_set_user_psize(mm_context_t *ctx, u16 user_psize)
141{
70110186 142 ctx->hash_context->user_psize = user_psize;
60458fba
AK
143}
144
145static inline unsigned char *mm_ctx_low_slices(mm_context_t *ctx)
146{
70110186 147 return ctx->hash_context->low_slices_psize;
60458fba
AK
148}
149
150static inline unsigned char *mm_ctx_high_slices(mm_context_t *ctx)
151{
70110186 152 return ctx->hash_context->high_slices_psize;
60458fba
AK
153}
154
155static inline unsigned long mm_ctx_slb_addr_limit(mm_context_t *ctx)
156{
70110186 157 return ctx->hash_context->slb_addr_limit;
60458fba
AK
158}
159
160static inline void mm_ctx_set_slb_addr_limit(mm_context_t *ctx, unsigned long limit)
161{
70110186 162 ctx->hash_context->slb_addr_limit = limit;
60458fba
AK
163}
164
fca5c1e9
CL
165static inline struct slice_mask *slice_mask_for_size(mm_context_t *ctx, int psize)
166{
167#ifdef CONFIG_PPC_64K_PAGES
168 if (psize == MMU_PAGE_64K)
87746121 169 return &ctx->hash_context->mask_64k;
fca5c1e9
CL
170#endif
171#ifdef CONFIG_HUGETLB_PAGE
172 if (psize == MMU_PAGE_16M)
87746121 173 return &ctx->hash_context->mask_16m;
fca5c1e9 174 if (psize == MMU_PAGE_16G)
87746121 175 return &ctx->hash_context->mask_16g;
fca5c1e9
CL
176#endif
177 BUG_ON(psize != MMU_PAGE_4K);
178
87746121 179 return &ctx->hash_context->mask_4k;
fca5c1e9
CL
180}
181
60458fba
AK
182#ifdef CONFIG_PPC_SUBPAGE_PROT
183static inline struct subpage_prot_table *mm_ctx_subpage_prot(mm_context_t *ctx)
184{
ef629cc5 185 return ctx->hash_context->spt;
60458fba
AK
186}
187#endif
188
11a6f6ab
AK
189/*
190 * The current system page and segment sizes
191 */
192extern int mmu_linear_psize;
193extern int mmu_virtual_psize;
194extern int mmu_vmalloc_psize;
195extern int mmu_vmemmap_psize;
196extern int mmu_io_psize;
197
756d08d1 198/* MMU initialization */
1a01dc87 199void mmu_early_init_devtree(void);
bacf9cf8 200void hash__early_init_devtree(void);
2537b09c 201void radix__early_init_devtree(void);
227ae625 202#ifdef CONFIG_PPC_PKEY
d3cd91fb
AK
203void pkey_early_init_devtree(void);
204#else
205static inline void pkey_early_init_devtree(void) {}
206#endif
207
756d08d1 208extern void hash__early_init_mmu(void);
2bfd65e4 209extern void radix__early_init_mmu(void);
9384e552 210static inline void __init early_init_mmu(void)
756d08d1 211{
2bfd65e4
AK
212 if (radix_enabled())
213 return radix__early_init_mmu();
756d08d1
AK
214 return hash__early_init_mmu();
215}
216extern void hash__early_init_mmu_secondary(void);
2bfd65e4 217extern void radix__early_init_mmu_secondary(void);
756d08d1
AK
218static inline void early_init_mmu_secondary(void)
219{
2bfd65e4
AK
220 if (radix_enabled())
221 return radix__early_init_mmu_secondary();
756d08d1
AK
222 return hash__early_init_mmu_secondary();
223}
224
225extern void hash__setup_initial_memory_limit(phys_addr_t first_memblock_base,
226 phys_addr_t first_memblock_size);
227static inline void setup_initial_memory_limit(phys_addr_t first_memblock_base,
228 phys_addr_t first_memblock_size)
229{
103a8542
AK
230 /*
231 * Hash has more strict restrictions. At this point we don't
232 * know which translations we will pick. Hence go with hash
233 * restrictions.
234 */
756d08d1
AK
235 return hash__setup_initial_memory_limit(first_memblock_base,
236 first_memblock_size);
237}
eea8148c 238
cc3d2940
PM
239#ifdef CONFIG_PPC_PSERIES
240extern void radix_init_pseries(void);
241#else
242static inline void radix_init_pseries(void) { };
243#endif
244
c9f80734 245static inline int get_user_context(mm_context_t *ctx, unsigned long ea)
f384796c
AK
246{
247 int index = ea >> MAX_EA_BITS_PER_CONTEXT;
248
249 if (likely(index < ARRAY_SIZE(ctx->extended_id)))
250 return ctx->extended_id[index];
251
252 /* should never happen */
253 WARN_ON(1);
254 return 0;
255}
256
257static inline unsigned long get_user_vsid(mm_context_t *ctx,
258 unsigned long ea, int ssize)
259{
c9f80734 260 unsigned long context = get_user_context(ctx, ea);
f384796c
AK
261
262 return get_vsid(context, ea, ssize);
263}
264
11a6f6ab
AK
265#endif /* __ASSEMBLY__ */
266#endif /* _ASM_POWERPC_BOOK3S_64_MMU_H_ */