blob: cbd34fc813eee1ad21c39e05a1366f7bb397e9ef [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * This file contains the routines for flushing entries from the
3 * TLB and MMU hash table.
4 *
5 * Derived from arch/ppc64/mm/init.c:
6 * Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
7 *
8 * Modifications by Paul Mackerras (PowerMac) (paulus@cs.anu.edu.au)
9 * and Cort Dougan (PReP) (cort@cs.nmt.edu)
10 * Copyright (C) 1996 Paul Mackerras
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 *
12 * Derived from "arch/i386/mm/init.c"
13 * Copyright (C) 1991, 1992, 1993, 1994 Linus Torvalds
14 *
15 * Dave Engebretsen <engebret@us.ibm.com>
16 * Rework for PPC64 port.
17 *
18 * This program is free software; you can redistribute it and/or
19 * modify it under the terms of the GNU General Public License
20 * as published by the Free Software Foundation; either version
21 * 2 of the License, or (at your option) any later version.
22 */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110023
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#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>
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110032#include <asm/bug.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34DEFINE_PER_CPU(struct ppc64_tlb_batch, ppc64_tlb_batch);
35
36/* This is declared as we are using the more or less generic
Jon Mason2ef94812006-01-23 10:58:20 -060037 * include/asm-powerpc/tlb.h file -- tgall
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 */
39DEFINE_PER_CPU(struct mmu_gather, mmu_gathers);
40DEFINE_PER_CPU(struct pte_freelist_batch *, pte_freelist_cur);
41unsigned long pte_freelist_forced_free;
42
David Gibsone28f7fa2005-08-05 19:39:06 +100043struct pte_freelist_batch
44{
45 struct rcu_head rcu;
46 unsigned int index;
47 pgtable_free_t tables[0];
48};
49
50DEFINE_PER_CPU(struct pte_freelist_batch *, pte_freelist_cur);
51unsigned long pte_freelist_forced_free;
52
53#define PTE_FREELIST_SIZE \
54 ((PAGE_SIZE - sizeof(struct pte_freelist_batch)) \
55 / sizeof(pgtable_free_t))
56
57#ifdef CONFIG_SMP
58static void pte_free_smp_sync(void *arg)
59{
60 /* Do nothing, just ensure we sync with all CPUs */
61}
62#endif
63
64/* This is only called when we are critically out of memory
65 * (and fail to get a page in pte_free_tlb).
66 */
67static void pgtable_free_now(pgtable_free_t pgf)
68{
69 pte_freelist_forced_free++;
70
71 smp_call_function(pte_free_smp_sync, NULL, 0, 1);
72
73 pgtable_free(pgf);
74}
75
76static void pte_free_rcu_callback(struct rcu_head *head)
77{
78 struct pte_freelist_batch *batch =
79 container_of(head, struct pte_freelist_batch, rcu);
80 unsigned int i;
81
82 for (i = 0; i < batch->index; i++)
83 pgtable_free(batch->tables[i]);
84
85 free_page((unsigned long)batch);
86}
87
88static void pte_free_submit(struct pte_freelist_batch *batch)
89{
90 INIT_RCU_HEAD(&batch->rcu);
91 call_rcu(&batch->rcu, pte_free_rcu_callback);
92}
93
94void pgtable_free_tlb(struct mmu_gather *tlb, pgtable_free_t pgf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070095{
Hugh Dickins01edcd82005-11-23 13:37:39 -080096 /* This is safe since tlb_gather_mmu has disabled preemption */
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 cpumask_t local_cpumask = cpumask_of_cpu(smp_processor_id());
98 struct pte_freelist_batch **batchp = &__get_cpu_var(pte_freelist_cur);
99
100 if (atomic_read(&tlb->mm->mm_users) < 2 ||
101 cpus_equal(tlb->mm->cpu_vm_mask, local_cpumask)) {
David Gibsone28f7fa2005-08-05 19:39:06 +1000102 pgtable_free(pgf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 return;
104 }
105
106 if (*batchp == NULL) {
107 *batchp = (struct pte_freelist_batch *)__get_free_page(GFP_ATOMIC);
108 if (*batchp == NULL) {
David Gibsone28f7fa2005-08-05 19:39:06 +1000109 pgtable_free_now(pgf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 return;
111 }
112 (*batchp)->index = 0;
113 }
David Gibsone28f7fa2005-08-05 19:39:06 +1000114 (*batchp)->tables[(*batchp)->index++] = pgf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 if ((*batchp)->index == PTE_FREELIST_SIZE) {
116 pte_free_submit(*batchp);
117 *batchp = NULL;
118 }
119}
120
121/*
Benjamin Herrenschmidta741e672007-04-10 17:09:37 +1000122 * A linux PTE was changed and the corresponding hash table entry
123 * neesd to be flushed. This function will either perform the flush
124 * immediately or will batch it up if the current CPU has an active
125 * batch on it.
126 *
127 * Must be called from within some kind of spinlock/non-preempt region...
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 */
Benjamin Herrenschmidta741e672007-04-10 17:09:37 +1000129void hpte_need_flush(struct mm_struct *mm, unsigned long addr,
130 pte_t *ptep, unsigned long pte, int huge)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 struct ppc64_tlb_batch *batch = &__get_cpu_var(ppc64_tlb_batch);
Benjamin Herrenschmidta741e672007-04-10 17:09:37 +1000133 unsigned long vsid, vaddr;
Paul Mackerrasbf72aeb2006-06-15 10:45:18 +1000134 unsigned int psize;
Benjamin Herrenschmidta741e672007-04-10 17:09:37 +1000135 real_pte_t rpte;
Benjamin Herrenschmidt61b1a942005-09-20 13:52:50 +1000136 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 i = batch->index;
139
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100140 /* We mask the address for the base page size. Huge pages will
141 * have applied their own masking already
142 */
143 addr &= PAGE_MASK;
144
Benjamin Herrenschmidt16c2d472007-05-08 16:27:28 +1000145 /* Get page size (maybe move back to caller).
146 *
147 * NOTE: when using special 64K mappings in 4K environment like
148 * for SPEs, we obtain the page size from the slice, which thus
149 * must still exist (and thus the VMA not reused) at the time
150 * of this call
151 */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100152 if (huge) {
153#ifdef CONFIG_HUGETLB_PAGE
154 psize = mmu_huge_psize;
155#else
156 BUG();
Benjamin Herrenschmidt16c2d472007-05-08 16:27:28 +1000157 psize = pte_pagesize_index(mm, addr, pte); /* shutup gcc */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100158#endif
Paul Mackerrasbf72aeb2006-06-15 10:45:18 +1000159 } else
Benjamin Herrenschmidt16c2d472007-05-08 16:27:28 +1000160 psize = pte_pagesize_index(mm, addr, pte);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100161
Benjamin Herrenschmidta741e672007-04-10 17:09:37 +1000162 /* Build full vaddr */
163 if (!is_kernel_addr(addr)) {
164 vsid = get_vsid(mm->context.id, addr);
165 WARN_ON(vsid == 0);
166 } else
167 vsid = get_kernel_vsid(addr);
168 vaddr = (vsid << 28 ) | (addr & 0x0fffffff);
169 rpte = __real_pte(__pte(pte), ptep);
170
171 /*
172 * Check if we have an active batch on this CPU. If not, just
173 * flush now and return. For now, we don global invalidates
174 * in that case, might be worth testing the mm cpu mask though
175 * and decide to use local invalidates instead...
176 */
177 if (!batch->active) {
178 flush_hash_page(vaddr, rpte, psize, 0);
179 return;
180 }
181
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 /*
183 * This can happen when we are in the middle of a TLB batch and
184 * we encounter memory pressure (eg copy_page_range when it tries
185 * to allocate a new pte). If we have to reclaim memory and end
186 * up scanning and resetting referenced bits then our batch context
187 * will change mid stream.
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100188 *
189 * We also need to ensure only one page size is present in a given
190 * batch
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100192 if (i != 0 && (mm != batch->mm || batch->psize != psize)) {
Benjamin Herrenschmidta741e672007-04-10 17:09:37 +1000193 __flush_tlb_pending(batch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 i = 0;
195 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 if (i == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 batch->mm = mm;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100198 batch->psize = psize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 }
Benjamin Herrenschmidta741e672007-04-10 17:09:37 +1000200 batch->pte[i] = rpte;
201 batch->vaddr[i] = vaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 batch->index = ++i;
203 if (i >= PPC64_TLB_BATCH_NR)
Benjamin Herrenschmidta741e672007-04-10 17:09:37 +1000204 __flush_tlb_pending(batch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205}
206
Benjamin Herrenschmidta741e672007-04-10 17:09:37 +1000207/*
208 * This function is called when terminating an mmu batch or when a batch
209 * is full. It will perform the flush of all the entries currently stored
210 * in a batch.
211 *
212 * Must be called from within some kind of spinlock/non-preempt region...
213 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214void __flush_tlb_pending(struct ppc64_tlb_batch *batch)
215{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 cpumask_t tmp;
Benjamin Herrenschmidta741e672007-04-10 17:09:37 +1000217 int i, local = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 i = batch->index;
Benjamin Herrenschmidta741e672007-04-10 17:09:37 +1000220 tmp = cpumask_of_cpu(smp_processor_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 if (cpus_equal(batch->mm->cpu_vm_mask, tmp))
222 local = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 if (i == 1)
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100224 flush_hash_page(batch->vaddr[0], batch->pte[0],
225 batch->psize, local);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 else
Benjamin Herrenschmidt61b1a942005-09-20 13:52:50 +1000227 flush_hash_range(i, local);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 batch->index = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229}
230
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231void pte_free_finish(void)
232{
Hugh Dickins01edcd82005-11-23 13:37:39 -0800233 /* This is safe since tlb_gather_mmu has disabled preemption */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 struct pte_freelist_batch **batchp = &__get_cpu_var(pte_freelist_cur);
235
236 if (*batchp == NULL)
237 return;
238 pte_free_submit(*batchp);
239 *batchp = NULL;
240}
Benjamin Herrenschmidt3d5134e2007-06-04 15:15:36 +1000241
242/**
243 * __flush_hash_table_range - Flush all HPTEs for a given address range
244 * from the hash table (and the TLB). But keeps
245 * the linux PTEs intact.
246 *
247 * @mm : mm_struct of the target address space (generally init_mm)
248 * @start : starting address
249 * @end : ending address (not included in the flush)
250 *
251 * This function is mostly to be used by some IO hotplug code in order
252 * to remove all hash entries from a given address range used to map IO
253 * space on a removed PCI-PCI bidge without tearing down the full mapping
254 * since 64K pages may overlap with other bridges when using 64K pages
255 * with 4K HW pages on IO space.
256 *
257 * Because of that usage pattern, it's only available with CONFIG_HOTPLUG
258 * and is implemented for small size rather than speed.
259 */
260#ifdef CONFIG_HOTPLUG
261
262void __flush_hash_table_range(struct mm_struct *mm, unsigned long start,
263 unsigned long end)
264{
265 unsigned long flags;
266
267 start = _ALIGN_DOWN(start, PAGE_SIZE);
268 end = _ALIGN_UP(end, PAGE_SIZE);
269
270 BUG_ON(!mm->pgd);
271
272 /* Note: Normally, we should only ever use a batch within a
273 * PTE locked section. This violates the rule, but will work
274 * since we don't actually modify the PTEs, we just flush the
275 * hash while leaving the PTEs intact (including their reference
276 * to being hashed). This is not the most performance oriented
277 * way to do things but is fine for our needs here.
278 */
279 local_irq_save(flags);
280 arch_enter_lazy_mmu_mode();
281 for (; start < end; start += PAGE_SIZE) {
282 pte_t *ptep = find_linux_pte(mm->pgd, start);
283 unsigned long pte;
284
285 if (ptep == NULL)
286 continue;
287 pte = pte_val(*ptep);
288 if (!(pte & _PAGE_HASHPTE))
289 continue;
290 hpte_need_flush(mm, start, ptep, pte, 0);
291 }
292 arch_leave_lazy_mmu_mode();
293 local_irq_restore(flags);
294}
295
296#endif /* CONFIG_HOTPLUG */