blob: 8516225a838983a65c2962082046dc6e5bb4ced4 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _X8664_TLBFLUSH_H
2#define _X8664_TLBFLUSH_H
3
Linus Torvalds1da177e2005-04-16 15:20:36 -07004#include <linux/mm.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +04005#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#include <asm/processor.h>
Glauber de Oliveira Costafbc16f22007-05-02 19:27:06 +02007#include <asm/system.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008
Andi Kleenb1c78c02006-09-26 10:52:29 +02009static inline void __flush_tlb(void)
10{
Glauber de Oliveira Costafbc16f22007-05-02 19:27:06 +020011 write_cr3(read_cr3());
Andi Kleenb1c78c02006-09-26 10:52:29 +020012}
13
14static inline void __flush_tlb_all(void)
15{
Glauber de Oliveira Costafbc16f22007-05-02 19:27:06 +020016 unsigned long cr4 = read_cr4();
17 write_cr4(cr4 & ~X86_CR4_PGE); /* clear PGE */
18 write_cr4(cr4); /* write old PGE again and flush TLBs */
Andi Kleenb1c78c02006-09-26 10:52:29 +020019}
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
21#define __flush_tlb_one(addr) \
Andi Kleenb1c78c02006-09-26 10:52:29 +020022 __asm__ __volatile__("invlpg (%0)" :: "r" (addr) : "memory")
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
24
25/*
26 * TLB flushing:
27 *
28 * - flush_tlb() flushes the current mm struct TLBs
29 * - flush_tlb_all() flushes all processes TLBs
30 * - flush_tlb_mm(mm) flushes the specified mm context TLB's
31 * - flush_tlb_page(vma, vmaddr) flushes one page
32 * - flush_tlb_range(vma, start, end) flushes a range of pages
33 * - flush_tlb_kernel_range(start, end) flushes a range of kernel pages
34 * - flush_tlb_pgtables(mm, start, end) flushes a range of page tables
35 *
Andi Kleend970a522005-07-28 21:15:35 -070036 * x86-64 can only flush individual pages or full VMs. For a range flush
37 * we always do the full VM. Might be worth trying if for a small
38 * range a few INVLPGs in a row are a win.
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 */
40
41#ifndef CONFIG_SMP
42
43#define flush_tlb() __flush_tlb()
44#define flush_tlb_all() __flush_tlb_all()
45#define local_flush_tlb() __flush_tlb()
46
47static inline void flush_tlb_mm(struct mm_struct *mm)
48{
49 if (mm == current->active_mm)
50 __flush_tlb();
51}
52
53static inline void flush_tlb_page(struct vm_area_struct *vma,
54 unsigned long addr)
55{
56 if (vma->vm_mm == current->active_mm)
57 __flush_tlb_one(addr);
58}
59
60static inline void flush_tlb_range(struct vm_area_struct *vma,
61 unsigned long start, unsigned long end)
62{
63 if (vma->vm_mm == current->active_mm)
64 __flush_tlb();
65}
66
67#else
68
69#include <asm/smp.h>
70
71#define local_flush_tlb() \
72 __flush_tlb()
73
74extern void flush_tlb_all(void);
75extern void flush_tlb_current_task(void);
76extern void flush_tlb_mm(struct mm_struct *);
77extern void flush_tlb_page(struct vm_area_struct *, unsigned long);
78
79#define flush_tlb() flush_tlb_current_task()
80
81static inline void flush_tlb_range(struct vm_area_struct * vma, unsigned long start, unsigned long end)
82{
83 flush_tlb_mm(vma->vm_mm);
84}
85
86#define TLBSTATE_OK 1
87#define TLBSTATE_LAZY 2
88
Andi Kleen2b4a0812005-09-12 18:49:24 +020089/* Roughly an IPI every 20MB with 4k pages for freeing page table
90 ranges. Cost is about 42k of memory for each CPU. */
91#define ARCH_FREE_PTE_NR 5350
92
Linus Torvalds1da177e2005-04-16 15:20:36 -070093#endif
94
95#define flush_tlb_kernel_range(start, end) flush_tlb_all()
96
97static inline void flush_tlb_pgtables(struct mm_struct *mm,
98 unsigned long start, unsigned long end)
99{
Andi Kleend970a522005-07-28 21:15:35 -0700100 /* x86_64 does not keep any page table caches in a software TLB.
101 The CPUs do in their hardware TLBs, but they are handled
102 by the normal TLB flushing algorithms. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103}
104
105#endif /* _X8664_TLBFLUSH_H */