blob: afda3bbf78542a0297849d65fe7470a5e73716f1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* arch/sparc64/mm/tlb.c
2 *
3 * Copyright (C) 2004 David S. Miller <davem@redhat.com>
4 */
5
6#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include <linux/percpu.h>
8#include <linux/mm.h>
9#include <linux/swap.h>
David S. Millerc9f29462006-04-30 22:54:27 -070010#include <linux/preempt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011
12#include <asm/pgtable.h>
13#include <asm/pgalloc.h>
14#include <asm/tlbflush.h>
15#include <asm/cacheflush.h>
16#include <asm/mmu_context.h>
17#include <asm/tlb.h>
18
19/* Heavily inspired by the ppc64 code. */
20
Peter Zijlstra90f08e32011-05-24 17:11:50 -070021static DEFINE_PER_CPU(struct tlb_batch, tlb_batch);
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
23void flush_tlb_pending(void)
24{
Peter Zijlstra90f08e32011-05-24 17:11:50 -070025 struct tlb_batch *tb = &get_cpu_var(tlb_batch);
David S. Millerf36391d2013-04-19 17:26:26 -040026 struct mm_struct *mm = tb->mm;
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
David S. Millerf36391d2013-04-19 17:26:26 -040028 if (!tb->tlb_nr)
29 goto out;
David S. Miller74bf4312006-01-31 18:29:18 -080030
David S. Millerf36391d2013-04-19 17:26:26 -040031 flush_tsb_user(tb);
32
33 if (CTX_VALID(mm->context)) {
34 if (tb->tlb_nr == 1) {
35 global_flush_tlb_page(mm, tb->vaddrs[0]);
36 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#ifdef CONFIG_SMP
Peter Zijlstra90f08e32011-05-24 17:11:50 -070038 smp_flush_tlb_pending(tb->mm, tb->tlb_nr,
39 &tb->vaddrs[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#else
Peter Zijlstra90f08e32011-05-24 17:11:50 -070041 __flush_tlb_pending(CTX_HWBITS(tb->mm->context),
42 tb->tlb_nr, &tb->vaddrs[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#endif
44 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 }
David S. Millerc9f29462006-04-30 22:54:27 -070046
David S. Millerf36391d2013-04-19 17:26:26 -040047 tb->tlb_nr = 0;
48
49out:
Peter Zijlstra90f08e32011-05-24 17:11:50 -070050 put_cpu_var(tlb_batch);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051}
52
David S. Millerf36391d2013-04-19 17:26:26 -040053void arch_enter_lazy_mmu_mode(void)
54{
Christoph Lameter494fc422014-08-17 12:30:54 -050055 struct tlb_batch *tb = this_cpu_ptr(&tlb_batch);
David S. Millerf36391d2013-04-19 17:26:26 -040056
57 tb->active = 1;
58}
59
60void arch_leave_lazy_mmu_mode(void)
61{
Christoph Lameter494fc422014-08-17 12:30:54 -050062 struct tlb_batch *tb = this_cpu_ptr(&tlb_batch);
David S. Millerf36391d2013-04-19 17:26:26 -040063
64 if (tb->tlb_nr)
65 flush_tlb_pending();
66 tb->active = 0;
67}
68
David Miller9e695d22012-10-08 16:34:29 -070069static void tlb_batch_add_one(struct mm_struct *mm, unsigned long vaddr,
Nitin Guptac7d9f772017-02-01 16:16:36 -080070 bool exec, unsigned int hugepage_shift)
Linus Torvalds1da177e2005-04-16 15:20:36 -070071{
Peter Zijlstra90f08e32011-05-24 17:11:50 -070072 struct tlb_batch *tb = &get_cpu_var(tlb_batch);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 unsigned long nr;
74
75 vaddr &= PAGE_MASK;
David Miller9e695d22012-10-08 16:34:29 -070076 if (exec)
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 vaddr |= 0x1UL;
78
David Miller9e695d22012-10-08 16:34:29 -070079 nr = tb->tlb_nr;
80
81 if (unlikely(nr != 0 && mm != tb->mm)) {
82 flush_tlb_pending();
83 nr = 0;
84 }
85
David S. Millerf36391d2013-04-19 17:26:26 -040086 if (!tb->active) {
Nitin Guptac7d9f772017-02-01 16:16:36 -080087 flush_tsb_user_page(mm, vaddr, hugepage_shift);
Dave Kleikamp23a01132013-06-18 09:05:36 -050088 global_flush_tlb_page(mm, vaddr);
David S. Millerf0af9702013-04-24 16:52:18 -070089 goto out;
David S. Millerf36391d2013-04-19 17:26:26 -040090 }
91
Nitin Gupta24e49ee2016-03-30 11:17:13 -070092 if (nr == 0) {
David Miller9e695d22012-10-08 16:34:29 -070093 tb->mm = mm;
Nitin Guptac7d9f772017-02-01 16:16:36 -080094 tb->hugepage_shift = hugepage_shift;
Nitin Gupta24e49ee2016-03-30 11:17:13 -070095 }
96
Nitin Guptac7d9f772017-02-01 16:16:36 -080097 if (tb->hugepage_shift != hugepage_shift) {
Nitin Gupta24e49ee2016-03-30 11:17:13 -070098 flush_tlb_pending();
Nitin Guptac7d9f772017-02-01 16:16:36 -080099 tb->hugepage_shift = hugepage_shift;
Nitin Gupta24e49ee2016-03-30 11:17:13 -0700100 nr = 0;
101 }
David Miller9e695d22012-10-08 16:34:29 -0700102
103 tb->vaddrs[nr] = vaddr;
104 tb->tlb_nr = ++nr;
105 if (nr >= TLB_BATCH_NR)
106 flush_tlb_pending();
107
David S. Millerf0af9702013-04-24 16:52:18 -0700108out:
David Miller9e695d22012-10-08 16:34:29 -0700109 put_cpu_var(tlb_batch);
110}
111
112void tlb_batch_add(struct mm_struct *mm, unsigned long vaddr,
Nitin Guptac7d9f772017-02-01 16:16:36 -0800113 pte_t *ptep, pte_t orig, int fullmm,
114 unsigned int hugepage_shift)
David Miller9e695d22012-10-08 16:34:29 -0700115{
David S. Miller7a591cf2006-02-26 19:44:50 -0800116 if (tlb_type != hypervisor &&
117 pte_dirty(orig)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 unsigned long paddr, pfn = pte_pfn(orig);
119 struct address_space *mapping;
120 struct page *page;
121
122 if (!pfn_valid(pfn))
123 goto no_cache_flush;
124
125 page = pfn_to_page(pfn);
126 if (PageReserved(page))
127 goto no_cache_flush;
128
129 /* A real file page? */
130 mapping = page_mapping(page);
131 if (!mapping)
132 goto no_cache_flush;
133
134 paddr = (unsigned long) page_address(page);
135 if ((paddr ^ vaddr) & (1 << 13))
136 flush_dcache_page_all(mm, page);
137 }
138
139no_cache_flush:
David Miller9e695d22012-10-08 16:34:29 -0700140 if (!fullmm)
Nitin Guptac7d9f772017-02-01 16:16:36 -0800141 tlb_batch_add_one(mm, vaddr, pte_exec(orig), hugepage_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142}
David Miller9e695d22012-10-08 16:34:29 -0700143
144#ifdef CONFIG_TRANSPARENT_HUGEPAGE
145static void tlb_batch_pmd_scan(struct mm_struct *mm, unsigned long vaddr,
David S. Miller5b1e94f2014-04-20 21:55:01 -0400146 pmd_t pmd)
David Miller9e695d22012-10-08 16:34:29 -0700147{
148 unsigned long end;
149 pte_t *pte;
150
151 pte = pte_offset_map(&pmd, vaddr);
152 end = vaddr + HPAGE_SIZE;
153 while (vaddr < end) {
David S. Miller5b1e94f2014-04-20 21:55:01 -0400154 if (pte_val(*pte) & _PAGE_VALID) {
155 bool exec = pte_exec(*pte);
156
Nitin Gupta24e49ee2016-03-30 11:17:13 -0700157 tlb_batch_add_one(mm, vaddr, exec, false);
David S. Miller5b1e94f2014-04-20 21:55:01 -0400158 }
David Miller9e695d22012-10-08 16:34:29 -0700159 pte++;
160 vaddr += PAGE_SIZE;
161 }
162 pte_unmap(pte);
163}
164
165void set_pmd_at(struct mm_struct *mm, unsigned long addr,
166 pmd_t *pmdp, pmd_t pmd)
167{
168 pmd_t orig = *pmdp;
169
170 *pmdp = pmd;
171
172 if (mm == &init_mm)
173 return;
174
David S. Millera7b94032013-09-26 13:45:15 -0700175 if ((pmd_val(pmd) ^ pmd_val(orig)) & _PAGE_PMD_HUGE) {
Mike Kravetz1e953d82016-08-31 13:48:19 -0700176 /*
177 * Note that this routine only sets pmds for THP pages.
178 * Hugetlb pages are handled elsewhere. We need to check
179 * for huge zero page. Huge zero pages are like hugetlb
180 * pages in that there is no RSS, but there is the need
181 * for TSB entries. So, huge zero page counts go into
182 * hugetlb_pte_count.
183 */
184 if (pmd_val(pmd) & _PAGE_PMD_HUGE) {
185 if (is_huge_zero_page(pmd_page(pmd)))
186 mm->context.hugetlb_pte_count++;
187 else
188 mm->context.thp_pte_count++;
189 } else {
190 if (is_huge_zero_page(pmd_page(orig)))
191 mm->context.hugetlb_pte_count--;
192 else
193 mm->context.thp_pte_count--;
194 }
David S. Miller0fbebed2013-02-19 22:34:10 -0800195
196 /* Do not try to allocate the TSB hash table if we
197 * don't have one already. We have various locks held
198 * and thus we'll end up doing a GFP_KERNEL allocation
199 * in an atomic context.
200 *
201 * Instead, we let the first TLB miss on a hugepage
202 * take care of this.
203 */
David Miller9e695d22012-10-08 16:34:29 -0700204 }
205
206 if (!pmd_none(orig)) {
David Miller9e695d22012-10-08 16:34:29 -0700207 addr &= HPAGE_MASK;
David S. Millera7b94032013-09-26 13:45:15 -0700208 if (pmd_trans_huge(orig)) {
David S. Miller5b1e94f2014-04-20 21:55:01 -0400209 pte_t orig_pte = __pte(pmd_val(orig));
210 bool exec = pte_exec(orig_pte);
211
Nitin Gupta24e49ee2016-03-30 11:17:13 -0700212 tlb_batch_add_one(mm, addr, exec, true);
213 tlb_batch_add_one(mm, addr + REAL_HPAGE_SIZE, exec,
214 true);
David S. Miller37b3a8f2013-09-25 13:48:49 -0700215 } else {
David S. Miller5b1e94f2014-04-20 21:55:01 -0400216 tlb_batch_pmd_scan(mm, addr, orig);
David S. Miller37b3a8f2013-09-25 13:48:49 -0700217 }
David Miller9e695d22012-10-08 16:34:29 -0700218 }
219}
220
Mike Kravetz1e953d82016-08-31 13:48:19 -0700221/*
222 * This routine is only called when splitting a THP
223 */
David S. Miller51e5ef12014-04-24 13:58:02 -0700224void pmdp_invalidate(struct vm_area_struct *vma, unsigned long address,
225 pmd_t *pmdp)
226{
227 pmd_t entry = *pmdp;
228
229 pmd_val(entry) &= ~_PAGE_VALID;
230
231 set_pmd_at(vma->vm_mm, address, pmdp, entry);
232 flush_tlb_range(vma, address, address + HPAGE_PMD_SIZE);
Mike Kravetz1e953d82016-08-31 13:48:19 -0700233
234 /*
235 * set_pmd_at() will not be called in a way to decrement
236 * thp_pte_count when splitting a THP, so do it now.
237 * Sanity check pmd before doing the actual decrement.
238 */
239 if ((pmd_val(entry) & _PAGE_PMD_HUGE) &&
240 !is_huge_zero_page(pmd_page(entry)))
241 (vma->vm_mm)->context.thp_pte_count--;
David S. Miller51e5ef12014-04-24 13:58:02 -0700242}
243
Aneesh Kumar K.V6b0b50b2013-06-05 17:14:02 -0700244void pgtable_trans_huge_deposit(struct mm_struct *mm, pmd_t *pmdp,
245 pgtable_t pgtable)
David Miller9e695d22012-10-08 16:34:29 -0700246{
247 struct list_head *lh = (struct list_head *) pgtable;
248
249 assert_spin_locked(&mm->page_table_lock);
250
251 /* FIFO */
Kirill A. Shutemovc389a252013-11-14 14:30:59 -0800252 if (!pmd_huge_pte(mm, pmdp))
David Miller9e695d22012-10-08 16:34:29 -0700253 INIT_LIST_HEAD(lh);
254 else
Kirill A. Shutemovc389a252013-11-14 14:30:59 -0800255 list_add(lh, (struct list_head *) pmd_huge_pte(mm, pmdp));
256 pmd_huge_pte(mm, pmdp) = pgtable;
David Miller9e695d22012-10-08 16:34:29 -0700257}
258
Aneesh Kumar K.V6b0b50b2013-06-05 17:14:02 -0700259pgtable_t pgtable_trans_huge_withdraw(struct mm_struct *mm, pmd_t *pmdp)
David Miller9e695d22012-10-08 16:34:29 -0700260{
261 struct list_head *lh;
262 pgtable_t pgtable;
263
264 assert_spin_locked(&mm->page_table_lock);
265
266 /* FIFO */
Kirill A. Shutemovc389a252013-11-14 14:30:59 -0800267 pgtable = pmd_huge_pte(mm, pmdp);
David Miller9e695d22012-10-08 16:34:29 -0700268 lh = (struct list_head *) pgtable;
269 if (list_empty(lh))
Kirill A. Shutemovc389a252013-11-14 14:30:59 -0800270 pmd_huge_pte(mm, pmdp) = NULL;
David Miller9e695d22012-10-08 16:34:29 -0700271 else {
Kirill A. Shutemovc389a252013-11-14 14:30:59 -0800272 pmd_huge_pte(mm, pmdp) = (pgtable_t) lh->next;
David Miller9e695d22012-10-08 16:34:29 -0700273 list_del(lh);
274 }
275 pte_val(pgtable[0]) = 0;
276 pte_val(pgtable[1]) = 0;
277
278 return pgtable;
279}
280#endif /* CONFIG_TRANSPARENT_HUGEPAGE */