blob: 36a1a2ab87d26f6f65aded36434adec5121a4aa5 [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
18static inline void __native_flush_tlb(void)
19{
Chris Wrightd7285c62009-04-23 10:21:38 -070020 native_write_cr3(native_read_cr3());
Thomas Gleixnerd291cf82008-01-30 13:30:35 +010021}
22
23static inline void __native_flush_tlb_global(void)
24{
Ingo Molnarb1979a52008-05-12 21:21:15 +020025 unsigned long flags;
26 unsigned long cr4;
Thomas Gleixnerd291cf82008-01-30 13:30:35 +010027
Ingo Molnarb1979a52008-05-12 21:21:15 +020028 /*
29 * Read-modify-write to CR4 - protect it from preemption and
30 * from interrupts. (Use the raw variant because this code can
31 * be called from deep inside debugging code.)
32 */
33 raw_local_irq_save(flags);
34
Chris Wrightd7285c62009-04-23 10:21:38 -070035 cr4 = native_read_cr4();
Thomas Gleixnerd291cf82008-01-30 13:30:35 +010036 /* clear PGE */
Chris Wrightd7285c62009-04-23 10:21:38 -070037 native_write_cr4(cr4 & ~X86_CR4_PGE);
Thomas Gleixnerd291cf82008-01-30 13:30:35 +010038 /* write old PGE again and flush TLBs */
Chris Wrightd7285c62009-04-23 10:21:38 -070039 native_write_cr4(cr4);
Ingo Molnarb1979a52008-05-12 21:21:15 +020040
41 raw_local_irq_restore(flags);
Thomas Gleixnerd291cf82008-01-30 13:30:35 +010042}
43
44static inline void __native_flush_tlb_single(unsigned long addr)
45{
Joe Perches94cf8de2008-03-23 01:03:45 -070046 asm volatile("invlpg (%0)" ::"r" (addr) : "memory");
Thomas Gleixnerd291cf82008-01-30 13:30:35 +010047}
48
49static inline void __flush_tlb_all(void)
50{
51 if (cpu_has_pge)
52 __flush_tlb_global();
53 else
54 __flush_tlb();
55}
56
57static inline void __flush_tlb_one(unsigned long addr)
58{
59 if (cpu_has_invlpg)
60 __flush_tlb_single(addr);
61 else
62 __flush_tlb();
63}
64
Alex Shi3e7f3db2012-05-10 18:01:59 +080065#define TLB_FLUSH_ALL -1UL
Thomas Gleixnerd291cf82008-01-30 13:30:35 +010066
67/*
68 * TLB flushing:
69 *
70 * - flush_tlb() flushes the current mm struct TLBs
71 * - flush_tlb_all() flushes all processes TLBs
72 * - flush_tlb_mm(mm) flushes the specified mm context TLB's
73 * - flush_tlb_page(vma, vmaddr) flushes one page
74 * - flush_tlb_range(vma, start, end) flushes a range of pages
75 * - flush_tlb_kernel_range(start, end) flushes a range of kernel pages
76 * - flush_tlb_others(cpumask, mm, va) flushes TLBs on other cpus
77 *
78 * ..but the i386 has somewhat limited tlb flushing capabilities,
79 * and page-granular flushes are available only on i486 and up.
80 *
81 * x86-64 can only flush individual pages or full VMs. For a range flush
82 * we always do the full VM. Might be worth trying if for a small
83 * range a few INVLPGs in a row are a win.
84 */
85
86#ifndef CONFIG_SMP
87
88#define flush_tlb() __flush_tlb()
89#define flush_tlb_all() __flush_tlb_all()
90#define local_flush_tlb() __flush_tlb()
91
92static inline void flush_tlb_mm(struct mm_struct *mm)
93{
94 if (mm == current->active_mm)
95 __flush_tlb();
96}
97
98static inline void flush_tlb_page(struct vm_area_struct *vma,
99 unsigned long addr)
100{
101 if (vma->vm_mm == current->active_mm)
102 __flush_tlb_one(addr);
103}
104
105static inline void flush_tlb_range(struct vm_area_struct *vma,
106 unsigned long start, unsigned long end)
107{
108 if (vma->vm_mm == current->active_mm)
109 __flush_tlb();
110}
111
Rusty Russell4595f962009-01-10 21:58:09 -0800112static inline void native_flush_tlb_others(const struct cpumask *cpumask,
Thomas Gleixnerd291cf82008-01-30 13:30:35 +0100113 struct mm_struct *mm,
114 unsigned long va)
115{
116}
117
Alex Nixon913da642008-09-03 14:30:23 +0100118static inline void reset_lazy_tlbstate(void)
119{
120}
121
Thomas Gleixnerd291cf82008-01-30 13:30:35 +0100122#else /* SMP */
123
124#include <asm/smp.h>
125
126#define local_flush_tlb() __flush_tlb()
127
128extern void flush_tlb_all(void);
129extern void flush_tlb_current_task(void);
130extern void flush_tlb_mm(struct mm_struct *);
131extern void flush_tlb_page(struct vm_area_struct *, unsigned long);
132
133#define flush_tlb() flush_tlb_current_task()
134
135static inline void flush_tlb_range(struct vm_area_struct *vma,
136 unsigned long start, unsigned long end)
137{
138 flush_tlb_mm(vma->vm_mm);
139}
140
Rusty Russell4595f962009-01-10 21:58:09 -0800141void native_flush_tlb_others(const struct cpumask *cpumask,
142 struct mm_struct *mm, unsigned long va);
Thomas Gleixnerd291cf82008-01-30 13:30:35 +0100143
144#define TLBSTATE_OK 1
145#define TLBSTATE_LAZY 2
146
Joe Perches94cf8de2008-03-23 01:03:45 -0700147struct tlb_state {
Thomas Gleixnerd291cf82008-01-30 13:30:35 +0100148 struct mm_struct *active_mm;
149 int state;
Thomas Gleixnerd291cf82008-01-30 13:30:35 +0100150};
David Howells9b8de742009-04-21 23:00:24 +0100151DECLARE_PER_CPU_SHARED_ALIGNED(struct tlb_state, cpu_tlbstate);
Alex Nixon913da642008-09-03 14:30:23 +0100152
Alex Nixon913da642008-09-03 14:30:23 +0100153static inline void reset_lazy_tlbstate(void)
154{
Alex Shic6ae41e2012-05-11 15:35:27 +0800155 this_cpu_write(cpu_tlbstate.state, 0);
156 this_cpu_write(cpu_tlbstate.active_mm, &init_mm);
Alex Nixon913da642008-09-03 14:30:23 +0100157}
Thomas Gleixnerd291cf82008-01-30 13:30:35 +0100158
159#endif /* SMP */
160
161#ifndef CONFIG_PARAVIRT
Rusty Russell4595f962009-01-10 21:58:09 -0800162#define flush_tlb_others(mask, mm, va) native_flush_tlb_others(mask, mm, va)
Thomas Gleixnerd291cf82008-01-30 13:30:35 +0100163#endif
164
165static inline void flush_tlb_kernel_range(unsigned long start,
166 unsigned long end)
167{
168 flush_tlb_all();
169}
170
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700171#endif /* _ASM_X86_TLBFLUSH_H */