H. Peter Anvin | 1965aae | 2008-10-22 22:26:29 -0700 | [diff] [blame] | 1 | #ifndef _ASM_X86_TLBFLUSH_H |
| 2 | #define _ASM_X86_TLBFLUSH_H |
Thomas Gleixner | d291cf8 | 2008-01-30 13:30:35 +0100 | [diff] [blame] | 3 | |
| 4 | #include <linux/mm.h> |
| 5 | #include <linux/sched.h> |
| 6 | |
| 7 | #include <asm/processor.h> |
| 8 | #include <asm/system.h> |
| 9 | |
| 10 | #ifdef CONFIG_PARAVIRT |
| 11 | #include <asm/paravirt.h> |
Thomas Gleixner | 96a388d | 2007-10-11 11:20:03 +0200 | [diff] [blame] | 12 | #else |
Thomas Gleixner | d291cf8 | 2008-01-30 13:30:35 +0100 | [diff] [blame] | 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) |
Thomas Gleixner | 96a388d | 2007-10-11 11:20:03 +0200 | [diff] [blame] | 16 | #endif |
Thomas Gleixner | d291cf8 | 2008-01-30 13:30:35 +0100 | [diff] [blame] | 17 | |
| 18 | static inline void __native_flush_tlb(void) |
| 19 | { |
| 20 | write_cr3(read_cr3()); |
| 21 | } |
| 22 | |
| 23 | static inline void __native_flush_tlb_global(void) |
| 24 | { |
Ingo Molnar | b1979a5 | 2008-05-12 21:21:15 +0200 | [diff] [blame] | 25 | unsigned long flags; |
| 26 | unsigned long cr4; |
Thomas Gleixner | d291cf8 | 2008-01-30 13:30:35 +0100 | [diff] [blame] | 27 | |
Ingo Molnar | b1979a5 | 2008-05-12 21:21:15 +0200 | [diff] [blame] | 28 | /* |
| 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 | |
| 35 | cr4 = read_cr4(); |
Thomas Gleixner | d291cf8 | 2008-01-30 13:30:35 +0100 | [diff] [blame] | 36 | /* clear PGE */ |
| 37 | write_cr4(cr4 & ~X86_CR4_PGE); |
| 38 | /* write old PGE again and flush TLBs */ |
| 39 | write_cr4(cr4); |
Ingo Molnar | b1979a5 | 2008-05-12 21:21:15 +0200 | [diff] [blame] | 40 | |
| 41 | raw_local_irq_restore(flags); |
Thomas Gleixner | d291cf8 | 2008-01-30 13:30:35 +0100 | [diff] [blame] | 42 | } |
| 43 | |
| 44 | static inline void __native_flush_tlb_single(unsigned long addr) |
| 45 | { |
Joe Perches | 94cf8de | 2008-03-23 01:03:45 -0700 | [diff] [blame] | 46 | asm volatile("invlpg (%0)" ::"r" (addr) : "memory"); |
Thomas Gleixner | d291cf8 | 2008-01-30 13:30:35 +0100 | [diff] [blame] | 47 | } |
| 48 | |
| 49 | static inline void __flush_tlb_all(void) |
| 50 | { |
| 51 | if (cpu_has_pge) |
| 52 | __flush_tlb_global(); |
| 53 | else |
| 54 | __flush_tlb(); |
| 55 | } |
| 56 | |
| 57 | static 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 | |
| 65 | #ifdef CONFIG_X86_32 |
| 66 | # define TLB_FLUSH_ALL 0xffffffff |
| 67 | #else |
| 68 | # define TLB_FLUSH_ALL -1ULL |
| 69 | #endif |
| 70 | |
| 71 | /* |
| 72 | * TLB flushing: |
| 73 | * |
| 74 | * - flush_tlb() flushes the current mm struct TLBs |
| 75 | * - flush_tlb_all() flushes all processes TLBs |
| 76 | * - flush_tlb_mm(mm) flushes the specified mm context TLB's |
| 77 | * - flush_tlb_page(vma, vmaddr) flushes one page |
| 78 | * - flush_tlb_range(vma, start, end) flushes a range of pages |
| 79 | * - flush_tlb_kernel_range(start, end) flushes a range of kernel pages |
| 80 | * - flush_tlb_others(cpumask, mm, va) flushes TLBs on other cpus |
| 81 | * |
| 82 | * ..but the i386 has somewhat limited tlb flushing capabilities, |
| 83 | * and page-granular flushes are available only on i486 and up. |
| 84 | * |
| 85 | * x86-64 can only flush individual pages or full VMs. For a range flush |
| 86 | * we always do the full VM. Might be worth trying if for a small |
| 87 | * range a few INVLPGs in a row are a win. |
| 88 | */ |
| 89 | |
| 90 | #ifndef CONFIG_SMP |
| 91 | |
| 92 | #define flush_tlb() __flush_tlb() |
| 93 | #define flush_tlb_all() __flush_tlb_all() |
| 94 | #define local_flush_tlb() __flush_tlb() |
| 95 | |
| 96 | static inline void flush_tlb_mm(struct mm_struct *mm) |
| 97 | { |
| 98 | if (mm == current->active_mm) |
| 99 | __flush_tlb(); |
| 100 | } |
| 101 | |
| 102 | static inline void flush_tlb_page(struct vm_area_struct *vma, |
| 103 | unsigned long addr) |
| 104 | { |
| 105 | if (vma->vm_mm == current->active_mm) |
| 106 | __flush_tlb_one(addr); |
| 107 | } |
| 108 | |
| 109 | static inline void flush_tlb_range(struct vm_area_struct *vma, |
| 110 | unsigned long start, unsigned long end) |
| 111 | { |
| 112 | if (vma->vm_mm == current->active_mm) |
| 113 | __flush_tlb(); |
| 114 | } |
| 115 | |
Rusty Russell | 4595f96 | 2009-01-10 21:58:09 -0800 | [diff] [blame] | 116 | static inline void native_flush_tlb_others(const struct cpumask *cpumask, |
Thomas Gleixner | d291cf8 | 2008-01-30 13:30:35 +0100 | [diff] [blame] | 117 | struct mm_struct *mm, |
| 118 | unsigned long va) |
| 119 | { |
| 120 | } |
| 121 | |
Alex Nixon | 913da64 | 2008-09-03 14:30:23 +0100 | [diff] [blame] | 122 | static inline void reset_lazy_tlbstate(void) |
| 123 | { |
| 124 | } |
| 125 | |
Thomas Gleixner | d291cf8 | 2008-01-30 13:30:35 +0100 | [diff] [blame] | 126 | #else /* SMP */ |
| 127 | |
| 128 | #include <asm/smp.h> |
| 129 | |
| 130 | #define local_flush_tlb() __flush_tlb() |
| 131 | |
| 132 | extern void flush_tlb_all(void); |
| 133 | extern void flush_tlb_current_task(void); |
| 134 | extern void flush_tlb_mm(struct mm_struct *); |
| 135 | extern void flush_tlb_page(struct vm_area_struct *, unsigned long); |
| 136 | |
| 137 | #define flush_tlb() flush_tlb_current_task() |
| 138 | |
| 139 | static inline void flush_tlb_range(struct vm_area_struct *vma, |
| 140 | unsigned long start, unsigned long end) |
| 141 | { |
| 142 | flush_tlb_mm(vma->vm_mm); |
| 143 | } |
| 144 | |
Rusty Russell | 4595f96 | 2009-01-10 21:58:09 -0800 | [diff] [blame] | 145 | void native_flush_tlb_others(const struct cpumask *cpumask, |
| 146 | struct mm_struct *mm, unsigned long va); |
Thomas Gleixner | d291cf8 | 2008-01-30 13:30:35 +0100 | [diff] [blame] | 147 | |
| 148 | #define TLBSTATE_OK 1 |
| 149 | #define TLBSTATE_LAZY 2 |
| 150 | |
Joe Perches | 94cf8de | 2008-03-23 01:03:45 -0700 | [diff] [blame] | 151 | struct tlb_state { |
Thomas Gleixner | d291cf8 | 2008-01-30 13:30:35 +0100 | [diff] [blame] | 152 | struct mm_struct *active_mm; |
| 153 | int state; |
Thomas Gleixner | d291cf8 | 2008-01-30 13:30:35 +0100 | [diff] [blame] | 154 | }; |
| 155 | DECLARE_PER_CPU(struct tlb_state, cpu_tlbstate); |
Alex Nixon | 913da64 | 2008-09-03 14:30:23 +0100 | [diff] [blame] | 156 | |
Alex Nixon | 913da64 | 2008-09-03 14:30:23 +0100 | [diff] [blame] | 157 | static inline void reset_lazy_tlbstate(void) |
| 158 | { |
Brian Gerst | 9eb912d | 2009-01-19 00:38:57 +0900 | [diff] [blame] | 159 | percpu_write(cpu_tlbstate.state, 0); |
| 160 | percpu_write(cpu_tlbstate.active_mm, &init_mm); |
Alex Nixon | 913da64 | 2008-09-03 14:30:23 +0100 | [diff] [blame] | 161 | } |
Thomas Gleixner | d291cf8 | 2008-01-30 13:30:35 +0100 | [diff] [blame] | 162 | |
| 163 | #endif /* SMP */ |
| 164 | |
| 165 | #ifndef CONFIG_PARAVIRT |
Rusty Russell | 4595f96 | 2009-01-10 21:58:09 -0800 | [diff] [blame] | 166 | #define flush_tlb_others(mask, mm, va) native_flush_tlb_others(mask, mm, va) |
Thomas Gleixner | d291cf8 | 2008-01-30 13:30:35 +0100 | [diff] [blame] | 167 | #endif |
| 168 | |
| 169 | static inline void flush_tlb_kernel_range(unsigned long start, |
| 170 | unsigned long end) |
| 171 | { |
| 172 | flush_tlb_all(); |
| 173 | } |
| 174 | |
Jaswinder Singh Rajput | dacf733 | 2009-01-07 17:26:35 +0530 | [diff] [blame] | 175 | extern void zap_low_mappings(void); |
| 176 | |
H. Peter Anvin | 1965aae | 2008-10-22 22:26:29 -0700 | [diff] [blame] | 177 | #endif /* _ASM_X86_TLBFLUSH_H */ |