blob: 0baf7f0d939484264b089c772112657cb9f15c75 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Russell King4baa9922008-08-02 10:55:55 +01002 * arch/arm/include/asm/tlb.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
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. Choi01579032006-02-24 21:41:25 +000021
22#ifndef CONFIG_MMU
23
24#include <linux/pagemap.h>
Russell King58e9c472011-02-20 12:27:49 +000025
26#define tlb_flush(tlb) ((void) tlb)
27
Hyok S. Choi01579032006-02-24 21:41:25 +000028#include <asm-generic/tlb.h>
29
30#else /* !CONFIG_MMU */
31
Russell King06824ba2011-02-20 12:16:45 +000032#include <linux/swap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <asm/pgalloc.h>
Russell King06824ba2011-02-20 12:16:45 +000034#include <asm/tlbflush.h>
35
Peter Zijlstra9e14f672011-05-24 17:11:53 -070036#define MMU_GATHER_BUNDLE 8
37
Linus Torvalds1da177e2005-04-16 15:20:36 -070038/*
39 * TLB handling. This allows us to remove pages from the page
40 * tables, and efficiently handle the TLB issues.
41 */
42struct mmu_gather {
43 struct mm_struct *mm;
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 unsigned int fullmm;
Russell King06824ba2011-02-20 12:16:45 +000045 struct vm_area_struct *vma;
Linus Torvalds2b047252013-08-15 11:42:25 -070046 unsigned long start, end;
Aaro Koskinen7fccfc02009-04-14 13:07:35 +010047 unsigned long range_start;
48 unsigned long range_end;
Russell King06824ba2011-02-20 12:16:45 +000049 unsigned int nr;
Peter Zijlstra9e14f672011-05-24 17:11:53 -070050 unsigned int max;
51 struct page **pages;
52 struct page *local[MMU_GATHER_BUNDLE];
Linus Torvalds1da177e2005-04-16 15:20:36 -070053};
54
55DECLARE_PER_CPU(struct mmu_gather, mmu_gathers);
56
Russell King06824ba2011-02-20 12:16:45 +000057/*
58 * This is unnecessarily complex. There's three ways the TLB shootdown
59 * code is used:
60 * 1. Unmapping a range of vmas. See zap_page_range(), unmap_region().
61 * tlb->fullmm = 0, and tlb_start_vma/tlb_end_vma will be called.
62 * tlb->vma will be non-NULL.
63 * 2. Unmapping all vmas. See exit_mmap().
64 * tlb->fullmm = 1, and tlb_start_vma/tlb_end_vma will be called.
65 * tlb->vma will be non-NULL. Additionally, page tables will be freed.
66 * 3. Unmapping argument pages. See shift_arg_pages().
67 * tlb->fullmm = 0, but tlb_start_vma/tlb_end_vma will not be called.
68 * tlb->vma will be NULL.
69 */
70static inline void tlb_flush(struct mmu_gather *tlb)
71{
72 if (tlb->fullmm || !tlb->vma)
73 flush_tlb_mm(tlb->mm);
74 else if (tlb->range_end > 0) {
75 flush_tlb_range(tlb->vma, tlb->range_start, tlb->range_end);
76 tlb->range_start = TASK_SIZE;
77 tlb->range_end = 0;
78 }
79}
80
81static inline void tlb_add_flush(struct mmu_gather *tlb, unsigned long addr)
82{
83 if (!tlb->fullmm) {
84 if (addr < tlb->range_start)
85 tlb->range_start = addr;
86 if (addr + PAGE_SIZE > tlb->range_end)
87 tlb->range_end = addr + PAGE_SIZE;
88 }
89}
90
Peter Zijlstra9e14f672011-05-24 17:11:53 -070091static inline void __tlb_alloc_page(struct mmu_gather *tlb)
92{
93 unsigned long addr = __get_free_pages(GFP_NOWAIT | __GFP_NOWARN, 0);
94
95 if (addr) {
96 tlb->pages = (void *)addr;
97 tlb->max = PAGE_SIZE / sizeof(struct page *);
98 }
99}
100
Russell King06824ba2011-02-20 12:16:45 +0000101static inline void tlb_flush_mmu(struct mmu_gather *tlb)
102{
103 tlb_flush(tlb);
Peter Zijlstra29eb7782013-06-05 12:26:50 +0200104 free_pages_and_swap_cache(tlb->pages, tlb->nr);
105 tlb->nr = 0;
106 if (tlb->pages == tlb->local)
107 __tlb_alloc_page(tlb);
Russell King06824ba2011-02-20 12:16:45 +0000108}
109
Peter Zijlstra9e14f672011-05-24 17:11:53 -0700110static inline void
Linus Torvalds2b047252013-08-15 11:42:25 -0700111tlb_gather_mmu(struct mmu_gather *tlb, struct mm_struct *mm, unsigned long start, unsigned long end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 tlb->mm = mm;
Linus Torvalds2b047252013-08-15 11:42:25 -0700114 tlb->fullmm = !(start | (end+1));
115 tlb->start = start;
116 tlb->end = end;
Russell King06824ba2011-02-20 12:16:45 +0000117 tlb->vma = NULL;
Peter Zijlstra9e14f672011-05-24 17:11:53 -0700118 tlb->max = ARRAY_SIZE(tlb->local);
119 tlb->pages = tlb->local;
Russell King06824ba2011-02-20 12:16:45 +0000120 tlb->nr = 0;
Peter Zijlstra9e14f672011-05-24 17:11:53 -0700121 __tlb_alloc_page(tlb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122}
123
124static inline void
125tlb_finish_mmu(struct mmu_gather *tlb, unsigned long start, unsigned long end)
126{
Russell King06824ba2011-02-20 12:16:45 +0000127 tlb_flush_mmu(tlb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
129 /* keep the page table cache within bounds */
130 check_pgt_cache();
Hugh Dickins15a23ff2005-10-29 18:16:01 -0700131
Peter Zijlstra9e14f672011-05-24 17:11:53 -0700132 if (tlb->pages != tlb->local)
133 free_pages((unsigned long)tlb->pages, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134}
135
Aaro Koskinen7fccfc02009-04-14 13:07:35 +0100136/*
137 * Memorize the range for the TLB flush.
138 */
139static inline void
140tlb_remove_tlb_entry(struct mmu_gather *tlb, pte_t *ptep, unsigned long addr)
141{
Russell King06824ba2011-02-20 12:16:45 +0000142 tlb_add_flush(tlb, addr);
Aaro Koskinen7fccfc02009-04-14 13:07:35 +0100143}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
145/*
146 * In the case of tlb vma handling, we can optimise these away in the
147 * case where we're doing a full MM flush. When we're doing a munmap,
148 * the vmas are adjusted to only cover the region to be torn down.
149 */
150static inline void
151tlb_start_vma(struct mmu_gather *tlb, struct vm_area_struct *vma)
152{
Aaro Koskinen7fccfc02009-04-14 13:07:35 +0100153 if (!tlb->fullmm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 flush_cache_range(vma, vma->vm_start, vma->vm_end);
Russell King06824ba2011-02-20 12:16:45 +0000155 tlb->vma = vma;
Aaro Koskinen7fccfc02009-04-14 13:07:35 +0100156 tlb->range_start = TASK_SIZE;
157 tlb->range_end = 0;
158 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159}
160
161static inline void
162tlb_end_vma(struct mmu_gather *tlb, struct vm_area_struct *vma)
163{
Russell King06824ba2011-02-20 12:16:45 +0000164 if (!tlb->fullmm)
165 tlb_flush(tlb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166}
167
Peter Zijlstra9e14f672011-05-24 17:11:53 -0700168static inline int __tlb_remove_page(struct mmu_gather *tlb, struct page *page)
Russell King06824ba2011-02-20 12:16:45 +0000169{
Peter Zijlstra9e14f672011-05-24 17:11:53 -0700170 tlb->pages[tlb->nr++] = page;
171 VM_BUG_ON(tlb->nr > tlb->max);
172 return tlb->max - tlb->nr;
173}
174
175static inline void tlb_remove_page(struct mmu_gather *tlb, struct page *page)
176{
177 if (!__tlb_remove_page(tlb, page))
178 tlb_flush_mmu(tlb);
Russell King06824ba2011-02-20 12:16:45 +0000179}
180
181static inline void __pte_free_tlb(struct mmu_gather *tlb, pgtable_t pte,
182 unsigned long addr)
183{
184 pgtable_page_dtor(pte);
Catalin Marinas6d3ec1a2012-01-25 11:54:22 +0100185
Will Deacondf547e02012-08-24 15:23:06 +0100186#ifdef CONFIG_ARM_LPAE
187 tlb_add_flush(tlb, addr);
188#else
Catalin Marinas6d3ec1a2012-01-25 11:54:22 +0100189 /*
190 * With the classic ARM MMU, a pte page has two corresponding pmd
191 * entries, each covering 1MB.
192 */
193 addr &= PMD_MASK;
194 tlb_add_flush(tlb, addr + SZ_1M - PAGE_SIZE);
195 tlb_add_flush(tlb, addr + SZ_1M);
Will Deacondf547e02012-08-24 15:23:06 +0100196#endif
Catalin Marinas6d3ec1a2012-01-25 11:54:22 +0100197
Russell King06824ba2011-02-20 12:16:45 +0000198 tlb_remove_page(tlb, pte);
199}
200
Catalin Marinasc9f27f12011-11-22 17:30:29 +0000201static inline void __pmd_free_tlb(struct mmu_gather *tlb, pmd_t *pmdp,
202 unsigned long addr)
203{
204#ifdef CONFIG_ARM_LPAE
205 tlb_add_flush(tlb, addr);
206 tlb_remove_page(tlb, virt_to_page(pmdp));
207#endif
208}
209
Catalin Marinas8d962502012-07-25 14:39:26 +0100210static inline void
211tlb_remove_pmd_tlb_entry(struct mmu_gather *tlb, pmd_t *pmdp, unsigned long addr)
212{
213 tlb_add_flush(tlb, addr);
214}
215
Russell King06824ba2011-02-20 12:16:45 +0000216#define pte_free_tlb(tlb, ptep, addr) __pte_free_tlb(tlb, ptep, addr)
Catalin Marinasc9f27f12011-11-22 17:30:29 +0000217#define pmd_free_tlb(tlb, pmdp, addr) __pmd_free_tlb(tlb, pmdp, addr)
Russell Kinga32618d2011-11-22 17:30:28 +0000218#define pud_free_tlb(tlb, pudp, addr) pud_free((tlb)->mm, pudp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
220#define tlb_migrate_finish(mm) do { } while (0)
221
Hyok S. Choi01579032006-02-24 21:41:25 +0000222#endif /* CONFIG_MMU */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223#endif