blob: cd791948b286a13a7c5cf35e71662cb8066d697a [file] [log] [blame]
H. Peter Anvin1965aae2008-10-22 22:26:29 -07001#ifndef _ASM_X86_TLBFLUSH_H
2#define _ASM_X86_TLBFLUSH_H
Thomas Gleixnerd291cf82008-01-30 13:30:35 +01003
4#include <linux/mm.h>
5#include <linux/sched.h>
6
7#include <asm/processor.h>
David Howellsf05e7982012-03-28 18:11:12 +01008#include <asm/special_insns.h>
Thomas Gleixnerd291cf82008-01-30 13:30:35 +01009
10#ifdef CONFIG_PARAVIRT
11#include <asm/paravirt.h>
Thomas Gleixner96a388d2007-10-11 11:20:03 +020012#else
Thomas Gleixnerd291cf82008-01-30 13:30:35 +010013#define __flush_tlb() __native_flush_tlb()
14#define __flush_tlb_global() __native_flush_tlb_global()
15#define __flush_tlb_single(addr) __native_flush_tlb_single(addr)
Thomas Gleixner96a388d2007-10-11 11:20:03 +020016#endif
Thomas Gleixnerd291cf82008-01-30 13:30:35 +010017
Andy Lutomirski1e02ce42014-10-24 15:58:08 -070018struct tlb_state {
19#ifdef CONFIG_SMP
20 struct mm_struct *active_mm;
21 int state;
22#endif
23
24 /*
25 * Access to this CR4 shadow and to H/W CR4 is protected by
26 * disabling interrupts when modifying either one.
27 */
28 unsigned long cr4;
29};
30DECLARE_PER_CPU_SHARED_ALIGNED(struct tlb_state, cpu_tlbstate);
31
32/* Initialize cr4 shadow for this CPU. */
33static inline void cr4_init_shadow(void)
34{
35 this_cpu_write(cpu_tlbstate.cr4, __read_cr4());
36}
37
Andy Lutomirski375074c2014-10-24 15:58:07 -070038/* Set in this cpu's CR4. */
39static inline void cr4_set_bits(unsigned long mask)
40{
41 unsigned long cr4;
42
Andy Lutomirski1e02ce42014-10-24 15:58:08 -070043 cr4 = this_cpu_read(cpu_tlbstate.cr4);
44 if ((cr4 | mask) != cr4) {
45 cr4 |= mask;
46 this_cpu_write(cpu_tlbstate.cr4, cr4);
47 __write_cr4(cr4);
48 }
Andy Lutomirski375074c2014-10-24 15:58:07 -070049}
50
51/* Clear in this cpu's CR4. */
52static inline void cr4_clear_bits(unsigned long mask)
53{
54 unsigned long cr4;
55
Andy Lutomirski1e02ce42014-10-24 15:58:08 -070056 cr4 = this_cpu_read(cpu_tlbstate.cr4);
57 if ((cr4 & ~mask) != cr4) {
58 cr4 &= ~mask;
59 this_cpu_write(cpu_tlbstate.cr4, cr4);
60 __write_cr4(cr4);
61 }
62}
63
64/* Read the CR4 shadow. */
65static inline unsigned long cr4_read_shadow(void)
66{
67 return this_cpu_read(cpu_tlbstate.cr4);
Andy Lutomirski375074c2014-10-24 15:58:07 -070068}
69
70/*
71 * Save some of cr4 feature set we're using (e.g. Pentium 4MB
72 * enable and PPro Global page enable), so that any CPU's that boot
73 * up after us can get the correct flags. This should only be used
74 * during boot on the boot cpu.
75 */
76extern unsigned long mmu_cr4_features;
77extern u32 *trampoline_cr4_features;
78
79static inline void cr4_set_bits_and_update_boot(unsigned long mask)
80{
81 mmu_cr4_features |= mask;
82 if (trampoline_cr4_features)
83 *trampoline_cr4_features = mmu_cr4_features;
84 cr4_set_bits(mask);
85}
86
Thomas Gleixnerd291cf82008-01-30 13:30:35 +010087static inline void __native_flush_tlb(void)
88{
Chris Wrightd7285c62009-04-23 10:21:38 -070089 native_write_cr3(native_read_cr3());
Thomas Gleixnerd291cf82008-01-30 13:30:35 +010090}
91
Fenghua Yu086fc8f2012-12-20 23:44:27 -080092static inline void __native_flush_tlb_global_irq_disabled(void)
93{
94 unsigned long cr4;
95
Andy Lutomirski1e02ce42014-10-24 15:58:08 -070096 cr4 = this_cpu_read(cpu_tlbstate.cr4);
Fenghua Yu086fc8f2012-12-20 23:44:27 -080097 /* clear PGE */
98 native_write_cr4(cr4 & ~X86_CR4_PGE);
99 /* write old PGE again and flush TLBs */
100 native_write_cr4(cr4);
101}
102
Thomas Gleixnerd291cf82008-01-30 13:30:35 +0100103static inline void __native_flush_tlb_global(void)
104{
Ingo Molnarb1979a52008-05-12 21:21:15 +0200105 unsigned long flags;
Thomas Gleixnerd291cf82008-01-30 13:30:35 +0100106
Ingo Molnarb1979a52008-05-12 21:21:15 +0200107 /*
108 * Read-modify-write to CR4 - protect it from preemption and
109 * from interrupts. (Use the raw variant because this code can
110 * be called from deep inside debugging code.)
111 */
112 raw_local_irq_save(flags);
113
Fenghua Yu086fc8f2012-12-20 23:44:27 -0800114 __native_flush_tlb_global_irq_disabled();
Ingo Molnarb1979a52008-05-12 21:21:15 +0200115
116 raw_local_irq_restore(flags);
Thomas Gleixnerd291cf82008-01-30 13:30:35 +0100117}
118
119static inline void __native_flush_tlb_single(unsigned long addr)
120{
Joe Perches94cf8de2008-03-23 01:03:45 -0700121 asm volatile("invlpg (%0)" ::"r" (addr) : "memory");
Thomas Gleixnerd291cf82008-01-30 13:30:35 +0100122}
123
124static inline void __flush_tlb_all(void)
125{
126 if (cpu_has_pge)
127 __flush_tlb_global();
128 else
129 __flush_tlb();
130}
131
132static inline void __flush_tlb_one(unsigned long addr)
133{
Mel Gormanec659932014-01-21 14:33:16 -0800134 count_vm_tlb_event(NR_TLB_LOCAL_FLUSH_ONE);
Michael Wange8747f12013-06-04 14:28:18 +0800135 __flush_tlb_single(addr);
Thomas Gleixnerd291cf82008-01-30 13:30:35 +0100136}
137
Alex Shi3e7f3db2012-05-10 18:01:59 +0800138#define TLB_FLUSH_ALL -1UL
Thomas Gleixnerd291cf82008-01-30 13:30:35 +0100139
140/*
141 * TLB flushing:
142 *
143 * - flush_tlb() flushes the current mm struct TLBs
144 * - flush_tlb_all() flushes all processes TLBs
145 * - flush_tlb_mm(mm) flushes the specified mm context TLB's
146 * - flush_tlb_page(vma, vmaddr) flushes one page
147 * - flush_tlb_range(vma, start, end) flushes a range of pages
148 * - flush_tlb_kernel_range(start, end) flushes a range of kernel pages
Alex Shie7b52ff2012-06-28 09:02:17 +0800149 * - flush_tlb_others(cpumask, mm, start, end) flushes TLBs on other cpus
Thomas Gleixnerd291cf82008-01-30 13:30:35 +0100150 *
151 * ..but the i386 has somewhat limited tlb flushing capabilities,
152 * and page-granular flushes are available only on i486 and up.
Thomas Gleixnerd291cf82008-01-30 13:30:35 +0100153 */
154
155#ifndef CONFIG_SMP
156
Dave Hansen6df46862013-09-11 14:20:24 -0700157/* "_up" is for UniProcessor.
158 *
159 * This is a helper for other header functions. *Not* intended to be called
160 * directly. All global TLB flushes need to either call this, or to bump the
161 * vm statistics themselves.
162 */
163static inline void __flush_tlb_up(void)
164{
Mel Gormanec659932014-01-21 14:33:16 -0800165 count_vm_tlb_event(NR_TLB_LOCAL_FLUSH_ALL);
Dave Hansen6df46862013-09-11 14:20:24 -0700166 __flush_tlb();
167}
168
169static inline void flush_tlb_all(void)
170{
Mel Gormanec659932014-01-21 14:33:16 -0800171 count_vm_tlb_event(NR_TLB_LOCAL_FLUSH_ALL);
Dave Hansen6df46862013-09-11 14:20:24 -0700172 __flush_tlb_all();
173}
174
175static inline void flush_tlb(void)
176{
177 __flush_tlb_up();
178}
179
180static inline void local_flush_tlb(void)
181{
182 __flush_tlb_up();
183}
Thomas Gleixnerd291cf82008-01-30 13:30:35 +0100184
185static inline void flush_tlb_mm(struct mm_struct *mm)
186{
187 if (mm == current->active_mm)
Dave Hansen6df46862013-09-11 14:20:24 -0700188 __flush_tlb_up();
Thomas Gleixnerd291cf82008-01-30 13:30:35 +0100189}
190
191static inline void flush_tlb_page(struct vm_area_struct *vma,
192 unsigned long addr)
193{
194 if (vma->vm_mm == current->active_mm)
195 __flush_tlb_one(addr);
196}
197
198static inline void flush_tlb_range(struct vm_area_struct *vma,
199 unsigned long start, unsigned long end)
200{
201 if (vma->vm_mm == current->active_mm)
Dave Hansen6df46862013-09-11 14:20:24 -0700202 __flush_tlb_up();
Thomas Gleixnerd291cf82008-01-30 13:30:35 +0100203}
204
Alex Shi7efa1c82012-07-20 09:18:23 +0800205static inline void flush_tlb_mm_range(struct mm_struct *mm,
Alex Shi611ae8e2012-06-28 09:02:22 +0800206 unsigned long start, unsigned long end, unsigned long vmflag)
207{
Alex Shi7efa1c82012-07-20 09:18:23 +0800208 if (mm == current->active_mm)
Dave Hansen6df46862013-09-11 14:20:24 -0700209 __flush_tlb_up();
Alex Shi611ae8e2012-06-28 09:02:22 +0800210}
211
Rusty Russell4595f962009-01-10 21:58:09 -0800212static inline void native_flush_tlb_others(const struct cpumask *cpumask,
Thomas Gleixnerd291cf82008-01-30 13:30:35 +0100213 struct mm_struct *mm,
Alex Shie7b52ff2012-06-28 09:02:17 +0800214 unsigned long start,
215 unsigned long end)
Thomas Gleixnerd291cf82008-01-30 13:30:35 +0100216{
217}
218
Alex Nixon913da642008-09-03 14:30:23 +0100219static inline void reset_lazy_tlbstate(void)
220{
221}
222
Alex Shieffee4b2012-06-28 09:02:24 +0800223static inline void flush_tlb_kernel_range(unsigned long start,
224 unsigned long end)
225{
226 flush_tlb_all();
227}
228
Thomas Gleixnerd291cf82008-01-30 13:30:35 +0100229#else /* SMP */
230
231#include <asm/smp.h>
232
233#define local_flush_tlb() __flush_tlb()
234
Alex Shi611ae8e2012-06-28 09:02:22 +0800235#define flush_tlb_mm(mm) flush_tlb_mm_range(mm, 0UL, TLB_FLUSH_ALL, 0UL)
236
237#define flush_tlb_range(vma, start, end) \
238 flush_tlb_mm_range(vma->vm_mm, start, end, vma->vm_flags)
239
Thomas Gleixnerd291cf82008-01-30 13:30:35 +0100240extern void flush_tlb_all(void);
241extern void flush_tlb_current_task(void);
Thomas Gleixnerd291cf82008-01-30 13:30:35 +0100242extern void flush_tlb_page(struct vm_area_struct *, unsigned long);
Alex Shi611ae8e2012-06-28 09:02:22 +0800243extern void flush_tlb_mm_range(struct mm_struct *mm, unsigned long start,
244 unsigned long end, unsigned long vmflag);
Alex Shieffee4b2012-06-28 09:02:24 +0800245extern void flush_tlb_kernel_range(unsigned long start, unsigned long end);
Thomas Gleixnerd291cf82008-01-30 13:30:35 +0100246
247#define flush_tlb() flush_tlb_current_task()
248
Rusty Russell4595f962009-01-10 21:58:09 -0800249void native_flush_tlb_others(const struct cpumask *cpumask,
Alex Shie7b52ff2012-06-28 09:02:17 +0800250 struct mm_struct *mm,
251 unsigned long start, unsigned long end);
Thomas Gleixnerd291cf82008-01-30 13:30:35 +0100252
253#define TLBSTATE_OK 1
254#define TLBSTATE_LAZY 2
255
Alex Nixon913da642008-09-03 14:30:23 +0100256static inline void reset_lazy_tlbstate(void)
257{
Alex Shic6ae41e2012-05-11 15:35:27 +0800258 this_cpu_write(cpu_tlbstate.state, 0);
259 this_cpu_write(cpu_tlbstate.active_mm, &init_mm);
Alex Nixon913da642008-09-03 14:30:23 +0100260}
Thomas Gleixnerd291cf82008-01-30 13:30:35 +0100261
262#endif /* SMP */
263
264#ifndef CONFIG_PARAVIRT
Alex Shie7b52ff2012-06-28 09:02:17 +0800265#define flush_tlb_others(mask, mm, start, end) \
266 native_flush_tlb_others(mask, mm, start, end)
Thomas Gleixnerd291cf82008-01-30 13:30:35 +0100267#endif
268
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700269#endif /* _ASM_X86_TLBFLUSH_H */