9 #include <linux/pagemap.h>
12 #include <linux/swap.h>
13 #include <asm/pgalloc.h>
14 #include <asm/tlbflush.h>
15 #include <asm/mmu_context.h>
18 * TLB handling. This allows us to remove pages from the page
19 * tables, and efficiently handle the TLB issues.
24 unsigned long start
, end
;
27 static inline void init_tlb_gather(struct mmu_gather
*tlb
)
29 tlb
->start
= TASK_SIZE
;
39 tlb_gather_mmu(struct mmu_gather
*tlb
, struct mm_struct
*mm
, unsigned int full_mm_flush
)
42 tlb
->fullmm
= full_mm_flush
;
48 tlb_finish_mmu(struct mmu_gather
*tlb
, unsigned long start
, unsigned long end
)
51 flush_tlb_mm(tlb
->mm
);
53 /* keep the page table cache within bounds */
58 tlb_remove_tlb_entry(struct mmu_gather
*tlb
, pte_t
*ptep
, unsigned long address
)
60 if (tlb
->start
> address
)
62 if (tlb
->end
< address
+ PAGE_SIZE
)
63 tlb
->end
= address
+ PAGE_SIZE
;
67 * In the case of tlb vma handling, we can optimise these away in the
68 * case where we're doing a full MM flush. When we're doing a munmap,
69 * the vmas are adjusted to only cover the region to be torn down.
72 tlb_start_vma(struct mmu_gather
*tlb
, struct vm_area_struct
*vma
)
75 flush_cache_range(vma
, vma
->vm_start
, vma
->vm_end
);
79 tlb_end_vma(struct mmu_gather
*tlb
, struct vm_area_struct
*vma
)
81 if (!tlb
->fullmm
&& tlb
->end
) {
82 flush_tlb_range(vma
, tlb
->start
, tlb
->end
);
87 static inline void tlb_flush_mmu(struct mmu_gather
*tlb
)
91 static inline int __tlb_remove_page(struct mmu_gather
*tlb
, struct page
*page
)
93 free_page_and_swap_cache(page
);
94 return 1; /* avoid calling tlb_flush_mmu */
97 static inline void tlb_remove_page(struct mmu_gather
*tlb
, struct page
*page
)
99 __tlb_remove_page(tlb
, page
);
102 #define pte_free_tlb(tlb, ptep, addr) pte_free((tlb)->mm, ptep)
103 #define pmd_free_tlb(tlb, pmdp, addr) pmd_free((tlb)->mm, pmdp)
104 #define pud_free_tlb(tlb, pudp, addr) pud_free((tlb)->mm, pudp)
106 #define tlb_migrate_finish(mm) do { } while (0)
108 #if defined(CONFIG_CPU_SH4) || defined(CONFIG_SUPERH64)
109 extern void tlb_wire_entry(struct vm_area_struct
*, unsigned long, pte_t
);
110 extern void tlb_unwire_entry(void);
112 static inline void tlb_wire_entry(struct vm_area_struct
*vma
,
113 unsigned long addr
, pte_t pte
)
118 static inline void tlb_unwire_entry(void)
124 #else /* CONFIG_MMU */
126 #define tlb_start_vma(tlb, vma) do { } while (0)
127 #define tlb_end_vma(tlb, vma) do { } while (0)
128 #define __tlb_remove_tlb_entry(tlb, pte, address) do { } while (0)
129 #define tlb_flush(tlb) do { } while (0)
131 #include <asm-generic/tlb.h>
133 #endif /* CONFIG_MMU */
134 #endif /* __ASSEMBLY__ */
135 #endif /* __ASM_SH_TLB_H */