blob: a75f63833284cbb089f67fa21bee0357426a2a88 [file] [log] [blame]
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001/*
2 * MMU context allocation for 64-bit kernels.
3 *
4 * Copyright (C) 2004 Anton Blanchard, IBM Corp. <anton@samba.org>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
Paul Mackerras14cf11a2005-09-26 16:04:21 +100013#include <linux/sched.h>
14#include <linux/kernel.h>
15#include <linux/errno.h>
16#include <linux/string.h>
17#include <linux/types.h>
18#include <linux/mm.h>
19#include <linux/spinlock.h>
20#include <linux/idr.h>
Paul Gortmaker4b16f8e2011-07-22 18:24:23 -040021#include <linux/export.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090022#include <linux/gfp.h>
Tseng-Hui (Frank) Lin851d2e22011-05-02 20:43:04 +000023#include <linux/slab.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100024
25#include <asm/mmu_context.h>
Aneesh Kumar K.V5c1f6ee2013-04-28 09:37:33 +000026#include <asm/pgalloc.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100027
Jimi Xenidis9d670282011-09-29 10:55:12 +000028#include "icswx.h"
Tseng-Hui (Frank) Lin851d2e22011-05-02 20:43:04 +000029
Paul Mackerras14cf11a2005-09-26 16:04:21 +100030static DEFINE_SPINLOCK(mmu_context_lock);
Anton Blanchard7317ac82010-02-07 12:30:12 +000031static DEFINE_IDA(mmu_context_ida);
Paul Mackerras14cf11a2005-09-26 16:04:21 +100032
Michael Ellermanc1ff8402017-03-29 22:10:45 +110033static int alloc_context_id(int min_id, int max_id)
Paul Mackerras14cf11a2005-09-26 16:04:21 +100034{
Michael Ellermanc1ff8402017-03-29 22:10:45 +110035 int index, err;
Paul Mackerras14cf11a2005-09-26 16:04:21 +100036
37again:
Anton Blanchard7317ac82010-02-07 12:30:12 +000038 if (!ida_pre_get(&mmu_context_ida, GFP_KERNEL))
Paul Mackerras14cf11a2005-09-26 16:04:21 +100039 return -ENOMEM;
40
41 spin_lock(&mmu_context_lock);
Michael Ellermanc1ff8402017-03-29 22:10:45 +110042 err = ida_get_new_above(&mmu_context_ida, min_id, &index);
Paul Mackerras14cf11a2005-09-26 16:04:21 +100043 spin_unlock(&mmu_context_lock);
44
45 if (err == -EAGAIN)
46 goto again;
47 else if (err)
48 return err;
49
Michael Ellermanc1ff8402017-03-29 22:10:45 +110050 if (index > max_id) {
Sonny Raof86c97472006-06-27 08:46:09 -040051 spin_lock(&mmu_context_lock);
Anton Blanchard7317ac82010-02-07 12:30:12 +000052 ida_remove(&mmu_context_ida, index);
Sonny Raof86c97472006-06-27 08:46:09 -040053 spin_unlock(&mmu_context_lock);
Paul Mackerras14cf11a2005-09-26 16:04:21 +100054 return -ENOMEM;
55 }
56
Alexander Grafe85a4712009-11-02 12:02:30 +000057 return index;
58}
Michael Ellermana336f2f2017-03-29 22:00:46 +110059
Aneesh Kumar K.V82228e32017-03-22 09:07:00 +053060void hash__reserve_context_id(int id)
61{
62 int rc, result = 0;
63
64 do {
65 if (!ida_pre_get(&mmu_context_ida, GFP_KERNEL))
66 break;
67
68 spin_lock(&mmu_context_lock);
69 rc = ida_get_new_above(&mmu_context_ida, id, &result);
70 spin_unlock(&mmu_context_lock);
71 } while (rc == -EAGAIN);
72
73 WARN(result != id, "mmu: Failed to reserve context id %d (rc %d)\n", id, result);
74}
75
Michael Ellermana336f2f2017-03-29 22:00:46 +110076int hash__alloc_context_id(void)
77{
Aneesh Kumar K.Ve6f81a92017-03-29 17:21:53 +110078 unsigned long max;
79
80 if (mmu_has_feature(MMU_FTR_68_BIT_VA))
81 max = MAX_USER_CONTEXT;
82 else
83 max = MAX_USER_CONTEXT_65BIT_VA;
84
85 return alloc_context_id(MIN_USER_CONTEXT, max);
Michael Ellermana336f2f2017-03-29 22:00:46 +110086}
87EXPORT_SYMBOL_GPL(hash__alloc_context_id);
88
Michael Ellerman760573c2017-03-29 22:36:56 +110089static int hash__init_new_context(struct mm_struct *mm)
Alexander Grafe85a4712009-11-02 12:02:30 +000090{
91 int index;
92
Michael Ellermanc1ff8402017-03-29 22:10:45 +110093 index = hash__alloc_context_id();
Alexander Grafe85a4712009-11-02 12:02:30 +000094 if (index < 0)
95 return index;
96
Michael Ellerman760573c2017-03-29 22:36:56 +110097 /*
Aneesh Kumar K.V957b7782017-03-22 09:06:58 +053098 * We do switch_slb() early in fork, even before we setup the
99 * mm->context.addr_limit. Default to max task size so that we copy the
100 * default values to paca which will help us to handle slb miss early.
101 */
Aneesh Kumar K.V92d9dfd2017-06-01 20:05:04 +0530102 mm->context.addr_limit = DEFAULT_MAP_WINDOW_USER64;
Aneesh Kumar K.V957b7782017-03-22 09:06:58 +0530103
104 /*
Michael Ellerman760573c2017-03-29 22:36:56 +1100105 * The old code would re-promote on fork, we don't do that when using
106 * slices as it could cause problem promoting slices that have been
107 * forced down to 4K.
108 *
109 * For book3s we have MMU_NO_CONTEXT set to be ~0. Hence check
110 * explicitly against context.id == 0. This ensures that we properly
111 * initialize context slice details for newly allocated mm's (which will
112 * have id == 0) and don't alter context slice inherited via fork (which
113 * will have id != 0).
114 *
115 * We should not be calling init_new_context() on init_mm. Hence a
116 * check against 0 is OK.
117 */
118 if (mm->context.id == 0)
119 slice_set_user_psize(mm, mmu_virtual_psize);
Aneesh Kumar K.V7e381c02016-04-29 23:26:02 +1000120
Michael Ellerman760573c2017-03-29 22:36:56 +1100121 subpage_prot_init_new_context(mm);
122
123 return index;
124}
125
126static int radix__init_new_context(struct mm_struct *mm)
127{
128 unsigned long rts_field;
Benjamin Herrenschmidta25bd722017-07-24 14:26:06 +1000129 int index, max_id;
Michael Ellerman760573c2017-03-29 22:36:56 +1100130
Benjamin Herrenschmidta25bd722017-07-24 14:26:06 +1000131 max_id = (1 << mmu_pid_bits) - 1;
132 index = alloc_context_id(mmu_base_pid, max_id);
Michael Ellerman760573c2017-03-29 22:36:56 +1100133 if (index < 0)
134 return index;
135
136 /*
137 * set the process table entry,
138 */
139 rts_field = radix__get_tree_size();
140 process_tb[index].prtb0 = cpu_to_be64(rts_field | __pa(mm->pgd) | RADIX_PGD_INDEX_SIZE);
141
Benjamin Herrenschmidt3a6a0472017-07-07 16:12:16 -0500142 /*
143 * Order the above store with subsequent update of the PID
144 * register (at which point HW can start loading/caching
145 * the entry) and the corresponding load by the MMU from
146 * the L2 cache.
147 */
148 asm volatile("ptesync;isync" : : : "memory");
149
Alistair Popple1ab66d12017-04-03 19:51:44 +1000150 mm->context.npu_context = NULL;
151
Michael Ellerman760573c2017-03-29 22:36:56 +1100152 return index;
153}
154
155int init_new_context(struct task_struct *tsk, struct mm_struct *mm)
156{
157 int index;
158
159 if (radix_enabled())
160 index = radix__init_new_context(mm);
161 else
162 index = hash__init_new_context(mm);
163
164 if (index < 0)
165 return index;
166
Stephen Rothwell9dfe5c532007-08-15 16:33:55 +1000167 mm->context.id = index;
Tseng-Hui (Frank) Lin851d2e22011-05-02 20:43:04 +0000168#ifdef CONFIG_PPC_ICSWX
169 mm->context.cop_lockp = kmalloc(sizeof(spinlock_t), GFP_KERNEL);
170 if (!mm->context.cop_lockp) {
171 __destroy_context(index);
172 subpage_prot_free(mm);
Stephen Rothwell79af2182011-05-06 10:39:08 +1000173 mm->context.id = MMU_NO_CONTEXT;
Tseng-Hui (Frank) Lin851d2e22011-05-02 20:43:04 +0000174 return -ENOMEM;
175 }
176 spin_lock_init(mm->context.cop_lockp);
177#endif /* CONFIG_PPC_ICSWX */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000178
Aneesh Kumar K.V5c1f6ee2013-04-28 09:37:33 +0000179#ifdef CONFIG_PPC_64K_PAGES
180 mm->context.pte_frag = NULL;
181#endif
Alexey Kardashevskiy15b244a2015-06-05 16:35:24 +1000182#ifdef CONFIG_SPAPR_TCE_IOMMU
Alexey Kardashevskiy88f54a32016-11-30 17:51:59 +1100183 mm_iommu_init(mm);
Alexey Kardashevskiy15b244a2015-06-05 16:35:24 +1000184#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000185 return 0;
186}
187
Alexander Grafe85a4712009-11-02 12:02:30 +0000188void __destroy_context(int context_id)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000189{
190 spin_lock(&mmu_context_lock);
Anton Blanchard7317ac82010-02-07 12:30:12 +0000191 ida_remove(&mmu_context_ida, context_id);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000192 spin_unlock(&mmu_context_lock);
Alexander Grafe85a4712009-11-02 12:02:30 +0000193}
194EXPORT_SYMBOL_GPL(__destroy_context);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000195
Aneesh Kumar K.V5c1f6ee2013-04-28 09:37:33 +0000196#ifdef CONFIG_PPC_64K_PAGES
197static void destroy_pagetable_page(struct mm_struct *mm)
198{
199 int count;
200 void *pte_frag;
201 struct page *page;
202
203 pte_frag = mm->context.pte_frag;
204 if (!pte_frag)
205 return;
206
207 page = virt_to_page(pte_frag);
208 /* drop all the pending references */
209 count = ((unsigned long)pte_frag & ~PAGE_MASK) >> PTE_FRAG_SIZE_SHIFT;
210 /* We allow PTE_FRAG_NR fragments from a PTE page */
Joonsoo Kimfe896d12016-03-17 14:19:26 -0700211 if (page_ref_sub_and_test(page, PTE_FRAG_NR - count)) {
Aneesh Kumar K.V5c1f6ee2013-04-28 09:37:33 +0000212 pgtable_page_dtor(page);
213 free_hot_cold_page(page, 0);
214 }
215}
216
217#else
218static inline void destroy_pagetable_page(struct mm_struct *mm)
219{
220 return;
221}
222#endif
223
Alexander Grafe85a4712009-11-02 12:02:30 +0000224void destroy_context(struct mm_struct *mm)
225{
Alexey Kardashevskiy15b244a2015-06-05 16:35:24 +1000226#ifdef CONFIG_SPAPR_TCE_IOMMU
Alexey Kardashevskiy4b6fad72016-11-30 17:52:05 +1100227 WARN_ON_ONCE(!list_empty(&mm->context.iommu_group_mem_list));
Alexey Kardashevskiy15b244a2015-06-05 16:35:24 +1000228#endif
Tseng-Hui (Frank) Lin851d2e22011-05-02 20:43:04 +0000229#ifdef CONFIG_PPC_ICSWX
230 drop_cop(mm->context.acop, mm);
231 kfree(mm->context.cop_lockp);
232 mm->context.cop_lockp = NULL;
233#endif /* CONFIG_PPC_ICSWX */
Aneesh Kumar K.V5c1f6ee2013-04-28 09:37:33 +0000234
Benjamin Herrenschmidtc6bb0b82017-07-08 07:45:32 -0500235 if (radix_enabled()) {
236 /*
237 * Radix doesn't have a valid bit in the process table
238 * entries. However we know that at least P9 implementation
239 * will avoid caching an entry with an invalid RTS field,
240 * and 0 is invalid. So this will do.
241 */
242 process_tb[mm->context.id].prtb0 = 0;
243 } else
Aneesh Kumar K.V7e381c02016-04-29 23:26:02 +1000244 subpage_prot_free(mm);
Aneesh Kumar K.V5c1f6ee2013-04-28 09:37:33 +0000245 destroy_pagetable_page(mm);
Alexander Grafe85a4712009-11-02 12:02:30 +0000246 __destroy_context(mm->context.id);
Michael Ellerman5e8e7b42011-04-12 19:00:04 +0000247 mm->context.id = MMU_NO_CONTEXT;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000248}
Aneesh Kumar K.V7e381c02016-04-29 23:26:02 +1000249
250#ifdef CONFIG_PPC_RADIX_MMU
251void radix__switch_mmu_context(struct mm_struct *prev, struct mm_struct *next)
252{
Benjamin Herrenschmidt74e27c62017-06-25 15:08:46 -0500253
254 if (cpu_has_feature(CPU_FTR_POWER9_DD1)) {
255 isync();
256 mtspr(SPRN_PID, next->context.id);
257 isync();
258 asm volatile(PPC_INVALIDATE_ERAT : : :"memory");
259 } else {
260 mtspr(SPRN_PID, next->context.id);
261 isync();
262 }
Aneesh Kumar K.V7e381c02016-04-29 23:26:02 +1000263}
264#endif