Merge tag 'tpm-fixes-for-4.2-rc2' of https://github.com/PeterHuewe/linux-tpmdd into...
[deliverable/linux.git] / arch / x86 / include / asm / tlbflush.h
CommitLineData
1965aae3
PA
1#ifndef _ASM_X86_TLBFLUSH_H
2#define _ASM_X86_TLBFLUSH_H
d291cf83
TG
3
4#include <linux/mm.h>
5#include <linux/sched.h>
6
7#include <asm/processor.h>
f05e798a 8#include <asm/special_insns.h>
d291cf83
TG
9
10#ifdef CONFIG_PARAVIRT
11#include <asm/paravirt.h>
12#else
13#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)
16#endif
17
1e02ce4c
AL
18struct 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
375074cc
AL
38/* Set in this cpu's CR4. */
39static inline void cr4_set_bits(unsigned long mask)
40{
41 unsigned long cr4;
42
1e02ce4c
AL
43 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 }
375074cc
AL
49}
50
51/* Clear in this cpu's CR4. */
52static inline void cr4_clear_bits(unsigned long mask)
53{
54 unsigned long cr4;
55
1e02ce4c
AL
56 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);
375074cc
AL
68}
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
d291cf83
TG
87static inline void __native_flush_tlb(void)
88{
d7285c6b 89 native_write_cr3(native_read_cr3());
d291cf83
TG
90}
91
086fc8f8
FY
92static inline void __native_flush_tlb_global_irq_disabled(void)
93{
94 unsigned long cr4;
95
1e02ce4c 96 cr4 = this_cpu_read(cpu_tlbstate.cr4);
086fc8f8
FY
97 /* 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
d291cf83
TG
103static inline void __native_flush_tlb_global(void)
104{
b1979a5f 105 unsigned long flags;
d291cf83 106
b1979a5f
IM
107 /*
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
086fc8f8 114 __native_flush_tlb_global_irq_disabled();
b1979a5f
IM
115
116 raw_local_irq_restore(flags);
d291cf83
TG
117}
118
119static inline void __native_flush_tlb_single(unsigned long addr)
120{
94cf8de0 121 asm volatile("invlpg (%0)" ::"r" (addr) : "memory");
d291cf83
TG
122}
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{
ec659934 134 count_vm_tlb_event(NR_TLB_LOCAL_FLUSH_ONE);
e8747f10 135 __flush_tlb_single(addr);
d291cf83
TG
136}
137
3e7f3db0 138#define TLB_FLUSH_ALL -1UL
d291cf83
TG
139
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
e7b52ffd 149 * - flush_tlb_others(cpumask, mm, start, end) flushes TLBs on other cpus
d291cf83
TG
150 *
151 * ..but the i386 has somewhat limited tlb flushing capabilities,
152 * and page-granular flushes are available only on i486 and up.
d291cf83
TG
153 */
154
155#ifndef CONFIG_SMP
156
6df46865
DH
157/* "_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{
ec659934 165 count_vm_tlb_event(NR_TLB_LOCAL_FLUSH_ALL);
6df46865
DH
166 __flush_tlb();
167}
168
169static inline void flush_tlb_all(void)
170{
ec659934 171 count_vm_tlb_event(NR_TLB_LOCAL_FLUSH_ALL);
6df46865
DH
172 __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}
d291cf83
TG
184
185static inline void flush_tlb_mm(struct mm_struct *mm)
186{
187 if (mm == current->active_mm)
6df46865 188 __flush_tlb_up();
d291cf83
TG
189}
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)
6df46865 202 __flush_tlb_up();
d291cf83
TG
203}
204
7efa1c87 205static inline void flush_tlb_mm_range(struct mm_struct *mm,
611ae8e3
AS
206 unsigned long start, unsigned long end, unsigned long vmflag)
207{
7efa1c87 208 if (mm == current->active_mm)
6df46865 209 __flush_tlb_up();
611ae8e3
AS
210}
211
4595f962 212static inline void native_flush_tlb_others(const struct cpumask *cpumask,
d291cf83 213 struct mm_struct *mm,
e7b52ffd
AS
214 unsigned long start,
215 unsigned long end)
d291cf83
TG
216{
217}
218
913da64b
AN
219static inline void reset_lazy_tlbstate(void)
220{
221}
222
effee4b9
AS
223static inline void flush_tlb_kernel_range(unsigned long start,
224 unsigned long end)
225{
226 flush_tlb_all();
227}
228
d291cf83
TG
229#else /* SMP */
230
231#include <asm/smp.h>
232
233#define local_flush_tlb() __flush_tlb()
234
611ae8e3
AS
235#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
d291cf83
TG
240extern void flush_tlb_all(void);
241extern void flush_tlb_current_task(void);
d291cf83 242extern void flush_tlb_page(struct vm_area_struct *, unsigned long);
611ae8e3
AS
243extern void flush_tlb_mm_range(struct mm_struct *mm, unsigned long start,
244 unsigned long end, unsigned long vmflag);
effee4b9 245extern void flush_tlb_kernel_range(unsigned long start, unsigned long end);
d291cf83
TG
246
247#define flush_tlb() flush_tlb_current_task()
248
4595f962 249void native_flush_tlb_others(const struct cpumask *cpumask,
e7b52ffd
AS
250 struct mm_struct *mm,
251 unsigned long start, unsigned long end);
d291cf83
TG
252
253#define TLBSTATE_OK 1
254#define TLBSTATE_LAZY 2
255
913da64b
AN
256static inline void reset_lazy_tlbstate(void)
257{
c6ae41e7
AS
258 this_cpu_write(cpu_tlbstate.state, 0);
259 this_cpu_write(cpu_tlbstate.active_mm, &init_mm);
913da64b 260}
d291cf83
TG
261
262#endif /* SMP */
263
264#ifndef CONFIG_PARAVIRT
e7b52ffd
AS
265#define flush_tlb_others(mask, mm, start, end) \
266 native_flush_tlb_others(mask, mm, start, end)
96a388de 267#endif
d291cf83 268
1965aae3 269#endif /* _ASM_X86_TLBFLUSH_H */
This page took 0.575789 seconds and 5 git commands to generate.