blob: 2b2f35f6985e561aaacf2ef515e654d0ba1985b4 [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070036/*
Benjamin Herrenschmidta741e672007-04-10 17:09:37 +100037 * 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...
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 */
Benjamin Herrenschmidta741e672007-04-10 17:09:37 +100044void hpte_need_flush(struct mm_struct *mm, unsigned long addr,
45 pte_t *ptep, unsigned long pte, int huge)
Linus Torvalds1da177e2005-04-16 15:20:36 -070046{
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 struct ppc64_tlb_batch *batch = &__get_cpu_var(ppc64_tlb_batch);
Benjamin Herrenschmidta741e672007-04-10 17:09:37 +100048 unsigned long vsid, vaddr;
Paul Mackerrasbf72aeb2006-06-15 10:45:18 +100049 unsigned int psize;
Paul Mackerras1189be62007-10-11 20:37:10 +100050 int ssize;
Benjamin Herrenschmidta741e672007-04-10 17:09:37 +100051 real_pte_t rpte;
Benjamin Herrenschmidt61b1a942005-09-20 13:52:50 +100052 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 i = batch->index;
55
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110056 /* We mask the address for the base page size. Huge pages will
57 * have applied their own masking already
58 */
59 addr &= PAGE_MASK;
60
Benjamin Herrenschmidt16c2d472007-05-08 16:27:28 +100061 /* Get page size (maybe move back to caller).
62 *
63 * NOTE: when using special 64K mappings in 4K environment like
64 * for SPEs, we obtain the page size from the slice, which thus
65 * must still exist (and thus the VMA not reused) at the time
66 * of this call
67 */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110068 if (huge) {
69#ifdef CONFIG_HUGETLB_PAGE
Joe Perchesd258e642009-06-28 06:26:10 +000070 psize = get_slice_psize(mm, addr);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110071#else
72 BUG();
Benjamin Herrenschmidt16c2d472007-05-08 16:27:28 +100073 psize = pte_pagesize_index(mm, addr, pte); /* shutup gcc */
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110074#endif
Paul Mackerrasbf72aeb2006-06-15 10:45:18 +100075 } else
Benjamin Herrenschmidt16c2d472007-05-08 16:27:28 +100076 psize = pte_pagesize_index(mm, addr, pte);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110077
Benjamin Herrenschmidta741e672007-04-10 17:09:37 +100078 /* Build full vaddr */
79 if (!is_kernel_addr(addr)) {
Paul Mackerras1189be62007-10-11 20:37:10 +100080 ssize = user_segment_size(addr);
81 vsid = get_vsid(mm->context.id, addr, ssize);
Benjamin Herrenschmidta741e672007-04-10 17:09:37 +100082 WARN_ON(vsid == 0);
Paul Mackerras1189be62007-10-11 20:37:10 +100083 } else {
84 vsid = get_kernel_vsid(addr, mmu_kernel_ssize);
85 ssize = mmu_kernel_ssize;
86 }
87 vaddr = hpt_va(addr, vsid, ssize);
Benjamin Herrenschmidta741e672007-04-10 17:09:37 +100088 rpte = __real_pte(__pte(pte), ptep);
89
90 /*
91 * Check if we have an active batch on this CPU. If not, just
92 * flush now and return. For now, we don global invalidates
93 * in that case, might be worth testing the mm cpu mask though
94 * and decide to use local invalidates instead...
95 */
96 if (!batch->active) {
Paul Mackerras1189be62007-10-11 20:37:10 +100097 flush_hash_page(vaddr, rpte, psize, ssize, 0);
Benjamin Herrenschmidta741e672007-04-10 17:09:37 +100098 return;
99 }
100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 /*
102 * This can happen when we are in the middle of a TLB batch and
103 * we encounter memory pressure (eg copy_page_range when it tries
104 * to allocate a new pte). If we have to reclaim memory and end
105 * up scanning and resetting referenced bits then our batch context
106 * will change mid stream.
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100107 *
108 * We also need to ensure only one page size is present in a given
109 * batch
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 */
Paul Mackerras1189be62007-10-11 20:37:10 +1000111 if (i != 0 && (mm != batch->mm || batch->psize != psize ||
112 batch->ssize != ssize)) {
Benjamin Herrenschmidta741e672007-04-10 17:09:37 +1000113 __flush_tlb_pending(batch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 i = 0;
115 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 if (i == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 batch->mm = mm;
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100118 batch->psize = psize;
Paul Mackerras1189be62007-10-11 20:37:10 +1000119 batch->ssize = ssize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 }
Benjamin Herrenschmidta741e672007-04-10 17:09:37 +1000121 batch->pte[i] = rpte;
122 batch->vaddr[i] = vaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 batch->index = ++i;
124 if (i >= PPC64_TLB_BATCH_NR)
Benjamin Herrenschmidta741e672007-04-10 17:09:37 +1000125 __flush_tlb_pending(batch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126}
127
Benjamin Herrenschmidta741e672007-04-10 17:09:37 +1000128/*
129 * This function is called when terminating an mmu batch or when a batch
130 * is full. It will perform the flush of all the entries currently stored
131 * in a batch.
132 *
133 * Must be called from within some kind of spinlock/non-preempt region...
134 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135void __flush_tlb_pending(struct ppc64_tlb_batch *batch)
136{
Rusty Russell56aa4122009-03-15 18:16:43 +0000137 const struct cpumask *tmp;
Benjamin Herrenschmidta741e672007-04-10 17:09:37 +1000138 int i, local = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 i = batch->index;
Rusty Russell56aa4122009-03-15 18:16:43 +0000141 tmp = cpumask_of(smp_processor_id());
142 if (cpumask_equal(mm_cpumask(batch->mm), tmp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 local = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 if (i == 1)
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100145 flush_hash_page(batch->vaddr[0], batch->pte[0],
Paul Mackerras1189be62007-10-11 20:37:10 +1000146 batch->psize, batch->ssize, local);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 else
Benjamin Herrenschmidt61b1a942005-09-20 13:52:50 +1000148 flush_hash_range(i, local);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 batch->index = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150}
151
Benjamin Herrenschmidtc7cc58a2009-07-23 23:15:28 +0000152void tlb_flush(struct mmu_gather *tlb)
153{
154 struct ppc64_tlb_batch *tlbbatch = &__get_cpu_var(ppc64_tlb_batch);
155
156 /* If there's a TLB batch pending, then we must flush it because the
157 * pages are going to be freed and we really don't want to have a CPU
158 * access a freed page because it has a stale TLB
159 */
160 if (tlbbatch->index)
161 __flush_tlb_pending(tlbbatch);
162
163 /* Push out batch of freed page tables */
164 pte_free_finish();
165}
166
Benjamin Herrenschmidt3d5134e2007-06-04 15:15:36 +1000167/**
168 * __flush_hash_table_range - Flush all HPTEs for a given address range
169 * from the hash table (and the TLB). But keeps
170 * the linux PTEs intact.
171 *
172 * @mm : mm_struct of the target address space (generally init_mm)
173 * @start : starting address
174 * @end : ending address (not included in the flush)
175 *
176 * This function is mostly to be used by some IO hotplug code in order
177 * to remove all hash entries from a given address range used to map IO
178 * space on a removed PCI-PCI bidge without tearing down the full mapping
179 * since 64K pages may overlap with other bridges when using 64K pages
180 * with 4K HW pages on IO space.
181 *
182 * Because of that usage pattern, it's only available with CONFIG_HOTPLUG
183 * and is implemented for small size rather than speed.
184 */
185#ifdef CONFIG_HOTPLUG
186
187void __flush_hash_table_range(struct mm_struct *mm, unsigned long start,
188 unsigned long end)
189{
190 unsigned long flags;
191
192 start = _ALIGN_DOWN(start, PAGE_SIZE);
193 end = _ALIGN_UP(end, PAGE_SIZE);
194
195 BUG_ON(!mm->pgd);
196
197 /* Note: Normally, we should only ever use a batch within a
198 * PTE locked section. This violates the rule, but will work
199 * since we don't actually modify the PTEs, we just flush the
200 * hash while leaving the PTEs intact (including their reference
201 * to being hashed). This is not the most performance oriented
202 * way to do things but is fine for our needs here.
203 */
204 local_irq_save(flags);
205 arch_enter_lazy_mmu_mode();
206 for (; start < end; start += PAGE_SIZE) {
207 pte_t *ptep = find_linux_pte(mm->pgd, start);
208 unsigned long pte;
209
210 if (ptep == NULL)
211 continue;
212 pte = pte_val(*ptep);
213 if (!(pte & _PAGE_HASHPTE))
214 continue;
215 hpte_need_flush(mm, start, ptep, pte, 0);
216 }
217 arch_leave_lazy_mmu_mode();
218 local_irq_restore(flags);
219}
220
221#endif /* CONFIG_HOTPLUG */