tlbflush.h 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334
  1. #ifndef _ASM_X86_TLBFLUSH_H
  2. #define _ASM_X86_TLBFLUSH_H
  3. #include <linux/mm.h>
  4. #include <linux/sched.h>
  5. #include <asm/processor.h>
  6. #include <asm/cpufeature.h>
  7. #include <asm/special_insns.h>
  8. static inline void __invpcid(unsigned long pcid, unsigned long addr,
  9. unsigned long type)
  10. {
  11. struct { u64 d[2]; } desc = { { pcid, addr } };
  12. /*
  13. * The memory clobber is because the whole point is to invalidate
  14. * stale TLB entries and, especially if we're flushing global
  15. * mappings, we don't want the compiler to reorder any subsequent
  16. * memory accesses before the TLB flush.
  17. *
  18. * The hex opcode is invpcid (%ecx), %eax in 32-bit mode and
  19. * invpcid (%rcx), %rax in long mode.
  20. */
  21. asm volatile (".byte 0x66, 0x0f, 0x38, 0x82, 0x01"
  22. : : "m" (desc), "a" (type), "c" (&desc) : "memory");
  23. }
  24. #define INVPCID_TYPE_INDIV_ADDR 0
  25. #define INVPCID_TYPE_SINGLE_CTXT 1
  26. #define INVPCID_TYPE_ALL_INCL_GLOBAL 2
  27. #define INVPCID_TYPE_ALL_NON_GLOBAL 3
  28. /* Flush all mappings for a given pcid and addr, not including globals. */
  29. static inline void invpcid_flush_one(unsigned long pcid,
  30. unsigned long addr)
  31. {
  32. __invpcid(pcid, addr, INVPCID_TYPE_INDIV_ADDR);
  33. }
  34. /* Flush all mappings for a given PCID, not including globals. */
  35. static inline void invpcid_flush_single_context(unsigned long pcid)
  36. {
  37. __invpcid(pcid, 0, INVPCID_TYPE_SINGLE_CTXT);
  38. }
  39. /* Flush all mappings, including globals, for all PCIDs. */
  40. static inline void invpcid_flush_all(void)
  41. {
  42. __invpcid(0, 0, INVPCID_TYPE_ALL_INCL_GLOBAL);
  43. }
  44. /* Flush all mappings for all PCIDs except globals. */
  45. static inline void invpcid_flush_all_nonglobals(void)
  46. {
  47. __invpcid(0, 0, INVPCID_TYPE_ALL_NON_GLOBAL);
  48. }
  49. #ifdef CONFIG_PARAVIRT
  50. #include <asm/paravirt.h>
  51. #else
  52. #define __flush_tlb() __native_flush_tlb()
  53. #define __flush_tlb_global() __native_flush_tlb_global()
  54. #define __flush_tlb_single(addr) __native_flush_tlb_single(addr)
  55. #endif
  56. struct tlb_state {
  57. #ifdef CONFIG_SMP
  58. struct mm_struct *active_mm;
  59. int state;
  60. #endif
  61. /*
  62. * Access to this CR4 shadow and to H/W CR4 is protected by
  63. * disabling interrupts when modifying either one.
  64. */
  65. unsigned long cr4;
  66. };
  67. DECLARE_PER_CPU_SHARED_ALIGNED(struct tlb_state, cpu_tlbstate);
  68. /* Initialize cr4 shadow for this CPU. */
  69. static inline void cr4_init_shadow(void)
  70. {
  71. this_cpu_write(cpu_tlbstate.cr4, __read_cr4());
  72. }
  73. /* Set in this cpu's CR4. */
  74. static inline void cr4_set_bits(unsigned long mask)
  75. {
  76. unsigned long cr4;
  77. cr4 = this_cpu_read(cpu_tlbstate.cr4);
  78. if ((cr4 | mask) != cr4) {
  79. cr4 |= mask;
  80. this_cpu_write(cpu_tlbstate.cr4, cr4);
  81. __write_cr4(cr4);
  82. }
  83. }
  84. /* Clear in this cpu's CR4. */
  85. static inline void cr4_clear_bits(unsigned long mask)
  86. {
  87. unsigned long cr4;
  88. cr4 = this_cpu_read(cpu_tlbstate.cr4);
  89. if ((cr4 & ~mask) != cr4) {
  90. cr4 &= ~mask;
  91. this_cpu_write(cpu_tlbstate.cr4, cr4);
  92. __write_cr4(cr4);
  93. }
  94. }
  95. /* Read the CR4 shadow. */
  96. static inline unsigned long cr4_read_shadow(void)
  97. {
  98. return this_cpu_read(cpu_tlbstate.cr4);
  99. }
  100. /*
  101. * Save some of cr4 feature set we're using (e.g. Pentium 4MB
  102. * enable and PPro Global page enable), so that any CPU's that boot
  103. * up after us can get the correct flags. This should only be used
  104. * during boot on the boot cpu.
  105. */
  106. extern unsigned long mmu_cr4_features;
  107. extern u32 *trampoline_cr4_features;
  108. static inline void cr4_set_bits_and_update_boot(unsigned long mask)
  109. {
  110. mmu_cr4_features |= mask;
  111. if (trampoline_cr4_features)
  112. *trampoline_cr4_features = mmu_cr4_features;
  113. cr4_set_bits(mask);
  114. }
  115. static inline void __native_flush_tlb(void)
  116. {
  117. /*
  118. * If current->mm == NULL then we borrow a mm which may change during a
  119. * task switch and therefore we must not be preempted while we write CR3
  120. * back:
  121. */
  122. preempt_disable();
  123. native_write_cr3(native_read_cr3());
  124. preempt_enable();
  125. }
  126. static inline void __native_flush_tlb_global_irq_disabled(void)
  127. {
  128. unsigned long cr4;
  129. cr4 = this_cpu_read(cpu_tlbstate.cr4);
  130. /* clear PGE */
  131. native_write_cr4(cr4 & ~X86_CR4_PGE);
  132. /* write old PGE again and flush TLBs */
  133. native_write_cr4(cr4);
  134. }
  135. static inline void __native_flush_tlb_global(void)
  136. {
  137. unsigned long flags;
  138. if (static_cpu_has(X86_FEATURE_INVPCID)) {
  139. /*
  140. * Using INVPCID is considerably faster than a pair of writes
  141. * to CR4 sandwiched inside an IRQ flag save/restore.
  142. */
  143. invpcid_flush_all();
  144. return;
  145. }
  146. /*
  147. * Read-modify-write to CR4 - protect it from preemption and
  148. * from interrupts. (Use the raw variant because this code can
  149. * be called from deep inside debugging code.)
  150. */
  151. raw_local_irq_save(flags);
  152. __native_flush_tlb_global_irq_disabled();
  153. raw_local_irq_restore(flags);
  154. }
  155. static inline void __native_flush_tlb_single(unsigned long addr)
  156. {
  157. asm volatile("invlpg (%0)" ::"r" (addr) : "memory");
  158. }
  159. static inline void __flush_tlb_all(void)
  160. {
  161. if (boot_cpu_has(X86_FEATURE_PGE))
  162. __flush_tlb_global();
  163. else
  164. __flush_tlb();
  165. }
  166. static inline void __flush_tlb_one(unsigned long addr)
  167. {
  168. count_vm_tlb_event(NR_TLB_LOCAL_FLUSH_ONE);
  169. __flush_tlb_single(addr);
  170. }
  171. #define TLB_FLUSH_ALL -1UL
  172. /*
  173. * TLB flushing:
  174. *
  175. * - flush_tlb() flushes the current mm struct TLBs
  176. * - flush_tlb_all() flushes all processes TLBs
  177. * - flush_tlb_mm(mm) flushes the specified mm context TLB's
  178. * - flush_tlb_page(vma, vmaddr) flushes one page
  179. * - flush_tlb_range(vma, start, end) flushes a range of pages
  180. * - flush_tlb_kernel_range(start, end) flushes a range of kernel pages
  181. * - flush_tlb_others(cpumask, mm, start, end) flushes TLBs on other cpus
  182. *
  183. * ..but the i386 has somewhat limited tlb flushing capabilities,
  184. * and page-granular flushes are available only on i486 and up.
  185. */
  186. #ifndef CONFIG_SMP
  187. /* "_up" is for UniProcessor.
  188. *
  189. * This is a helper for other header functions. *Not* intended to be called
  190. * directly. All global TLB flushes need to either call this, or to bump the
  191. * vm statistics themselves.
  192. */
  193. static inline void __flush_tlb_up(void)
  194. {
  195. count_vm_tlb_event(NR_TLB_LOCAL_FLUSH_ALL);
  196. __flush_tlb();
  197. }
  198. static inline void flush_tlb_all(void)
  199. {
  200. count_vm_tlb_event(NR_TLB_LOCAL_FLUSH_ALL);
  201. __flush_tlb_all();
  202. }
  203. static inline void flush_tlb(void)
  204. {
  205. __flush_tlb_up();
  206. }
  207. static inline void local_flush_tlb(void)
  208. {
  209. __flush_tlb_up();
  210. }
  211. static inline void flush_tlb_mm(struct mm_struct *mm)
  212. {
  213. if (mm == current->active_mm)
  214. __flush_tlb_up();
  215. }
  216. static inline void flush_tlb_page(struct vm_area_struct *vma,
  217. unsigned long addr)
  218. {
  219. if (vma->vm_mm == current->active_mm)
  220. __flush_tlb_one(addr);
  221. }
  222. static inline void flush_tlb_range(struct vm_area_struct *vma,
  223. unsigned long start, unsigned long end)
  224. {
  225. if (vma->vm_mm == current->active_mm)
  226. __flush_tlb_up();
  227. }
  228. static inline void flush_tlb_mm_range(struct mm_struct *mm,
  229. unsigned long start, unsigned long end, unsigned long vmflag)
  230. {
  231. if (mm == current->active_mm)
  232. __flush_tlb_up();
  233. }
  234. static inline void native_flush_tlb_others(const struct cpumask *cpumask,
  235. struct mm_struct *mm,
  236. unsigned long start,
  237. unsigned long end)
  238. {
  239. }
  240. static inline void reset_lazy_tlbstate(void)
  241. {
  242. }
  243. static inline void flush_tlb_kernel_range(unsigned long start,
  244. unsigned long end)
  245. {
  246. flush_tlb_all();
  247. }
  248. #else /* SMP */
  249. #include <asm/smp.h>
  250. #define local_flush_tlb() __flush_tlb()
  251. #define flush_tlb_mm(mm) flush_tlb_mm_range(mm, 0UL, TLB_FLUSH_ALL, 0UL)
  252. #define flush_tlb_range(vma, start, end) \
  253. flush_tlb_mm_range(vma->vm_mm, start, end, vma->vm_flags)
  254. extern void flush_tlb_all(void);
  255. extern void flush_tlb_current_task(void);
  256. extern void flush_tlb_page(struct vm_area_struct *, unsigned long);
  257. extern void flush_tlb_mm_range(struct mm_struct *mm, unsigned long start,
  258. unsigned long end, unsigned long vmflag);
  259. extern void flush_tlb_kernel_range(unsigned long start, unsigned long end);
  260. #define flush_tlb() flush_tlb_current_task()
  261. void native_flush_tlb_others(const struct cpumask *cpumask,
  262. struct mm_struct *mm,
  263. unsigned long start, unsigned long end);
  264. #define TLBSTATE_OK 1
  265. #define TLBSTATE_LAZY 2
  266. static inline void reset_lazy_tlbstate(void)
  267. {
  268. this_cpu_write(cpu_tlbstate.state, 0);
  269. this_cpu_write(cpu_tlbstate.active_mm, &init_mm);
  270. }
  271. #endif /* SMP */
  272. #ifndef CONFIG_PARAVIRT
  273. #define flush_tlb_others(mask, mm, start, end) \
  274. native_flush_tlb_others(mask, mm, start, end)
  275. #endif
  276. #endif /* _ASM_X86_TLBFLUSH_H */