mmu.h 6.8 KB
Newer Older
1
/* SPDX-License-Identifier: GPL-2.0 */
2 3 4
#ifndef _ASM_POWERPC_BOOK3S_64_MMU_H_
#define _ASM_POWERPC_BOOK3S_64_MMU_H_

5 6
#include <asm/page.h>

7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
#ifndef __ASSEMBLY__
/*
 * Page size definition
 *
 *    shift : is the "PAGE_SHIFT" value for that page size
 *    sllp  : is a bit mask with the value of SLB L || LP to be or'ed
 *            directly to a slbmte "vsid" value
 *    penc  : is the HPTE encoding mask for the "LP" field:
 *
 */
struct mmu_psize_def {
	unsigned int	shift;	/* number of bits */
	int		penc[MMU_PAGE_COUNT];	/* HPTE encoding */
	unsigned int	tlbiel;	/* tlbiel supported for that page size */
	unsigned long	avpnm;	/* bits to mask out in AVPN in the HPTE */
22 23 24 25
	union {
		unsigned long	sllp;	/* SLB L||LP (exact mask to use in slbmte) */
		unsigned long ap;	/* Ap encoding used by PowerISA 3.0 */
	};
26 27 28 29 30 31 32 33
};
extern struct mmu_psize_def mmu_psize_defs[MMU_PAGE_COUNT];
#endif /* __ASSEMBLY__ */

/* 64-bit classic hash table MMU */
#include <asm/book3s/64/mmu-hash.h>

#ifndef __ASSEMBLY__
34
/*
35
 * ISA 3.0 partition and process table entry format
36 37 38 39 40 41 42 43 44 45 46 47 48
 */
struct prtb_entry {
	__be64 prtb0;
	__be64 prtb1;
};
extern struct prtb_entry *process_tb;

struct patb_entry {
	__be64 patb0;
	__be64 patb1;
};
extern struct patb_entry *partition_tb;

49
/* Bits in patb0 field */
50
#define PATB_HR		(1UL << 63)
51
#define RPDB_MASK	0x0fffffffffffff00UL
52
#define RPDB_SHIFT	(1UL << 8)
53 54 55 56 57 58 59 60 61
#define RTS1_SHIFT	61		/* top 2 bits of radix tree size */
#define RTS1_MASK	(3UL << RTS1_SHIFT)
#define RTS2_SHIFT	5		/* bottom 3 bits of radix tree size */
#define RTS2_MASK	(7UL << RTS2_SHIFT)
#define RPDS_MASK	0x1f		/* root page dir. size field */

/* Bits in patb1 field */
#define PATB_GR		(1UL << 63)	/* guest uses radix; must match HR */
#define PRTS_MASK	0x1f		/* process table size field */
62
#define PRTB_MASK	0x0ffffffffffff000UL
63

64 65 66 67 68 69
/* Number of supported PID bits */
extern unsigned int mmu_pid_bits;

/* Base PID to allocate from */
extern unsigned int mmu_base_pid;

70 71 72
/*
 * memory block size used with radix translation.
 */
73
extern unsigned long __ro_after_init radix_mem_block_size;
74

75 76
#define PRTB_SIZE_SHIFT	(mmu_pid_bits + 4)
#define PRTB_ENTRIES	(1ul << mmu_pid_bits)
77

78 79 80 81
/*
 * Power9 currently only support 64K partition table size.
 */
#define PATB_SIZE_SHIFT	16
82 83 84 85

typedef unsigned long mm_context_id_t;
struct spinlock;

86 87 88
/* Maximum possible number of NPUs in a system. */
#define NV_MAX_NPUS 8

89
typedef struct {
90 91 92 93 94 95 96 97 98 99 100 101
	union {
		/*
		 * We use id as the PIDR content for radix. On hash we can use
		 * more than one id. The extended ids are used when we start
		 * having address above 512TB. We allocate one extended id
		 * for each 512TB. The new id is then used with the 49 bit
		 * EA to build a new VA. We always use ESID_BITS_1T_MASK bits
		 * from EA and new context ids to build the new VAs.
		 */
		mm_context_id_t id;
		mm_context_id_t extended_id[TASK_SIZE_USER64/TASK_CONTEXT_SIZE];
	};
102

103 104 105
	/* Number of bits in the mm_cpumask */
	atomic_t active_cpus;

106 107 108
	/* Number of users of the external (Nest) MMU */
	atomic_t copros;

109 110 111
	/* Number of user space windows opened in process mm_context */
	atomic_t vas_windows;

112
	struct hash_mm_context *hash_context;
113

114
	void __user *vdso;
115 116 117
	/*
	 * pagetable fragment support
	 */
118
	void *pte_frag;
119
	void *pmd_frag;
120 121 122
#ifdef CONFIG_SPAPR_TCE_IOMMU
	struct list_head iommu_group_mem_list;
#endif
123 124 125 126 127 128 129 130

#ifdef CONFIG_PPC_MEM_KEYS
	/*
	 * Each bit represents one protection key.
	 * bit set   -> key allocated
	 * bit unset -> key available for allocation
	 */
	u32 pkey_allocation_map;
R
Ram Pai 已提交
131
	s16 execute_only_pkey; /* key holding execute-only protection */
132
#endif
133 134
} mm_context_t;

135 136
static inline u16 mm_ctx_user_psize(mm_context_t *ctx)
{
137
	return ctx->hash_context->user_psize;
138 139 140 141
}

static inline void mm_ctx_set_user_psize(mm_context_t *ctx, u16 user_psize)
{
142
	ctx->hash_context->user_psize = user_psize;
143 144 145 146
}

static inline unsigned char *mm_ctx_low_slices(mm_context_t *ctx)
{
147
	return ctx->hash_context->low_slices_psize;
148 149 150 151
}

static inline unsigned char *mm_ctx_high_slices(mm_context_t *ctx)
{
152
	return ctx->hash_context->high_slices_psize;
153 154 155 156
}

static inline unsigned long mm_ctx_slb_addr_limit(mm_context_t *ctx)
{
157
	return ctx->hash_context->slb_addr_limit;
158 159 160 161
}

static inline void mm_ctx_set_slb_addr_limit(mm_context_t *ctx, unsigned long limit)
{
162
	ctx->hash_context->slb_addr_limit = limit;
163 164
}

165 166 167 168
static inline struct slice_mask *slice_mask_for_size(mm_context_t *ctx, int psize)
{
#ifdef CONFIG_PPC_64K_PAGES
	if (psize == MMU_PAGE_64K)
169
		return &ctx->hash_context->mask_64k;
170 171 172
#endif
#ifdef CONFIG_HUGETLB_PAGE
	if (psize == MMU_PAGE_16M)
173
		return &ctx->hash_context->mask_16m;
174
	if (psize == MMU_PAGE_16G)
175
		return &ctx->hash_context->mask_16g;
176 177 178
#endif
	BUG_ON(psize != MMU_PAGE_4K);

179
	return &ctx->hash_context->mask_4k;
180 181
}

182 183 184
#ifdef CONFIG_PPC_SUBPAGE_PROT
static inline struct subpage_prot_table *mm_ctx_subpage_prot(mm_context_t *ctx)
{
185
	return ctx->hash_context->spt;
186 187 188
}
#endif

189 190 191 192 193 194 195 196 197
/*
 * The current system page and segment sizes
 */
extern int mmu_linear_psize;
extern int mmu_virtual_psize;
extern int mmu_vmalloc_psize;
extern int mmu_vmemmap_psize;
extern int mmu_io_psize;

198
/* MMU initialization */
199
void mmu_early_init_devtree(void);
200
void hash__early_init_devtree(void);
201
void radix__early_init_devtree(void);
202 203 204 205 206 207
#ifdef CONFIG_PPC_MEM_KEYS
void pkey_early_init_devtree(void);
#else
static inline void pkey_early_init_devtree(void) {}
#endif

208
extern void hash__early_init_mmu(void);
209
extern void radix__early_init_mmu(void);
210
static inline void __init early_init_mmu(void)
211
{
212 213
	if (radix_enabled())
		return radix__early_init_mmu();
214 215 216
	return hash__early_init_mmu();
}
extern void hash__early_init_mmu_secondary(void);
217
extern void radix__early_init_mmu_secondary(void);
218 219
static inline void early_init_mmu_secondary(void)
{
220 221
	if (radix_enabled())
		return radix__early_init_mmu_secondary();
222 223 224 225 226 227 228 229
	return hash__early_init_mmu_secondary();
}

extern void hash__setup_initial_memory_limit(phys_addr_t first_memblock_base,
					 phys_addr_t first_memblock_size);
static inline void setup_initial_memory_limit(phys_addr_t first_memblock_base,
					      phys_addr_t first_memblock_size)
{
230 231 232 233 234
	/*
	 * Hash has more strict restrictions. At this point we don't
	 * know which translations we will pick. Hence go with hash
	 * restrictions.
	 */
235 236 237
	return hash__setup_initial_memory_limit(first_memblock_base,
					   first_memblock_size);
}
238

239 240 241 242 243 244
#ifdef CONFIG_PPC_PSERIES
extern void radix_init_pseries(void);
#else
static inline void radix_init_pseries(void) { };
#endif

245
static inline int get_user_context(mm_context_t *ctx, unsigned long ea)
246 247 248 249 250 251 252 253 254 255 256 257 258 259
{
	int index = ea >> MAX_EA_BITS_PER_CONTEXT;

	if (likely(index < ARRAY_SIZE(ctx->extended_id)))
		return ctx->extended_id[index];

	/* should never happen */
	WARN_ON(1);
	return 0;
}

static inline unsigned long get_user_vsid(mm_context_t *ctx,
					  unsigned long ea, int ssize)
{
260
	unsigned long context = get_user_context(ctx, ea);
261 262 263 264

	return get_vsid(context, ea, ssize);
}

265 266
#endif /* __ASSEMBLY__ */
#endif /* _ASM_POWERPC_BOOK3S_64_MMU_H_ */