1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24#include <linux/kernel.h>
25#include <linux/mm.h>
26#include <linux/init.h>
27#include <linux/percpu.h>
28#include <linux/hardirq.h>
29#include <asm/pgalloc.h>
30#include <asm/tlbflush.h>
31#include <asm/tlb.h>
32#include <asm/bug.h>
33
34DEFINE_PER_CPU(struct ppc64_tlb_batch, ppc64_tlb_batch);
35
36
37
38
39DEFINE_PER_CPU(struct mmu_gather, mmu_gathers);
40static DEFINE_PER_CPU(struct pte_freelist_batch *, pte_freelist_cur);
41static unsigned long pte_freelist_forced_free;
42
43struct pte_freelist_batch
44{
45 struct rcu_head rcu;
46 unsigned int index;
47 pgtable_free_t tables[0];
48};
49
50#define PTE_FREELIST_SIZE \
51 ((PAGE_SIZE - sizeof(struct pte_freelist_batch)) \
52 / sizeof(pgtable_free_t))
53
54static void pte_free_smp_sync(void *arg)
55{
56
57}
58
59
60
61
62static void pgtable_free_now(pgtable_free_t pgf)
63{
64 pte_freelist_forced_free++;
65
66 smp_call_function(pte_free_smp_sync, NULL, 1);
67
68 pgtable_free(pgf);
69}
70
71static void pte_free_rcu_callback(struct rcu_head *head)
72{
73 struct pte_freelist_batch *batch =
74 container_of(head, struct pte_freelist_batch, rcu);
75 unsigned int i;
76
77 for (i = 0; i < batch->index; i++)
78 pgtable_free(batch->tables[i]);
79
80 free_page((unsigned long)batch);
81}
82
83static void pte_free_submit(struct pte_freelist_batch *batch)
84{
85 INIT_RCU_HEAD(&batch->rcu);
86 call_rcu(&batch->rcu, pte_free_rcu_callback);
87}
88
89void pgtable_free_tlb(struct mmu_gather *tlb, pgtable_free_t pgf)
90{
91
92 cpumask_t local_cpumask = cpumask_of_cpu(smp_processor_id());
93 struct pte_freelist_batch **batchp = &__get_cpu_var(pte_freelist_cur);
94
95 if (atomic_read(&tlb->mm->mm_users) < 2 ||
96 cpus_equal(tlb->mm->cpu_vm_mask, local_cpumask)) {
97 pgtable_free(pgf);
98 return;
99 }
100
101 if (*batchp == NULL) {
102 *batchp = (struct pte_freelist_batch *)__get_free_page(GFP_ATOMIC);
103 if (*batchp == NULL) {
104 pgtable_free_now(pgf);
105 return;
106 }
107 (*batchp)->index = 0;
108 }
109 (*batchp)->tables[(*batchp)->index++] = pgf;
110 if ((*batchp)->index == PTE_FREELIST_SIZE) {
111 pte_free_submit(*batchp);
112 *batchp = NULL;
113 }
114}
115
116
117
118
119
120
121
122
123
124void hpte_need_flush(struct mm_struct *mm, unsigned long addr,
125 pte_t *ptep, unsigned long pte, int huge)
126{
127 struct ppc64_tlb_batch *batch = &__get_cpu_var(ppc64_tlb_batch);
128 unsigned long vsid, vaddr;
129 unsigned int psize;
130 int ssize;
131 real_pte_t rpte;
132 int i;
133
134 i = batch->index;
135
136
137
138
139 addr &= PAGE_MASK;
140
141
142
143
144
145
146
147
148 if (huge) {
149#ifdef CONFIG_HUGETLB_PAGE
150 psize = get_slice_psize(mm, addr);;
151#else
152 BUG();
153 psize = pte_pagesize_index(mm, addr, pte);
154#endif
155 } else
156 psize = pte_pagesize_index(mm, addr, pte);
157
158
159 if (!is_kernel_addr(addr)) {
160 ssize = user_segment_size(addr);
161 vsid = get_vsid(mm->context.id, addr, ssize);
162 WARN_ON(vsid == 0);
163 } else {
164 vsid = get_kernel_vsid(addr, mmu_kernel_ssize);
165 ssize = mmu_kernel_ssize;
166 }
167 vaddr = hpt_va(addr, vsid, ssize);
168 rpte = __real_pte(__pte(pte), ptep);
169
170
171
172
173
174
175
176 if (!batch->active) {
177 flush_hash_page(vaddr, rpte, psize, ssize, 0);
178 return;
179 }
180
181
182
183
184
185
186
187
188
189
190
191 if (i != 0 && (mm != batch->mm || batch->psize != psize ||
192 batch->ssize != ssize)) {
193 __flush_tlb_pending(batch);
194 i = 0;
195 }
196 if (i == 0) {
197 batch->mm = mm;
198 batch->psize = psize;
199 batch->ssize = ssize;
200 }
201 batch->pte[i] = rpte;
202 batch->vaddr[i] = vaddr;
203 batch->index = ++i;
204 if (i >= PPC64_TLB_BATCH_NR)
205 __flush_tlb_pending(batch);
206}
207
208
209
210
211
212
213
214
215void __flush_tlb_pending(struct ppc64_tlb_batch *batch)
216{
217 cpumask_t tmp;
218 int i, local = 0;
219
220 i = batch->index;
221 tmp = cpumask_of_cpu(smp_processor_id());
222 if (cpus_equal(batch->mm->cpu_vm_mask, tmp))
223 local = 1;
224 if (i == 1)
225 flush_hash_page(batch->vaddr[0], batch->pte[0],
226 batch->psize, batch->ssize, local);
227 else
228 flush_hash_range(i, local);
229 batch->index = 0;
230}
231
232void pte_free_finish(void)
233{
234
235 struct pte_freelist_batch **batchp = &__get_cpu_var(pte_freelist_cur);
236
237 if (*batchp == NULL)
238 return;
239 pte_free_submit(*batchp);
240 *batchp = NULL;
241}
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261#ifdef CONFIG_HOTPLUG
262
263void __flush_hash_table_range(struct mm_struct *mm, unsigned long start,
264 unsigned long end)
265{
266 unsigned long flags;
267
268 start = _ALIGN_DOWN(start, PAGE_SIZE);
269 end = _ALIGN_UP(end, PAGE_SIZE);
270
271 BUG_ON(!mm->pgd);
272
273
274
275
276
277
278
279
280 local_irq_save(flags);
281 arch_enter_lazy_mmu_mode();
282 for (; start < end; start += PAGE_SIZE) {
283 pte_t *ptep = find_linux_pte(mm->pgd, start);
284 unsigned long pte;
285
286 if (ptep == NULL)
287 continue;
288 pte = pte_val(*ptep);
289 if (!(pte & _PAGE_HASHPTE))
290 continue;
291 hpte_need_flush(mm, start, ptep, pte, 0);
292 }
293 arch_leave_lazy_mmu_mode();
294 local_irq_restore(flags);
295}
296
297#endif
298