1#ifndef _I386_TLBFLUSH_H
2#define _I386_TLBFLUSH_H
3
4#include <linux/mm.h>
5#include <asm/processor.h>
6
7#ifdef CONFIG_PARAVIRT
8#include <asm/paravirt.h>
9#else
10#define __flush_tlb() __native_flush_tlb()
11#define __flush_tlb_global() __native_flush_tlb_global()
12#define __flush_tlb_single(addr) __native_flush_tlb_single(addr)
13#endif
14
15#define __native_flush_tlb() \
16 do { \
17 unsigned int tmpreg; \
18 \
19 __asm__ __volatile__( \
20 "movl %%cr3, %0; \n" \
21 "movl %0, %%cr3; # flush TLB \n" \
22 : "=r" (tmpreg) \
23 :: "memory"); \
24 } while (0)
25
26
27
28
29
30#define __native_flush_tlb_global() \
31 do { \
32 unsigned int tmpreg, cr4, cr4_orig; \
33 \
34 __asm__ __volatile__( \
35 "movl %%cr4, %2; # turn off PGE \n" \
36 "movl %2, %1; \n" \
37 "andl %3, %1; \n" \
38 "movl %1, %%cr4; \n" \
39 "movl %%cr3, %0; \n" \
40 "movl %0, %%cr3; # flush TLB \n" \
41 "movl %2, %%cr4; # turn PGE back on \n" \
42 : "=&r" (tmpreg), "=&r" (cr4), "=&r" (cr4_orig) \
43 : "i" (~X86_CR4_PGE) \
44 : "memory"); \
45 } while (0)
46
47#define __native_flush_tlb_single(addr) \
48 __asm__ __volatile__("invlpg (%0)" ::"r" (addr) : "memory")
49
50# define __flush_tlb_all() \
51 do { \
52 if (cpu_has_pge) \
53 __flush_tlb_global(); \
54 else \
55 __flush_tlb(); \
56 } while (0)
57
58#define cpu_has_invlpg (boot_cpu_data.x86 > 3)
59
60#ifdef CONFIG_X86_INVLPG
61# define __flush_tlb_one(addr) __flush_tlb_single(addr)
62#else
63# define __flush_tlb_one(addr) \
64 do { \
65 if (cpu_has_invlpg) \
66 __flush_tlb_single(addr); \
67 else \
68 __flush_tlb(); \
69 } while (0)
70#endif
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88#define TLB_FLUSH_ALL 0xffffffff
89
90
91#ifndef CONFIG_SMP
92
93#include <linux/sched.h>
94
95#define flush_tlb() __flush_tlb()
96#define flush_tlb_all() __flush_tlb_all()
97#define local_flush_tlb() __flush_tlb()
98
99static inline void flush_tlb_mm(struct mm_struct *mm)
100{
101 if (mm == current->active_mm)
102 __flush_tlb();
103}
104
105static inline void flush_tlb_page(struct vm_area_struct *vma,
106 unsigned long addr)
107{
108 if (vma->vm_mm == current->active_mm)
109 __flush_tlb_one(addr);
110}
111
112static inline void flush_tlb_range(struct vm_area_struct *vma,
113 unsigned long start, unsigned long end)
114{
115 if (vma->vm_mm == current->active_mm)
116 __flush_tlb();
117}
118
119static inline void native_flush_tlb_others(const cpumask_t *cpumask,
120 struct mm_struct *mm, unsigned long va)
121{
122}
123
124#else
125
126#include <asm/smp.h>
127
128#define local_flush_tlb() \
129 __flush_tlb()
130
131extern void flush_tlb_all(void);
132extern void flush_tlb_current_task(void);
133extern void flush_tlb_mm(struct mm_struct *);
134extern void flush_tlb_page(struct vm_area_struct *, unsigned long);
135
136#define flush_tlb() flush_tlb_current_task()
137
138static inline void flush_tlb_range(struct vm_area_struct * vma, unsigned long start, unsigned long end)
139{
140 flush_tlb_mm(vma->vm_mm);
141}
142
143void native_flush_tlb_others(const cpumask_t *cpumask, struct mm_struct *mm,
144 unsigned long va);
145
146#define TLBSTATE_OK 1
147#define TLBSTATE_LAZY 2
148
149struct tlb_state
150{
151 struct mm_struct *active_mm;
152 int state;
153 char __cacheline_padding[L1_CACHE_BYTES-8];
154};
155DECLARE_PER_CPU(struct tlb_state, cpu_tlbstate);
156#endif
157
158#ifndef CONFIG_PARAVIRT
159#define flush_tlb_others(mask, mm, va) \
160 native_flush_tlb_others(&mask, mm, va)
161#endif
162
163#define flush_tlb_kernel_range(start, end) flush_tlb_all()
164
165static inline void flush_tlb_pgtables(struct mm_struct *mm,
166 unsigned long start, unsigned long end)
167{
168
169}
170
171#endif
172