- patches.suse/slab-handle-memoryless-nodes-v2a.patch: Refresh.
[linux-flexiantxendom0-3.2.10.git] / arch / powerpc / mm / tlb_hash64.c
1 /*
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
11  *
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  */
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
34 DEFINE_PER_CPU(struct ppc64_tlb_batch, ppc64_tlb_batch);
35
36 /*
37  * A linux PTE was changed and the corresponding hash table entry
38  * neesd to be flushed. This function will either perform the flush
39  * immediately or will batch it up if the current CPU has an active
40  * batch on it.
41  *
42  * Must be called from within some kind of spinlock/non-preempt region...
43  */
44 void hpte_need_flush(struct mm_struct *mm, unsigned long addr,
45                      pte_t *ptep, unsigned long pte, int huge)
46 {
47         struct ppc64_tlb_batch *batch = &__get_cpu_var(ppc64_tlb_batch);
48         unsigned long vsid, vaddr;
49         unsigned int psize;
50         int ssize;
51         real_pte_t rpte;
52         int i;
53
54         i = batch->index;
55
56         /* Get page size (maybe move back to caller).
57          *
58          * NOTE: when using special 64K mappings in 4K environment like
59          * for SPEs, we obtain the page size from the slice, which thus
60          * must still exist (and thus the VMA not reused) at the time
61          * of this call
62          */
63         if (huge) {
64 #ifdef CONFIG_HUGETLB_PAGE
65                 psize = get_slice_psize(mm, addr);
66 #else
67                 BUG();
68                 psize = pte_pagesize_index(mm, addr, pte); /* shutup gcc */
69 #endif
70         } else
71                 psize = pte_pagesize_index(mm, addr, pte);
72
73         /* Mask the address for the correct page size */
74         addr &= ~((1UL << mmu_psize_defs[psize].shift) - 1);
75
76         /* Build full vaddr */
77         if (!is_kernel_addr(addr)) {
78                 ssize = user_segment_size(addr);
79                 vsid = get_vsid(mm->context.id, addr, ssize);
80                 WARN_ON(vsid == 0);
81         } else {
82                 vsid = get_kernel_vsid(addr, mmu_kernel_ssize);
83                 ssize = mmu_kernel_ssize;
84         }
85         vaddr = hpt_va(addr, vsid, ssize);
86         rpte = __real_pte(__pte(pte), ptep);
87
88         /*
89          * Check if we have an active batch on this CPU. If not, just
90          * flush now and return. For now, we don global invalidates
91          * in that case, might be worth testing the mm cpu mask though
92          * and decide to use local invalidates instead...
93          */
94         if (!batch->active) {
95                 flush_hash_page(vaddr, rpte, psize, ssize, 0);
96                 return;
97         }
98
99         /*
100          * This can happen when we are in the middle of a TLB batch and
101          * we encounter memory pressure (eg copy_page_range when it tries
102          * to allocate a new pte). If we have to reclaim memory and end
103          * up scanning and resetting referenced bits then our batch context
104          * will change mid stream.
105          *
106          * We also need to ensure only one page size is present in a given
107          * batch
108          */
109         if (i != 0 && (mm != batch->mm || batch->psize != psize ||
110                        batch->ssize != ssize)) {
111                 __flush_tlb_pending(batch);
112                 i = 0;
113         }
114         if (i == 0) {
115                 batch->mm = mm;
116                 batch->psize = psize;
117                 batch->ssize = ssize;
118         }
119         batch->pte[i] = rpte;
120         batch->vaddr[i] = vaddr;
121         batch->index = ++i;
122         if (i >= PPC64_TLB_BATCH_NR)
123                 __flush_tlb_pending(batch);
124 }
125
126 /*
127  * This function is called when terminating an mmu batch or when a batch
128  * is full. It will perform the flush of all the entries currently stored
129  * in a batch.
130  *
131  * Must be called from within some kind of spinlock/non-preempt region...
132  */
133 void __flush_tlb_pending(struct ppc64_tlb_batch *batch)
134 {
135         const struct cpumask *tmp;
136         int i, local = 0;
137
138         i = batch->index;
139         tmp = cpumask_of(smp_processor_id());
140         if (cpumask_equal(mm_cpumask(batch->mm), tmp))
141                 local = 1;
142         if (i == 1)
143                 flush_hash_page(batch->vaddr[0], batch->pte[0],
144                                 batch->psize, batch->ssize, local);
145         else
146                 flush_hash_range(i, local);
147         batch->index = 0;
148 }
149
150 void tlb_flush(struct mmu_gather *tlb)
151 {
152         struct ppc64_tlb_batch *tlbbatch = &__get_cpu_var(ppc64_tlb_batch);
153
154         /* If there's a TLB batch pending, then we must flush it because the
155          * pages are going to be freed and we really don't want to have a CPU
156          * access a freed page because it has a stale TLB
157          */
158         if (tlbbatch->index)
159                 __flush_tlb_pending(tlbbatch);
160
161         /* Push out batch of freed page tables */
162         pte_free_finish();
163 }
164
165 /**
166  * __flush_hash_table_range - Flush all HPTEs for a given address range
167  *                            from the hash table (and the TLB). But keeps
168  *                            the linux PTEs intact.
169  *
170  * @mm          : mm_struct of the target address space (generally init_mm)
171  * @start       : starting address
172  * @end         : ending address (not included in the flush)
173  *
174  * This function is mostly to be used by some IO hotplug code in order
175  * to remove all hash entries from a given address range used to map IO
176  * space on a removed PCI-PCI bidge without tearing down the full mapping
177  * since 64K pages may overlap with other bridges when using 64K pages
178  * with 4K HW pages on IO space.
179  *
180  * Because of that usage pattern, it's only available with CONFIG_HOTPLUG
181  * and is implemented for small size rather than speed.
182  */
183 #ifdef CONFIG_HOTPLUG
184
185 void __flush_hash_table_range(struct mm_struct *mm, unsigned long start,
186                               unsigned long end)
187 {
188         unsigned long flags;
189
190         start = _ALIGN_DOWN(start, PAGE_SIZE);
191         end = _ALIGN_UP(end, PAGE_SIZE);
192
193         BUG_ON(!mm->pgd);
194
195         /* Note: Normally, we should only ever use a batch within a
196          * PTE locked section. This violates the rule, but will work
197          * since we don't actually modify the PTEs, we just flush the
198          * hash while leaving the PTEs intact (including their reference
199          * to being hashed). This is not the most performance oriented
200          * way to do things but is fine for our needs here.
201          */
202         local_irq_save(flags);
203         arch_enter_lazy_mmu_mode();
204         for (; start < end; start += PAGE_SIZE) {
205                 pte_t *ptep = find_linux_pte(mm->pgd, start);
206                 unsigned long pte;
207
208                 if (ptep == NULL)
209                         continue;
210                 pte = pte_val(*ptep);
211                 if (!(pte & _PAGE_HASHPTE))
212                         continue;
213                 hpte_need_flush(mm, start, ptep, pte, 0);
214         }
215         arch_leave_lazy_mmu_mode();
216         local_irq_restore(flags);
217 }
218
219 #endif /* CONFIG_HOTPLUG */