blob: ce104b962a1704f9950b600c1fc19b464e03359e [file] [log] [blame]
Glauber Costac048fdf2008-03-03 14:12:54 -03001#include <linux/init.h>
2
3#include <linux/mm.h>
Glauber Costac048fdf2008-03-03 14:12:54 -03004#include <linux/spinlock.h>
5#include <linux/smp.h>
Glauber Costac048fdf2008-03-03 14:12:54 -03006#include <linux/interrupt.h>
Paul Gortmaker4b599fe2016-07-13 20:18:55 -04007#include <linux/export.h>
Shaohua Li93296722010-10-20 11:07:03 +08008#include <linux/cpu.h>
Glauber Costac048fdf2008-03-03 14:12:54 -03009
Glauber Costac048fdf2008-03-03 14:12:54 -030010#include <asm/tlbflush.h>
Glauber Costac048fdf2008-03-03 14:12:54 -030011#include <asm/mmu_context.h>
Jan Beulich350f8f52009-11-13 11:54:40 +000012#include <asm/cache.h>
Tejun Heo6dd01be2009-01-21 17:26:06 +090013#include <asm/apic.h>
Tejun Heobdbcdd42009-01-21 17:26:06 +090014#include <asm/uv/uv.h>
Alex Shi3df32122012-06-28 09:02:20 +080015#include <linux/debugfs.h>
Glauber Costa5af55732008-03-25 13:28:56 -030016
Glauber Costac048fdf2008-03-03 14:12:54 -030017/*
Andy Lutomirskice4a4e562017-05-28 10:00:14 -070018 * TLB flushing, formerly SMP-only
Glauber Costac048fdf2008-03-03 14:12:54 -030019 * c/o Linus Torvalds.
20 *
21 * These mean you can really definitely utterly forget about
22 * writing to user space from interrupts. (Its not allowed anyway).
23 *
24 * Optimizations Manfred Spraul <manfred@colorfullife.com>
25 *
26 * More scalable flush, from Andi Kleen
27 *
Alex Shi52aec332012-06-28 09:02:23 +080028 * Implement flush IPI by CALL_FUNCTION_VECTOR, Alex Shi
Glauber Costac048fdf2008-03-03 14:12:54 -030029 */
30
Andy Lutomirskif39681e2017-06-29 08:53:15 -070031atomic64_t last_mm_ctx_id = ATOMIC64_INIT(1);
32
Andy Lutomirski10af6232017-07-24 21:41:38 -070033static void choose_new_asid(struct mm_struct *next, u64 next_tlb_gen,
34 u16 *new_asid, bool *need_flush)
35{
36 u16 asid;
37
38 if (!static_cpu_has(X86_FEATURE_PCID)) {
39 *new_asid = 0;
40 *need_flush = true;
41 return;
42 }
43
44 for (asid = 0; asid < TLB_NR_DYN_ASIDS; asid++) {
45 if (this_cpu_read(cpu_tlbstate.ctxs[asid].ctx_id) !=
46 next->context.ctx_id)
47 continue;
48
49 *new_asid = asid;
50 *need_flush = (this_cpu_read(cpu_tlbstate.ctxs[asid].tlb_gen) <
51 next_tlb_gen);
52 return;
53 }
54
55 /*
56 * We don't currently own an ASID slot on this CPU.
57 * Allocate a slot.
58 */
59 *new_asid = this_cpu_add_return(cpu_tlbstate.next_asid, 1) - 1;
60 if (*new_asid >= TLB_NR_DYN_ASIDS) {
61 *new_asid = 0;
62 this_cpu_write(cpu_tlbstate.next_asid, 1);
63 }
64 *need_flush = true;
65}
66
Glauber Costac048fdf2008-03-03 14:12:54 -030067void leave_mm(int cpu)
68{
Andy Lutomirski3d28ebc2017-05-28 10:00:15 -070069 struct mm_struct *loaded_mm = this_cpu_read(cpu_tlbstate.loaded_mm);
70
71 /*
72 * It's plausible that we're in lazy TLB mode while our mm is init_mm.
73 * If so, our callers still expect us to flush the TLB, but there
74 * aren't any user TLB entries in init_mm to worry about.
75 *
76 * This needs to happen before any other sanity checks due to
77 * intel_idle's shenanigans.
78 */
79 if (loaded_mm == &init_mm)
80 return;
81
Andy Lutomirski94b1b032017-06-29 08:53:17 -070082 /* Warn if we're not lazy. */
83 WARN_ON(cpumask_test_cpu(smp_processor_id(), mm_cpumask(loaded_mm)));
Andy Lutomirski3d28ebc2017-05-28 10:00:15 -070084
85 switch_mm(NULL, &init_mm, NULL);
Glauber Costac048fdf2008-03-03 14:12:54 -030086}
Glauber Costac048fdf2008-03-03 14:12:54 -030087
Andy Lutomirski69c03192016-04-26 09:39:08 -070088void switch_mm(struct mm_struct *prev, struct mm_struct *next,
89 struct task_struct *tsk)
90{
Andy Lutomirski078194f2016-04-26 09:39:09 -070091 unsigned long flags;
92
93 local_irq_save(flags);
94 switch_mm_irqs_off(prev, next, tsk);
95 local_irq_restore(flags);
96}
97
98void switch_mm_irqs_off(struct mm_struct *prev, struct mm_struct *next,
99 struct task_struct *tsk)
100{
Andy Lutomirski3d28ebc2017-05-28 10:00:15 -0700101 struct mm_struct *real_prev = this_cpu_read(cpu_tlbstate.loaded_mm);
Andy Lutomirski10af6232017-07-24 21:41:38 -0700102 u16 prev_asid = this_cpu_read(cpu_tlbstate.loaded_mm_asid);
Andy Lutomirski94b1b032017-06-29 08:53:17 -0700103 unsigned cpu = smp_processor_id();
104 u64 next_tlb_gen;
Andy Lutomirski69c03192016-04-26 09:39:08 -0700105
Andy Lutomirski3d28ebc2017-05-28 10:00:15 -0700106 /*
Andy Lutomirski94b1b032017-06-29 08:53:17 -0700107 * NB: The scheduler will call us with prev == next when switching
108 * from lazy TLB mode to normal mode if active_mm isn't changing.
109 * When this happens, we don't assume that CR3 (and hence
110 * cpu_tlbstate.loaded_mm) matches next.
Andy Lutomirski3d28ebc2017-05-28 10:00:15 -0700111 *
112 * NB: leave_mm() calls us with prev == NULL and tsk == NULL.
113 */
Andy Lutomirskie37e43a2016-08-11 02:35:23 -0700114
Andy Lutomirski94b1b032017-06-29 08:53:17 -0700115 /* We don't want flush_tlb_func_* to run concurrently with us. */
116 if (IS_ENABLED(CONFIG_PROVE_LOCKING))
117 WARN_ON_ONCE(!irqs_disabled());
118
119 /*
120 * Verify that CR3 is what we think it is. This will catch
121 * hypothetical buggy code that directly switches to swapper_pg_dir
Andy Lutomirski10af6232017-07-24 21:41:38 -0700122 * without going through leave_mm() / switch_mm_irqs_off() or that
123 * does something like write_cr3(read_cr3_pa()).
Andy Lutomirski94b1b032017-06-29 08:53:17 -0700124 */
Andy Lutomirski10af6232017-07-24 21:41:38 -0700125 VM_BUG_ON(__read_cr3() != (__sme_pa(real_prev->pgd) | prev_asid));
Andy Lutomirskie37e43a2016-08-11 02:35:23 -0700126
Andy Lutomirski3d28ebc2017-05-28 10:00:15 -0700127 if (real_prev == next) {
Andy Lutomirski10af6232017-07-24 21:41:38 -0700128 VM_BUG_ON(this_cpu_read(cpu_tlbstate.ctxs[prev_asid].ctx_id) !=
Andy Lutomirski94b1b032017-06-29 08:53:17 -0700129 next->context.ctx_id);
130
131 if (cpumask_test_cpu(cpu, mm_cpumask(next))) {
132 /*
133 * There's nothing to do: we weren't lazy, and we
134 * aren't changing our mm. We don't need to flush
135 * anything, nor do we need to update CR3, CR4, or
136 * LDTR.
137 */
138 return;
139 }
140
141 /* Resume remote flushes and then read tlb_gen. */
142 cpumask_set_cpu(cpu, mm_cpumask(next));
143 next_tlb_gen = atomic64_read(&next->context.tlb_gen);
144
Andy Lutomirski10af6232017-07-24 21:41:38 -0700145 if (this_cpu_read(cpu_tlbstate.ctxs[prev_asid].tlb_gen) <
146 next_tlb_gen) {
Andy Lutomirski94b1b032017-06-29 08:53:17 -0700147 /*
148 * Ideally, we'd have a flush_tlb() variant that
149 * takes the known CR3 value as input. This would
150 * be faster on Xen PV and on hypothetical CPUs
151 * on which INVPCID is fast.
152 */
Andy Lutomirski10af6232017-07-24 21:41:38 -0700153 this_cpu_write(cpu_tlbstate.ctxs[prev_asid].tlb_gen,
Andy Lutomirski94b1b032017-06-29 08:53:17 -0700154 next_tlb_gen);
Andy Lutomirski10af6232017-07-24 21:41:38 -0700155 write_cr3(__sme_pa(next->pgd) | prev_asid);
Andy Lutomirski43858b42017-06-29 08:53:18 -0700156 trace_tlb_flush(TLB_FLUSH_ON_TASK_SWITCH,
157 TLB_FLUSH_ALL);
Andy Lutomirski94b1b032017-06-29 08:53:17 -0700158 }
159
Andy Lutomirski69c03192016-04-26 09:39:08 -0700160 /*
Andy Lutomirski94b1b032017-06-29 08:53:17 -0700161 * We just exited lazy mode, which means that CR4 and/or LDTR
162 * may be stale. (Changes to the required CR4 and LDTR states
163 * are not reflected in tlb_gen.)
Andy Lutomirski69c03192016-04-26 09:39:08 -0700164 */
Andy Lutomirski94b1b032017-06-29 08:53:17 -0700165 } else {
Andy Lutomirski10af6232017-07-24 21:41:38 -0700166 u16 new_asid;
167 bool need_flush;
Andy Lutomirski94b1b032017-06-29 08:53:17 -0700168
169 if (IS_ENABLED(CONFIG_VMAP_STACK)) {
170 /*
171 * If our current stack is in vmalloc space and isn't
172 * mapped in the new pgd, we'll double-fault. Forcibly
173 * map it.
174 */
175 unsigned int index = pgd_index(current_stack_pointer());
176 pgd_t *pgd = next->pgd + index;
177
178 if (unlikely(pgd_none(*pgd)))
179 set_pgd(pgd, init_mm.pgd[index]);
180 }
181
182 /* Stop remote flushes for the previous mm */
183 if (cpumask_test_cpu(cpu, mm_cpumask(real_prev)))
184 cpumask_clear_cpu(cpu, mm_cpumask(real_prev));
185
186 VM_WARN_ON_ONCE(cpumask_test_cpu(cpu, mm_cpumask(next)));
187
188 /*
189 * Start remote flushes and then read tlb_gen.
190 */
191 cpumask_set_cpu(cpu, mm_cpumask(next));
192 next_tlb_gen = atomic64_read(&next->context.tlb_gen);
193
Andy Lutomirski10af6232017-07-24 21:41:38 -0700194 choose_new_asid(next, next_tlb_gen, &new_asid, &need_flush);
Andy Lutomirski94b1b032017-06-29 08:53:17 -0700195
Andy Lutomirski10af6232017-07-24 21:41:38 -0700196 if (need_flush) {
197 this_cpu_write(cpu_tlbstate.ctxs[new_asid].ctx_id, next->context.ctx_id);
198 this_cpu_write(cpu_tlbstate.ctxs[new_asid].tlb_gen, next_tlb_gen);
199 write_cr3(__sme_pa(next->pgd) | new_asid);
200 trace_tlb_flush(TLB_FLUSH_ON_TASK_SWITCH,
201 TLB_FLUSH_ALL);
202 } else {
203 /* The new ASID is already up to date. */
204 write_cr3(__sme_pa(next->pgd) | new_asid | CR3_NOFLUSH);
205 trace_tlb_flush(TLB_FLUSH_ON_TASK_SWITCH, 0);
206 }
207
208 this_cpu_write(cpu_tlbstate.loaded_mm, next);
209 this_cpu_write(cpu_tlbstate.loaded_mm_asid, new_asid);
Andy Lutomirski3d28ebc2017-05-28 10:00:15 -0700210 }
Andy Lutomirski69c03192016-04-26 09:39:08 -0700211
Andy Lutomirski3d28ebc2017-05-28 10:00:15 -0700212 load_mm_cr4(next);
Andy Lutomirski73534252017-06-20 22:22:08 -0700213 switch_ldt(real_prev, next);
Andy Lutomirski69c03192016-04-26 09:39:08 -0700214}
215
Andy Lutomirskib0579ad2017-06-29 08:53:16 -0700216/*
217 * flush_tlb_func_common()'s memory ordering requirement is that any
218 * TLB fills that happen after we flush the TLB are ordered after we
219 * read active_mm's tlb_gen. We don't need any explicit barriers
220 * because all x86 flush operations are serializing and the
221 * atomic64_read operation won't be reordered by the compiler.
222 */
Andy Lutomirski454bbad2017-05-28 10:00:12 -0700223static void flush_tlb_func_common(const struct flush_tlb_info *f,
224 bool local, enum tlb_flush_reason reason)
Glauber Costac048fdf2008-03-03 14:12:54 -0300225{
Andy Lutomirskib0579ad2017-06-29 08:53:16 -0700226 /*
227 * We have three different tlb_gen values in here. They are:
228 *
229 * - mm_tlb_gen: the latest generation.
230 * - local_tlb_gen: the generation that this CPU has already caught
231 * up to.
232 * - f->new_tlb_gen: the generation that the requester of the flush
233 * wants us to catch up to.
234 */
235 struct mm_struct *loaded_mm = this_cpu_read(cpu_tlbstate.loaded_mm);
Andy Lutomirski10af6232017-07-24 21:41:38 -0700236 u32 loaded_mm_asid = this_cpu_read(cpu_tlbstate.loaded_mm_asid);
Andy Lutomirskib0579ad2017-06-29 08:53:16 -0700237 u64 mm_tlb_gen = atomic64_read(&loaded_mm->context.tlb_gen);
Andy Lutomirski10af6232017-07-24 21:41:38 -0700238 u64 local_tlb_gen = this_cpu_read(cpu_tlbstate.ctxs[loaded_mm_asid].tlb_gen);
Andy Lutomirskib0579ad2017-06-29 08:53:16 -0700239
Andy Lutomirskibc0d5a82017-06-29 08:53:13 -0700240 /* This code cannot presently handle being reentered. */
241 VM_WARN_ON(!irqs_disabled());
242
Andy Lutomirski10af6232017-07-24 21:41:38 -0700243 VM_WARN_ON(this_cpu_read(cpu_tlbstate.ctxs[loaded_mm_asid].ctx_id) !=
Andy Lutomirskib0579ad2017-06-29 08:53:16 -0700244 loaded_mm->context.ctx_id);
245
Andy Lutomirski94b1b032017-06-29 08:53:17 -0700246 if (!cpumask_test_cpu(smp_processor_id(), mm_cpumask(loaded_mm))) {
Andy Lutomirskib0579ad2017-06-29 08:53:16 -0700247 /*
Andy Lutomirski94b1b032017-06-29 08:53:17 -0700248 * We're in lazy mode -- don't flush. We can get here on
249 * remote flushes due to races and on local flushes if a
250 * kernel thread coincidentally flushes the mm it's lazily
251 * still using.
Andy Lutomirskib0579ad2017-06-29 08:53:16 -0700252 */
Andy Lutomirskib3b90e52017-05-22 15:30:02 -0700253 return;
254 }
255
Andy Lutomirskib0579ad2017-06-29 08:53:16 -0700256 if (unlikely(local_tlb_gen == mm_tlb_gen)) {
257 /*
258 * There's nothing to do: we're already up to date. This can
259 * happen if two concurrent flushes happen -- the first flush to
260 * be handled can catch us all the way up, leaving no work for
261 * the second flush.
262 */
Andy Lutomirski94b1b032017-06-29 08:53:17 -0700263 trace_tlb_flush(reason, 0);
Andy Lutomirskib0579ad2017-06-29 08:53:16 -0700264 return;
265 }
266
267 WARN_ON_ONCE(local_tlb_gen > mm_tlb_gen);
268 WARN_ON_ONCE(f->new_tlb_gen > mm_tlb_gen);
269
270 /*
271 * If we get to this point, we know that our TLB is out of date.
272 * This does not strictly imply that we need to flush (it's
273 * possible that f->new_tlb_gen <= local_tlb_gen), but we're
274 * going to need to flush in the very near future, so we might
275 * as well get it over with.
276 *
277 * The only question is whether to do a full or partial flush.
278 *
279 * We do a partial flush if requested and two extra conditions
280 * are met:
281 *
282 * 1. f->new_tlb_gen == local_tlb_gen + 1. We have an invariant that
283 * we've always done all needed flushes to catch up to
284 * local_tlb_gen. If, for example, local_tlb_gen == 2 and
285 * f->new_tlb_gen == 3, then we know that the flush needed to bring
286 * us up to date for tlb_gen 3 is the partial flush we're
287 * processing.
288 *
289 * As an example of why this check is needed, suppose that there
290 * are two concurrent flushes. The first is a full flush that
291 * changes context.tlb_gen from 1 to 2. The second is a partial
292 * flush that changes context.tlb_gen from 2 to 3. If they get
293 * processed on this CPU in reverse order, we'll see
294 * local_tlb_gen == 1, mm_tlb_gen == 3, and end != TLB_FLUSH_ALL.
295 * If we were to use __flush_tlb_single() and set local_tlb_gen to
296 * 3, we'd be break the invariant: we'd update local_tlb_gen above
297 * 1 without the full flush that's needed for tlb_gen 2.
298 *
299 * 2. f->new_tlb_gen == mm_tlb_gen. This is purely an optimiation.
300 * Partial TLB flushes are not all that much cheaper than full TLB
301 * flushes, so it seems unlikely that it would be a performance win
302 * to do a partial flush if that won't bring our TLB fully up to
303 * date. By doing a full flush instead, we can increase
304 * local_tlb_gen all the way to mm_tlb_gen and we can probably
305 * avoid another flush in the very near future.
306 */
307 if (f->end != TLB_FLUSH_ALL &&
308 f->new_tlb_gen == local_tlb_gen + 1 &&
309 f->new_tlb_gen == mm_tlb_gen) {
310 /* Partial flush */
Andy Lutomirskib3b90e52017-05-22 15:30:02 -0700311 unsigned long addr;
Andy Lutomirskibe4ffc02017-05-28 10:00:16 -0700312 unsigned long nr_pages = (f->end - f->start) >> PAGE_SHIFT;
Andy Lutomirskib0579ad2017-06-29 08:53:16 -0700313
Andy Lutomirskia2055ab2017-05-28 10:00:10 -0700314 addr = f->start;
315 while (addr < f->end) {
Andy Lutomirskib3b90e52017-05-22 15:30:02 -0700316 __flush_tlb_single(addr);
317 addr += PAGE_SIZE;
318 }
Andy Lutomirski454bbad2017-05-28 10:00:12 -0700319 if (local)
320 count_vm_tlb_events(NR_TLB_LOCAL_FLUSH_ONE, nr_pages);
321 trace_tlb_flush(reason, nr_pages);
Andy Lutomirskib0579ad2017-06-29 08:53:16 -0700322 } else {
323 /* Full flush. */
324 local_flush_tlb();
325 if (local)
326 count_vm_tlb_event(NR_TLB_LOCAL_FLUSH_ALL);
327 trace_tlb_flush(reason, TLB_FLUSH_ALL);
Andy Lutomirskib3b90e52017-05-22 15:30:02 -0700328 }
Andy Lutomirskib0579ad2017-06-29 08:53:16 -0700329
330 /* Both paths above update our state to mm_tlb_gen. */
Andy Lutomirski10af6232017-07-24 21:41:38 -0700331 this_cpu_write(cpu_tlbstate.ctxs[loaded_mm_asid].tlb_gen, mm_tlb_gen);
Glauber Costac048fdf2008-03-03 14:12:54 -0300332}
333
Andy Lutomirski454bbad2017-05-28 10:00:12 -0700334static void flush_tlb_func_local(void *info, enum tlb_flush_reason reason)
335{
336 const struct flush_tlb_info *f = info;
337
338 flush_tlb_func_common(f, true, reason);
339}
340
341static void flush_tlb_func_remote(void *info)
342{
343 const struct flush_tlb_info *f = info;
344
345 inc_irq_stat(irq_tlb_count);
346
Andy Lutomirski3d28ebc2017-05-28 10:00:15 -0700347 if (f->mm && f->mm != this_cpu_read(cpu_tlbstate.loaded_mm))
Andy Lutomirski454bbad2017-05-28 10:00:12 -0700348 return;
349
350 count_vm_tlb_event(NR_TLB_REMOTE_FLUSH_RECEIVED);
351 flush_tlb_func_common(f, false, TLB_REMOTE_SHOOTDOWN);
352}
353
Rusty Russell4595f962009-01-10 21:58:09 -0800354void native_flush_tlb_others(const struct cpumask *cpumask,
Andy Lutomirskia2055ab2017-05-28 10:00:10 -0700355 const struct flush_tlb_info *info)
Rusty Russell4595f962009-01-10 21:58:09 -0800356{
Mel Gormanec659932014-01-21 14:33:16 -0800357 count_vm_tlb_event(NR_TLB_REMOTE_FLUSH);
Andy Lutomirskia2055ab2017-05-28 10:00:10 -0700358 if (info->end == TLB_FLUSH_ALL)
Nadav Amit18c98242016-04-01 14:31:23 -0700359 trace_tlb_flush(TLB_REMOTE_SEND_IPI, TLB_FLUSH_ALL);
360 else
361 trace_tlb_flush(TLB_REMOTE_SEND_IPI,
Andy Lutomirskia2055ab2017-05-28 10:00:10 -0700362 (info->end - info->start) >> PAGE_SHIFT);
Nadav Amit18c98242016-04-01 14:31:23 -0700363
Rusty Russell4595f962009-01-10 21:58:09 -0800364 if (is_uv_system()) {
Andy Lutomirski94b1b032017-06-29 08:53:17 -0700365 /*
366 * This whole special case is confused. UV has a "Broadcast
367 * Assist Unit", which seems to be a fancy way to send IPIs.
368 * Back when x86 used an explicit TLB flush IPI, UV was
369 * optimized to use its own mechanism. These days, x86 uses
370 * smp_call_function_many(), but UV still uses a manual IPI,
371 * and that IPI's action is out of date -- it does a manual
372 * flush instead of calling flush_tlb_func_remote(). This
373 * means that the percpu tlb_gen variables won't be updated
374 * and we'll do pointless flushes on future context switches.
375 *
376 * Rather than hooking native_flush_tlb_others() here, I think
377 * that UV should be updated so that smp_call_function_many(),
378 * etc, are optimal on UV.
379 */
Tejun Heobdbcdd42009-01-21 17:26:06 +0900380 unsigned int cpu;
Rusty Russell4595f962009-01-10 21:58:09 -0800381
Xiao Guangrong25542c62011-03-15 09:57:37 +0800382 cpu = smp_processor_id();
Andy Lutomirskia2055ab2017-05-28 10:00:10 -0700383 cpumask = uv_flush_tlb_others(cpumask, info);
Tejun Heobdbcdd42009-01-21 17:26:06 +0900384 if (cpumask)
Andy Lutomirski454bbad2017-05-28 10:00:12 -0700385 smp_call_function_many(cpumask, flush_tlb_func_remote,
Andy Lutomirskia2055ab2017-05-28 10:00:10 -0700386 (void *)info, 1);
Mike Travis0e219902009-01-10 21:58:10 -0800387 return;
Rusty Russell4595f962009-01-10 21:58:09 -0800388 }
Andy Lutomirski454bbad2017-05-28 10:00:12 -0700389 smp_call_function_many(cpumask, flush_tlb_func_remote,
Andy Lutomirskia2055ab2017-05-28 10:00:10 -0700390 (void *)info, 1);
Rusty Russell4595f962009-01-10 21:58:09 -0800391}
392
Dave Hansena5102472014-07-31 08:41:03 -0700393/*
394 * See Documentation/x86/tlb.txt for details. We choose 33
395 * because it is large enough to cover the vast majority (at
396 * least 95%) of allocations, and is small enough that we are
397 * confident it will not cause too much overhead. Each single
398 * flush is about 100 ns, so this caps the maximum overhead at
399 * _about_ 3,000 ns.
400 *
401 * This is in units of pages.
402 */
Jeremiah Mahler86426852014-08-09 00:38:33 -0700403static unsigned long tlb_single_page_flush_ceiling __read_mostly = 33;
Dave Hansene9f4e0a2014-07-31 08:40:55 -0700404
Alex Shi611ae8e2012-06-28 09:02:22 +0800405void flush_tlb_mm_range(struct mm_struct *mm, unsigned long start,
406 unsigned long end, unsigned long vmflag)
407{
Andy Lutomirski454bbad2017-05-28 10:00:12 -0700408 int cpu;
Alex Shi611ae8e2012-06-28 09:02:22 +0800409
Andy Lutomirski454bbad2017-05-28 10:00:12 -0700410 struct flush_tlb_info info = {
411 .mm = mm,
412 };
Andy Lutomirskice273742017-04-22 00:01:21 -0700413
Andy Lutomirski454bbad2017-05-28 10:00:12 -0700414 cpu = get_cpu();
Andy Lutomirskice273742017-04-22 00:01:21 -0700415
Andy Lutomirskif39681e2017-06-29 08:53:15 -0700416 /* This is also a barrier that synchronizes with switch_mm(). */
Andy Lutomirskib0579ad2017-06-29 08:53:16 -0700417 info.new_tlb_gen = inc_mm_tlb_gen(mm);
Andy Lutomirski71b3c122016-01-06 12:21:01 -0800418
Andy Lutomirski454bbad2017-05-28 10:00:12 -0700419 /* Should we flush just the requested range? */
420 if ((end != TLB_FLUSH_ALL) &&
421 !(vmflag & VM_HUGETLB) &&
422 ((end - start) >> PAGE_SHIFT) <= tlb_single_page_flush_ceiling) {
Andy Lutomirskia2055ab2017-05-28 10:00:10 -0700423 info.start = start;
424 info.end = end;
Andy Lutomirski454bbad2017-05-28 10:00:12 -0700425 } else {
426 info.start = 0UL;
427 info.end = TLB_FLUSH_ALL;
Dave Hansen4995ab92014-07-31 08:40:54 -0700428 }
Andy Lutomirski454bbad2017-05-28 10:00:12 -0700429
Andy Lutomirskibc0d5a82017-06-29 08:53:13 -0700430 if (mm == this_cpu_read(cpu_tlbstate.loaded_mm)) {
431 VM_WARN_ON(irqs_disabled());
432 local_irq_disable();
Andy Lutomirski454bbad2017-05-28 10:00:12 -0700433 flush_tlb_func_local(&info, TLB_LOCAL_MM_SHOOTDOWN);
Andy Lutomirskibc0d5a82017-06-29 08:53:13 -0700434 local_irq_enable();
435 }
436
Andy Lutomirski454bbad2017-05-28 10:00:12 -0700437 if (cpumask_any_but(mm_cpumask(mm), cpu) < nr_cpu_ids)
Andy Lutomirskia2055ab2017-05-28 10:00:10 -0700438 flush_tlb_others(mm_cpumask(mm), &info);
Andy Lutomirski94b1b032017-06-29 08:53:17 -0700439
Andy Lutomirski454bbad2017-05-28 10:00:12 -0700440 put_cpu();
Alex Shie7b52ff2012-06-28 09:02:17 +0800441}
442
Andy Lutomirskia2055ab2017-05-28 10:00:10 -0700443
Glauber Costac048fdf2008-03-03 14:12:54 -0300444static void do_flush_tlb_all(void *info)
445{
Mel Gormanec659932014-01-21 14:33:16 -0800446 count_vm_tlb_event(NR_TLB_REMOTE_FLUSH_RECEIVED);
Glauber Costac048fdf2008-03-03 14:12:54 -0300447 __flush_tlb_all();
Glauber Costac048fdf2008-03-03 14:12:54 -0300448}
449
450void flush_tlb_all(void)
451{
Mel Gormanec659932014-01-21 14:33:16 -0800452 count_vm_tlb_event(NR_TLB_REMOTE_FLUSH);
Jens Axboe15c8b6c2008-05-09 09:39:44 +0200453 on_each_cpu(do_flush_tlb_all, NULL, 1);
Glauber Costac048fdf2008-03-03 14:12:54 -0300454}
Alex Shi3df32122012-06-28 09:02:20 +0800455
Alex Shieffee4b2012-06-28 09:02:24 +0800456static void do_kernel_range_flush(void *info)
457{
458 struct flush_tlb_info *f = info;
459 unsigned long addr;
460
461 /* flush range by one by one 'invlpg' */
Andy Lutomirskia2055ab2017-05-28 10:00:10 -0700462 for (addr = f->start; addr < f->end; addr += PAGE_SIZE)
Alex Shieffee4b2012-06-28 09:02:24 +0800463 __flush_tlb_single(addr);
464}
465
466void flush_tlb_kernel_range(unsigned long start, unsigned long end)
467{
Alex Shieffee4b2012-06-28 09:02:24 +0800468
469 /* Balance as user space task's flush, a bit conservative */
Dave Hansene9f4e0a2014-07-31 08:40:55 -0700470 if (end == TLB_FLUSH_ALL ||
Andy Lutomirskibe4ffc02017-05-28 10:00:16 -0700471 (end - start) > tlb_single_page_flush_ceiling << PAGE_SHIFT) {
Alex Shieffee4b2012-06-28 09:02:24 +0800472 on_each_cpu(do_flush_tlb_all, NULL, 1);
Dave Hansene9f4e0a2014-07-31 08:40:55 -0700473 } else {
474 struct flush_tlb_info info;
Andy Lutomirskia2055ab2017-05-28 10:00:10 -0700475 info.start = start;
476 info.end = end;
Alex Shieffee4b2012-06-28 09:02:24 +0800477 on_each_cpu(do_kernel_range_flush, &info, 1);
478 }
479}
Dave Hansen2d040a12014-07-31 08:41:01 -0700480
Andy Lutomirskie73ad5f2017-05-22 15:30:03 -0700481void arch_tlbbatch_flush(struct arch_tlbflush_unmap_batch *batch)
482{
Andy Lutomirskia2055ab2017-05-28 10:00:10 -0700483 struct flush_tlb_info info = {
484 .mm = NULL,
485 .start = 0UL,
486 .end = TLB_FLUSH_ALL,
487 };
488
Andy Lutomirskie73ad5f2017-05-22 15:30:03 -0700489 int cpu = get_cpu();
490
Andy Lutomirskibc0d5a82017-06-29 08:53:13 -0700491 if (cpumask_test_cpu(cpu, &batch->cpumask)) {
492 VM_WARN_ON(irqs_disabled());
493 local_irq_disable();
Andy Lutomirski3f79e4c2017-05-28 10:00:13 -0700494 flush_tlb_func_local(&info, TLB_LOCAL_SHOOTDOWN);
Andy Lutomirskibc0d5a82017-06-29 08:53:13 -0700495 local_irq_enable();
496 }
497
Andy Lutomirskie73ad5f2017-05-22 15:30:03 -0700498 if (cpumask_any_but(&batch->cpumask, cpu) < nr_cpu_ids)
Andy Lutomirskia2055ab2017-05-28 10:00:10 -0700499 flush_tlb_others(&batch->cpumask, &info);
Andy Lutomirski94b1b032017-06-29 08:53:17 -0700500
Andy Lutomirskie73ad5f2017-05-22 15:30:03 -0700501 cpumask_clear(&batch->cpumask);
502
503 put_cpu();
504}
505
Dave Hansen2d040a12014-07-31 08:41:01 -0700506static ssize_t tlbflush_read_file(struct file *file, char __user *user_buf,
507 size_t count, loff_t *ppos)
508{
509 char buf[32];
510 unsigned int len;
511
512 len = sprintf(buf, "%ld\n", tlb_single_page_flush_ceiling);
513 return simple_read_from_buffer(user_buf, count, ppos, buf, len);
514}
515
516static ssize_t tlbflush_write_file(struct file *file,
517 const char __user *user_buf, size_t count, loff_t *ppos)
518{
519 char buf[32];
520 ssize_t len;
521 int ceiling;
522
523 len = min(count, sizeof(buf) - 1);
524 if (copy_from_user(buf, user_buf, len))
525 return -EFAULT;
526
527 buf[len] = '\0';
528 if (kstrtoint(buf, 0, &ceiling))
529 return -EINVAL;
530
531 if (ceiling < 0)
532 return -EINVAL;
533
534 tlb_single_page_flush_ceiling = ceiling;
535 return count;
536}
537
538static const struct file_operations fops_tlbflush = {
539 .read = tlbflush_read_file,
540 .write = tlbflush_write_file,
541 .llseek = default_llseek,
542};
543
544static int __init create_tlb_single_page_flush_ceiling(void)
545{
546 debugfs_create_file("tlb_single_page_flush_ceiling", S_IRUSR | S_IWUSR,
547 arch_debugfs_dir, NULL, &fops_tlbflush);
548 return 0;
549}
550late_initcall(create_tlb_single_page_flush_ceiling);