324941bef723d9777678f2806f6aae1af79f446f
[linux-2.6.git] / include / asm-arm26 / tlb.h
1 #ifndef __ASMARM_TLB_H
2 #define __ASMARM_TLB_H
3
4 #include <asm/pgalloc.h>
5 #include <asm/tlbflush.h>
6 #include <linux/vs_memory.h>
7
8 /*
9  * TLB handling.  This allows us to remove pages from the page
10  * tables, and efficiently handle the TLB issues.
11  */
12 struct mmu_gather {
13         struct mm_struct        *mm;
14         unsigned int            freed;
15         unsigned int            fullmm;
16
17         unsigned int            flushes;
18         unsigned int            avoided_flushes;
19 };
20
21 extern struct mmu_gather mmu_gathers[NR_CPUS];
22
23 static inline struct mmu_gather *
24 tlb_gather_mmu(struct mm_struct *mm, unsigned int full_mm_flush)
25 {
26         int cpu = smp_processor_id();
27         struct mmu_gather *tlb = &mmu_gathers[cpu];
28
29         tlb->mm = mm;
30         tlb->freed = 0;
31         tlb->fullmm = full_mm_flush;
32
33         return tlb;
34 }
35
36 static inline void
37 tlb_finish_mmu(struct mmu_gather *tlb, unsigned long start, unsigned long end)
38 {
39         struct mm_struct *mm = tlb->mm;
40         unsigned long freed = tlb->freed;
41         int rss = mm->rss;
42
43         if (rss < freed)
44                 freed = rss;
45         // mm->rss = rss - freed;
46         vx_rsspages_sub(mm, freed);
47
48         if (freed) {
49                 flush_tlb_mm(mm);
50                 tlb->flushes++;
51         } else {
52                 tlb->avoided_flushes++;
53         }
54
55         /* keep the page table cache within bounds */
56         check_pgt_cache();
57 }
58
59
60 static inline unsigned int
61 tlb_is_full_mm(struct mmu_gather *tlb)
62 {
63      return tlb->fullmm;
64 }
65
66 #define tlb_remove_tlb_entry(tlb,ptep,address)  do { } while (0)
67 //#define tlb_start_vma(tlb,vma)                  do { } while (0)
68 //FIXME - ARM32 uses this now that things changed in the kernel. seems like it may be pointless on arm26, however to get things compiling...
69 #define tlb_start_vma(tlb,vma)                                          \
70         do {                                                            \
71                 if (!tlb->fullmm)                                       \
72                         flush_cache_range(vma, vma->vm_start, vma->vm_end); \
73         } while (0)
74 #define tlb_end_vma(tlb,vma)                    do { } while (0)
75
76 #define tlb_remove_page(tlb,page)       free_page_and_swap_cache(page)
77 #define pte_free_tlb(tlb,ptep)          pte_free(ptep)
78 #define pmd_free_tlb(tlb,pmdp)          pmd_free(pmdp)
79
80 #endif