Committer: Michael Beasley <mike@snafu.setup>
[mikesnafu-overlay.git] / include / asm-arm / tlb.h
blob36bd402a21cb12ad52ffd610e740fc83b265efde
1 /*
2 * linux/include/asm-arm/tlb.h
4 * Copyright (C) 2002 Russell King
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
10 * Experimentation shows that on a StrongARM, it appears to be faster
11 * to use the "invalidate whole tlb" rather than "invalidate single
12 * tlb" for this.
14 * This appears true for both the process fork+exit case, as well as
15 * the munmap-large-area case.
17 #ifndef __ASMARM_TLB_H
18 #define __ASMARM_TLB_H
20 #include <asm/cacheflush.h>
21 #include <asm/tlbflush.h>
23 #ifndef CONFIG_MMU
25 #include <linux/pagemap.h>
26 #include <asm-generic/tlb.h>
28 #else /* !CONFIG_MMU */
30 #include <asm/pgalloc.h>
33 * TLB handling. This allows us to remove pages from the page
34 * tables, and efficiently handle the TLB issues.
36 struct mmu_gather {
37 struct mm_struct *mm;
38 unsigned int fullmm;
41 DECLARE_PER_CPU(struct mmu_gather, mmu_gathers);
43 static inline struct mmu_gather *
44 tlb_gather_mmu(struct mm_struct *mm, unsigned int full_mm_flush)
46 struct mmu_gather *tlb = &get_cpu_var(mmu_gathers);
48 tlb->mm = mm;
49 tlb->fullmm = full_mm_flush;
51 return tlb;
54 static inline void
55 tlb_finish_mmu(struct mmu_gather *tlb, unsigned long start, unsigned long end)
57 if (tlb->fullmm)
58 flush_tlb_mm(tlb->mm);
60 /* keep the page table cache within bounds */
61 check_pgt_cache();
63 put_cpu_var(mmu_gathers);
66 #define tlb_remove_tlb_entry(tlb,ptep,address) do { } while (0)
69 * In the case of tlb vma handling, we can optimise these away in the
70 * case where we're doing a full MM flush. When we're doing a munmap,
71 * the vmas are adjusted to only cover the region to be torn down.
73 static inline void
74 tlb_start_vma(struct mmu_gather *tlb, struct vm_area_struct *vma)
76 if (!tlb->fullmm)
77 flush_cache_range(vma, vma->vm_start, vma->vm_end);
80 static inline void
81 tlb_end_vma(struct mmu_gather *tlb, struct vm_area_struct *vma)
83 if (!tlb->fullmm)
84 flush_tlb_range(vma, vma->vm_start, vma->vm_end);
87 #define tlb_remove_page(tlb,page) free_page_and_swap_cache(page)
88 #define pte_free_tlb(tlb, ptep) pte_free((tlb)->mm, ptep)
89 #define pmd_free_tlb(tlb, pmdp) pmd_free((tlb)->mm, pmdp)
91 #define tlb_migrate_finish(mm) do { } while (0)
93 #endif /* CONFIG_MMU */
94 #endif