1 #include <linux/init.h>
4 #include <linux/spinlock.h>
6 #include <linux/interrupt.h>
7 #include <linux/module.h>
8 #include <trace/events/irq_vectors.h>
11 #include <asm/tlbflush.h>
12 #include <asm/mmu_context.h>
13 #include <asm/cache.h>
15 #include <asm/uv/uv.h>
17 DEFINE_PER_CPU_SHARED_ALIGNED(struct tlb_state
, cpu_tlbstate
)
21 * Smarter SMP flushing macros.
24 * These mean you can really definitely utterly forget about
25 * writing to user space from interrupts. (Its not allowed anyway).
27 * Optimizations Manfred Spraul <manfred@colorfullife.com>
29 * More scalable flush, from Andi Kleen
31 * To avoid global state use 8 different call vectors.
32 * Each CPU uses a specific vector to trigger flushes on other
33 * CPUs. Depending on the received vector the target CPUs look into
34 * the right array slot for the flush data.
36 * With more than 8 CPUs they are hashed to the 8 available
37 * vectors. The limited global vector space forces us to this right now.
38 * In future when interrupts are split into per CPU domains this could be
39 * fixed, at the cost of triggering multiple IPIs in some cases.
42 union smp_flush_state
{
44 struct mm_struct
*flush_mm
;
45 unsigned long flush_va
;
46 raw_spinlock_t tlbstate_lock
;
47 DECLARE_BITMAP(flush_cpumask
, NR_CPUS
);
49 char pad
[INTERNODE_CACHE_BYTES
];
50 } ____cacheline_internodealigned_in_smp
;
52 /* State is put into the per CPU data section, but padded
53 to a full cache line because other CPUs can access it and we don't
54 want false sharing in the per cpu data segment. */
55 static union smp_flush_state flush_state
[NUM_INVALIDATE_TLB_VECTORS
];
57 static DEFINE_PER_CPU_READ_MOSTLY(int, tlb_vector_offset
);
60 * We cannot call mmdrop() because we are in interrupt context,
61 * instead update mm->cpu_vm_mask.
63 void leave_mm(int cpu
)
65 if (percpu_read(cpu_tlbstate
.state
) == TLBSTATE_OK
)
67 cpumask_clear_cpu(cpu
,
68 mm_cpumask(percpu_read(cpu_tlbstate
.active_mm
)));
69 load_cr3(swapper_pg_dir
);
71 EXPORT_SYMBOL_GPL(leave_mm
);
75 * The flush IPI assumes that a thread switch happens in this order:
76 * [cpu0: the cpu that switches]
77 * 1) switch_mm() either 1a) or 1b)
78 * 1a) thread switch to a different mm
79 * 1a1) cpu_clear(cpu, old_mm->cpu_vm_mask);
80 * Stop ipi delivery for the old mm. This is not synchronized with
81 * the other cpus, but smp_invalidate_interrupt ignore flush ipis
82 * for the wrong mm, and in the worst case we perform a superfluous
84 * 1a2) set cpu mmu_state to TLBSTATE_OK
85 * Now the smp_invalidate_interrupt won't call leave_mm if cpu0
86 * was in lazy tlb mode.
87 * 1a3) update cpu active_mm
88 * Now cpu0 accepts tlb flushes for the new mm.
89 * 1a4) cpu_set(cpu, new_mm->cpu_vm_mask);
90 * Now the other cpus will send tlb flush ipis.
92 * 1b) thread switch without mm change
93 * cpu active_mm is correct, cpu0 already handles
95 * 1b1) set cpu mmu_state to TLBSTATE_OK
96 * 1b2) test_and_set the cpu bit in cpu_vm_mask.
97 * Atomically set the bit [other cpus will start sending flush ipis],
99 * 1b3) if the bit was 0: leave_mm was called, flush the tlb.
100 * 2) switch %%esp, ie current
102 * The interrupt must handle 2 special cases:
103 * - cr3 is changed before %%esp, ie. it cannot use current->{active_,}mm.
104 * - the cpu performs speculative tlb reads, i.e. even if the cpu only
105 * runs in kernel space, the cpu could load tlb entries for user space
108 * The good news is that cpu mmu_state is local to each cpu, no
109 * write/read ordering problems.
115 * 1) Flush the tlb entries if the cpu uses the mm that's being flushed.
116 * 2) Leave the mm if we are in the lazy tlb mode.
118 * Interrupts are disabled.
122 * FIXME: use of asmlinkage is not consistent. On x86_64 it's noop
123 * but still used for documentation purpose but the usage is slightly
124 * inconsistent. On x86_32, asmlinkage is regparm(0) but interrupt
125 * entry calls in with the first parameter in %eax. Maybe define
131 void smp_invalidate_interrupt(struct pt_regs
*regs
)
135 union smp_flush_state
*f
;
137 cpu
= smp_processor_id();
139 * orig_rax contains the negated interrupt vector.
140 * Use that to determine where the sender put the data.
142 sender
= ~regs
->orig_ax
- INVALIDATE_TLB_VECTOR_START
;
143 f
= &flush_state
[sender
];
145 trace_irq_vector_entry(INVALIDATE_TLB_VECTOR_START
+ sender
);
146 if (!cpumask_test_cpu(cpu
, to_cpumask(f
->flush_cpumask
)))
149 * This was a BUG() but until someone can quote me the
150 * line from the intel manual that guarantees an IPI to
151 * multiple CPUs is retried _only_ on the erroring CPUs
152 * its staying as a return
157 if (f
->flush_mm
== percpu_read(cpu_tlbstate
.active_mm
)) {
158 if (percpu_read(cpu_tlbstate
.state
) == TLBSTATE_OK
) {
159 if (f
->flush_va
== TLB_FLUSH_ALL
)
162 __flush_tlb_one(f
->flush_va
);
168 smp_mb__before_clear_bit();
169 cpumask_clear_cpu(cpu
, to_cpumask(f
->flush_cpumask
));
170 smp_mb__after_clear_bit();
171 inc_irq_stat(irq_tlb_count
);
172 trace_irq_vector_exit(INVALIDATE_TLB_VECTOR_START
+ sender
);
175 static void flush_tlb_others_ipi(const struct cpumask
*cpumask
,
176 struct mm_struct
*mm
, unsigned long va
)
179 union smp_flush_state
*f
;
181 /* Caller has disabled preemption */
182 sender
= this_cpu_read(tlb_vector_offset
);
183 f
= &flush_state
[sender
];
185 if (nr_cpu_ids
> NUM_INVALIDATE_TLB_VECTORS
)
186 raw_spin_lock(&f
->tlbstate_lock
);
190 if (cpumask_andnot(to_cpumask(f
->flush_cpumask
), cpumask
, cpumask_of(smp_processor_id()))) {
192 * We have to send the IPI only to
195 apic
->send_IPI_mask(to_cpumask(f
->flush_cpumask
),
196 INVALIDATE_TLB_VECTOR_START
+ sender
);
198 while (!cpumask_empty(to_cpumask(f
->flush_cpumask
)))
204 if (nr_cpu_ids
> NUM_INVALIDATE_TLB_VECTORS
)
205 raw_spin_unlock(&f
->tlbstate_lock
);
208 void native_flush_tlb_others(const struct cpumask
*cpumask
,
209 struct mm_struct
*mm
, unsigned long va
)
211 if (is_uv_system()) {
214 cpu
= smp_processor_id();
215 cpumask
= uv_flush_tlb_others(cpumask
, mm
, va
, cpu
);
217 flush_tlb_others_ipi(cpumask
, mm
, va
);
220 flush_tlb_others_ipi(cpumask
, mm
, va
);
223 static void __cpuinit
calculate_tlb_offset(void)
225 int cpu
, node
, nr_node_vecs
, idx
= 0;
227 * we are changing tlb_vector_offset for each CPU in runtime, but this
228 * will not cause inconsistency, as the write is atomic under X86. we
229 * might see more lock contentions in a short time, but after all CPU's
230 * tlb_vector_offset are changed, everything should go normal
232 * Note: if NUM_INVALIDATE_TLB_VECTORS % nr_online_nodes !=0, we might
233 * waste some vectors.
235 if (nr_online_nodes
> NUM_INVALIDATE_TLB_VECTORS
)
238 nr_node_vecs
= NUM_INVALIDATE_TLB_VECTORS
/nr_online_nodes
;
240 for_each_online_node(node
) {
241 int node_offset
= (idx
% NUM_INVALIDATE_TLB_VECTORS
) *
244 for_each_cpu(cpu
, cpumask_of_node(node
)) {
245 per_cpu(tlb_vector_offset
, cpu
) = node_offset
+
248 cpu_offset
= cpu_offset
% nr_node_vecs
;
254 static int __cpuinit
tlb_cpuhp_notify(struct notifier_block
*n
,
255 unsigned long action
, void *hcpu
)
257 switch (action
& 0xf) {
260 calculate_tlb_offset();
265 static int __cpuinit
init_smp_flush(void)
269 for (i
= 0; i
< ARRAY_SIZE(flush_state
); i
++)
270 raw_spin_lock_init(&flush_state
[i
].tlbstate_lock
);
272 calculate_tlb_offset();
273 hotcpu_notifier(tlb_cpuhp_notify
, 0);
276 core_initcall(init_smp_flush
);
278 void flush_tlb_current_task(void)
280 struct mm_struct
*mm
= current
->mm
;
285 if (cpumask_any_but(mm_cpumask(mm
), smp_processor_id()) < nr_cpu_ids
)
286 flush_tlb_others(mm_cpumask(mm
), mm
, TLB_FLUSH_ALL
);
290 void flush_tlb_mm(struct mm_struct
*mm
)
294 if (current
->active_mm
== mm
) {
298 leave_mm(smp_processor_id());
300 if (cpumask_any_but(mm_cpumask(mm
), smp_processor_id()) < nr_cpu_ids
)
301 flush_tlb_others(mm_cpumask(mm
), mm
, TLB_FLUSH_ALL
);
306 void flush_tlb_page(struct vm_area_struct
*vma
, unsigned long va
)
308 struct mm_struct
*mm
= vma
->vm_mm
;
312 if (current
->active_mm
== mm
) {
316 leave_mm(smp_processor_id());
319 if (cpumask_any_but(mm_cpumask(mm
), smp_processor_id()) < nr_cpu_ids
)
320 flush_tlb_others(mm_cpumask(mm
), mm
, va
);
325 static void do_flush_tlb_all(void *info
)
328 if (percpu_read(cpu_tlbstate
.state
) == TLBSTATE_LAZY
)
329 leave_mm(smp_processor_id());
332 void flush_tlb_all(void)
334 on_each_cpu(do_flush_tlb_all
, NULL
, 1);