Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Russell King | 4baa992 | 2008-08-02 10:55:55 +0100 | [diff] [blame] | 2 | * arch/arm/include/asm/tlb.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * |
| 4 | * Copyright (C) 2002 Russell King |
| 5 | * |
| 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. |
| 9 | * |
| 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. |
| 13 | * |
| 14 | * This appears true for both the process fork+exit case, as well as |
| 15 | * the munmap-large-area case. |
| 16 | */ |
| 17 | #ifndef __ASMARM_TLB_H |
| 18 | #define __ASMARM_TLB_H |
| 19 | |
| 20 | #include <asm/cacheflush.h> |
Hyok S. Choi | 0157903 | 2006-02-24 21:41:25 +0000 | [diff] [blame] | 21 | |
| 22 | #ifndef CONFIG_MMU |
| 23 | |
| 24 | #include <linux/pagemap.h> |
Russell King | 58e9c47 | 2011-02-20 12:27:49 +0000 | [diff] [blame] | 25 | |
| 26 | #define tlb_flush(tlb) ((void) tlb) |
| 27 | |
Hyok S. Choi | 0157903 | 2006-02-24 21:41:25 +0000 | [diff] [blame] | 28 | #include <asm-generic/tlb.h> |
| 29 | |
| 30 | #else /* !CONFIG_MMU */ |
| 31 | |
Russell King | 06824ba | 2011-02-20 12:16:45 +0000 | [diff] [blame] | 32 | #include <linux/swap.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | #include <asm/pgalloc.h> |
Russell King | 06824ba | 2011-02-20 12:16:45 +0000 | [diff] [blame] | 34 | #include <asm/tlbflush.h> |
| 35 | |
Peter Zijlstra | 9e14f67 | 2011-05-24 17:11:53 -0700 | [diff] [blame] | 36 | #define MMU_GATHER_BUNDLE 8 |
| 37 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | /* |
| 39 | * TLB handling. This allows us to remove pages from the page |
| 40 | * tables, and efficiently handle the TLB issues. |
| 41 | */ |
| 42 | struct mmu_gather { |
| 43 | struct mm_struct *mm; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | unsigned int fullmm; |
Russell King | 06824ba | 2011-02-20 12:16:45 +0000 | [diff] [blame] | 45 | struct vm_area_struct *vma; |
Aaro Koskinen | 7fccfc0 | 2009-04-14 13:07:35 +0100 | [diff] [blame] | 46 | unsigned long range_start; |
| 47 | unsigned long range_end; |
Russell King | 06824ba | 2011-02-20 12:16:45 +0000 | [diff] [blame] | 48 | unsigned int nr; |
Peter Zijlstra | 9e14f67 | 2011-05-24 17:11:53 -0700 | [diff] [blame] | 49 | unsigned int max; |
| 50 | struct page **pages; |
| 51 | struct page *local[MMU_GATHER_BUNDLE]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | }; |
| 53 | |
| 54 | DECLARE_PER_CPU(struct mmu_gather, mmu_gathers); |
| 55 | |
Russell King | 06824ba | 2011-02-20 12:16:45 +0000 | [diff] [blame] | 56 | /* |
| 57 | * This is unnecessarily complex. There's three ways the TLB shootdown |
| 58 | * code is used: |
| 59 | * 1. Unmapping a range of vmas. See zap_page_range(), unmap_region(). |
| 60 | * tlb->fullmm = 0, and tlb_start_vma/tlb_end_vma will be called. |
| 61 | * tlb->vma will be non-NULL. |
| 62 | * 2. Unmapping all vmas. See exit_mmap(). |
| 63 | * tlb->fullmm = 1, and tlb_start_vma/tlb_end_vma will be called. |
| 64 | * tlb->vma will be non-NULL. Additionally, page tables will be freed. |
| 65 | * 3. Unmapping argument pages. See shift_arg_pages(). |
| 66 | * tlb->fullmm = 0, but tlb_start_vma/tlb_end_vma will not be called. |
| 67 | * tlb->vma will be NULL. |
| 68 | */ |
| 69 | static inline void tlb_flush(struct mmu_gather *tlb) |
| 70 | { |
| 71 | if (tlb->fullmm || !tlb->vma) |
| 72 | flush_tlb_mm(tlb->mm); |
| 73 | else if (tlb->range_end > 0) { |
| 74 | flush_tlb_range(tlb->vma, tlb->range_start, tlb->range_end); |
| 75 | tlb->range_start = TASK_SIZE; |
| 76 | tlb->range_end = 0; |
| 77 | } |
| 78 | } |
| 79 | |
| 80 | static inline void tlb_add_flush(struct mmu_gather *tlb, unsigned long addr) |
| 81 | { |
| 82 | if (!tlb->fullmm) { |
| 83 | if (addr < tlb->range_start) |
| 84 | tlb->range_start = addr; |
| 85 | if (addr + PAGE_SIZE > tlb->range_end) |
| 86 | tlb->range_end = addr + PAGE_SIZE; |
| 87 | } |
| 88 | } |
| 89 | |
Peter Zijlstra | 9e14f67 | 2011-05-24 17:11:53 -0700 | [diff] [blame] | 90 | static inline void __tlb_alloc_page(struct mmu_gather *tlb) |
| 91 | { |
| 92 | unsigned long addr = __get_free_pages(GFP_NOWAIT | __GFP_NOWARN, 0); |
| 93 | |
| 94 | if (addr) { |
| 95 | tlb->pages = (void *)addr; |
| 96 | tlb->max = PAGE_SIZE / sizeof(struct page *); |
| 97 | } |
| 98 | } |
| 99 | |
Russell King | 06824ba | 2011-02-20 12:16:45 +0000 | [diff] [blame] | 100 | static inline void tlb_flush_mmu(struct mmu_gather *tlb) |
| 101 | { |
| 102 | tlb_flush(tlb); |
Peter Zijlstra | 29eb778 | 2013-06-05 12:26:50 +0200 | [diff] [blame] | 103 | free_pages_and_swap_cache(tlb->pages, tlb->nr); |
| 104 | tlb->nr = 0; |
| 105 | if (tlb->pages == tlb->local) |
| 106 | __tlb_alloc_page(tlb); |
Russell King | 06824ba | 2011-02-20 12:16:45 +0000 | [diff] [blame] | 107 | } |
| 108 | |
Peter Zijlstra | 9e14f67 | 2011-05-24 17:11:53 -0700 | [diff] [blame] | 109 | static inline void |
| 110 | tlb_gather_mmu(struct mmu_gather *tlb, struct mm_struct *mm, unsigned int fullmm) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | tlb->mm = mm; |
Peter Zijlstra | 9e14f67 | 2011-05-24 17:11:53 -0700 | [diff] [blame] | 113 | tlb->fullmm = fullmm; |
Russell King | 06824ba | 2011-02-20 12:16:45 +0000 | [diff] [blame] | 114 | tlb->vma = NULL; |
Peter Zijlstra | 9e14f67 | 2011-05-24 17:11:53 -0700 | [diff] [blame] | 115 | tlb->max = ARRAY_SIZE(tlb->local); |
| 116 | tlb->pages = tlb->local; |
Russell King | 06824ba | 2011-02-20 12:16:45 +0000 | [diff] [blame] | 117 | tlb->nr = 0; |
Peter Zijlstra | 9e14f67 | 2011-05-24 17:11:53 -0700 | [diff] [blame] | 118 | __tlb_alloc_page(tlb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | } |
| 120 | |
| 121 | static inline void |
| 122 | tlb_finish_mmu(struct mmu_gather *tlb, unsigned long start, unsigned long end) |
| 123 | { |
Russell King | 06824ba | 2011-02-20 12:16:45 +0000 | [diff] [blame] | 124 | tlb_flush_mmu(tlb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | |
| 126 | /* keep the page table cache within bounds */ |
| 127 | check_pgt_cache(); |
Hugh Dickins | 15a23ff | 2005-10-29 18:16:01 -0700 | [diff] [blame] | 128 | |
Peter Zijlstra | 9e14f67 | 2011-05-24 17:11:53 -0700 | [diff] [blame] | 129 | if (tlb->pages != tlb->local) |
| 130 | free_pages((unsigned long)tlb->pages, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | } |
| 132 | |
Aaro Koskinen | 7fccfc0 | 2009-04-14 13:07:35 +0100 | [diff] [blame] | 133 | /* |
| 134 | * Memorize the range for the TLB flush. |
| 135 | */ |
| 136 | static inline void |
| 137 | tlb_remove_tlb_entry(struct mmu_gather *tlb, pte_t *ptep, unsigned long addr) |
| 138 | { |
Russell King | 06824ba | 2011-02-20 12:16:45 +0000 | [diff] [blame] | 139 | tlb_add_flush(tlb, addr); |
Aaro Koskinen | 7fccfc0 | 2009-04-14 13:07:35 +0100 | [diff] [blame] | 140 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | |
| 142 | /* |
| 143 | * In the case of tlb vma handling, we can optimise these away in the |
| 144 | * case where we're doing a full MM flush. When we're doing a munmap, |
| 145 | * the vmas are adjusted to only cover the region to be torn down. |
| 146 | */ |
| 147 | static inline void |
| 148 | tlb_start_vma(struct mmu_gather *tlb, struct vm_area_struct *vma) |
| 149 | { |
Aaro Koskinen | 7fccfc0 | 2009-04-14 13:07:35 +0100 | [diff] [blame] | 150 | if (!tlb->fullmm) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | flush_cache_range(vma, vma->vm_start, vma->vm_end); |
Russell King | 06824ba | 2011-02-20 12:16:45 +0000 | [diff] [blame] | 152 | tlb->vma = vma; |
Aaro Koskinen | 7fccfc0 | 2009-04-14 13:07:35 +0100 | [diff] [blame] | 153 | tlb->range_start = TASK_SIZE; |
| 154 | tlb->range_end = 0; |
| 155 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | } |
| 157 | |
| 158 | static inline void |
| 159 | tlb_end_vma(struct mmu_gather *tlb, struct vm_area_struct *vma) |
| 160 | { |
Russell King | 06824ba | 2011-02-20 12:16:45 +0000 | [diff] [blame] | 161 | if (!tlb->fullmm) |
| 162 | tlb_flush(tlb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | } |
| 164 | |
Peter Zijlstra | 9e14f67 | 2011-05-24 17:11:53 -0700 | [diff] [blame] | 165 | static inline int __tlb_remove_page(struct mmu_gather *tlb, struct page *page) |
Russell King | 06824ba | 2011-02-20 12:16:45 +0000 | [diff] [blame] | 166 | { |
Peter Zijlstra | 9e14f67 | 2011-05-24 17:11:53 -0700 | [diff] [blame] | 167 | tlb->pages[tlb->nr++] = page; |
| 168 | VM_BUG_ON(tlb->nr > tlb->max); |
| 169 | return tlb->max - tlb->nr; |
| 170 | } |
| 171 | |
| 172 | static inline void tlb_remove_page(struct mmu_gather *tlb, struct page *page) |
| 173 | { |
| 174 | if (!__tlb_remove_page(tlb, page)) |
| 175 | tlb_flush_mmu(tlb); |
Russell King | 06824ba | 2011-02-20 12:16:45 +0000 | [diff] [blame] | 176 | } |
| 177 | |
| 178 | static inline void __pte_free_tlb(struct mmu_gather *tlb, pgtable_t pte, |
| 179 | unsigned long addr) |
| 180 | { |
| 181 | pgtable_page_dtor(pte); |
Catalin Marinas | 6d3ec1a | 2012-01-25 11:54:22 +0100 | [diff] [blame] | 182 | |
Will Deacon | df547e0 | 2012-08-24 15:23:06 +0100 | [diff] [blame] | 183 | #ifdef CONFIG_ARM_LPAE |
| 184 | tlb_add_flush(tlb, addr); |
| 185 | #else |
Catalin Marinas | 6d3ec1a | 2012-01-25 11:54:22 +0100 | [diff] [blame] | 186 | /* |
| 187 | * With the classic ARM MMU, a pte page has two corresponding pmd |
| 188 | * entries, each covering 1MB. |
| 189 | */ |
| 190 | addr &= PMD_MASK; |
| 191 | tlb_add_flush(tlb, addr + SZ_1M - PAGE_SIZE); |
| 192 | tlb_add_flush(tlb, addr + SZ_1M); |
Will Deacon | df547e0 | 2012-08-24 15:23:06 +0100 | [diff] [blame] | 193 | #endif |
Catalin Marinas | 6d3ec1a | 2012-01-25 11:54:22 +0100 | [diff] [blame] | 194 | |
Russell King | 06824ba | 2011-02-20 12:16:45 +0000 | [diff] [blame] | 195 | tlb_remove_page(tlb, pte); |
| 196 | } |
| 197 | |
Catalin Marinas | c9f27f1 | 2011-11-22 17:30:29 +0000 | [diff] [blame] | 198 | static inline void __pmd_free_tlb(struct mmu_gather *tlb, pmd_t *pmdp, |
| 199 | unsigned long addr) |
| 200 | { |
| 201 | #ifdef CONFIG_ARM_LPAE |
| 202 | tlb_add_flush(tlb, addr); |
| 203 | tlb_remove_page(tlb, virt_to_page(pmdp)); |
| 204 | #endif |
| 205 | } |
| 206 | |
Catalin Marinas | 8d96250 | 2012-07-25 14:39:26 +0100 | [diff] [blame] | 207 | static inline void |
| 208 | tlb_remove_pmd_tlb_entry(struct mmu_gather *tlb, pmd_t *pmdp, unsigned long addr) |
| 209 | { |
| 210 | tlb_add_flush(tlb, addr); |
| 211 | } |
| 212 | |
Russell King | 06824ba | 2011-02-20 12:16:45 +0000 | [diff] [blame] | 213 | #define pte_free_tlb(tlb, ptep, addr) __pte_free_tlb(tlb, ptep, addr) |
Catalin Marinas | c9f27f1 | 2011-11-22 17:30:29 +0000 | [diff] [blame] | 214 | #define pmd_free_tlb(tlb, pmdp, addr) __pmd_free_tlb(tlb, pmdp, addr) |
Russell King | a32618d | 2011-11-22 17:30:28 +0000 | [diff] [blame] | 215 | #define pud_free_tlb(tlb, pudp, addr) pud_free((tlb)->mm, pudp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | |
| 217 | #define tlb_migrate_finish(mm) do { } while (0) |
| 218 | |
Hyok S. Choi | 0157903 | 2006-02-24 21:41:25 +0000 | [diff] [blame] | 219 | #endif /* CONFIG_MMU */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | #endif |