blob: b12cb5e72812140688d771ed0788b6a2cf2cfc16 [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{
55 struct tlb_batch *tb = &__get_cpu_var(tlb_batch);
56
57 tb->active = 1;
58}
59
60void arch_leave_lazy_mmu_mode(void)
61{
62 struct tlb_batch *tb = &__get_cpu_var(tlb_batch);
63
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,
70 bool exec)
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) {
David S. Millerf36391d2013-04-19 17:26:26 -040087 flush_tsb_user_page(mm, vaddr);
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
David Miller9e695d22012-10-08 16:34:29 -070092 if (nr == 0)
93 tb->mm = mm;
94
95 tb->vaddrs[nr] = vaddr;
96 tb->tlb_nr = ++nr;
97 if (nr >= TLB_BATCH_NR)
98 flush_tlb_pending();
99
David S. Millerf0af9702013-04-24 16:52:18 -0700100out:
David Miller9e695d22012-10-08 16:34:29 -0700101 put_cpu_var(tlb_batch);
102}
103
104void tlb_batch_add(struct mm_struct *mm, unsigned long vaddr,
105 pte_t *ptep, pte_t orig, int fullmm)
106{
David S. Miller7a591cf2006-02-26 19:44:50 -0800107 if (tlb_type != hypervisor &&
108 pte_dirty(orig)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 unsigned long paddr, pfn = pte_pfn(orig);
110 struct address_space *mapping;
111 struct page *page;
112
113 if (!pfn_valid(pfn))
114 goto no_cache_flush;
115
116 page = pfn_to_page(pfn);
117 if (PageReserved(page))
118 goto no_cache_flush;
119
120 /* A real file page? */
121 mapping = page_mapping(page);
122 if (!mapping)
123 goto no_cache_flush;
124
125 paddr = (unsigned long) page_address(page);
126 if ((paddr ^ vaddr) & (1 << 13))
127 flush_dcache_page_all(mm, page);
128 }
129
130no_cache_flush:
David Miller9e695d22012-10-08 16:34:29 -0700131 if (!fullmm)
132 tlb_batch_add_one(mm, vaddr, pte_exec(orig));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133}
David Miller9e695d22012-10-08 16:34:29 -0700134
135#ifdef CONFIG_TRANSPARENT_HUGEPAGE
136static void tlb_batch_pmd_scan(struct mm_struct *mm, unsigned long vaddr,
137 pmd_t pmd, bool exec)
138{
139 unsigned long end;
140 pte_t *pte;
141
142 pte = pte_offset_map(&pmd, vaddr);
143 end = vaddr + HPAGE_SIZE;
144 while (vaddr < end) {
145 if (pte_val(*pte) & _PAGE_VALID)
146 tlb_batch_add_one(mm, vaddr, exec);
147 pte++;
148 vaddr += PAGE_SIZE;
149 }
150 pte_unmap(pte);
151}
152
153void set_pmd_at(struct mm_struct *mm, unsigned long addr,
154 pmd_t *pmdp, pmd_t pmd)
155{
156 pmd_t orig = *pmdp;
157
158 *pmdp = pmd;
159
160 if (mm == &init_mm)
161 return;
162
David S. Millera7b94032013-09-26 13:45:15 -0700163 if ((pmd_val(pmd) ^ pmd_val(orig)) & _PAGE_PMD_HUGE) {
164 if (pmd_val(pmd) & _PAGE_PMD_HUGE)
David Miller9e695d22012-10-08 16:34:29 -0700165 mm->context.huge_pte_count++;
166 else
167 mm->context.huge_pte_count--;
David S. Miller0fbebed2013-02-19 22:34:10 -0800168
169 /* Do not try to allocate the TSB hash table if we
170 * don't have one already. We have various locks held
171 * and thus we'll end up doing a GFP_KERNEL allocation
172 * in an atomic context.
173 *
174 * Instead, we let the first TLB miss on a hugepage
175 * take care of this.
176 */
David Miller9e695d22012-10-08 16:34:29 -0700177 }
178
179 if (!pmd_none(orig)) {
David S. Millera7b94032013-09-26 13:45:15 -0700180 pte_t orig_pte = __pte(pmd_val(orig));
181 bool exec = pte_exec(orig_pte);
David Miller9e695d22012-10-08 16:34:29 -0700182
183 addr &= HPAGE_MASK;
David S. Millera7b94032013-09-26 13:45:15 -0700184 if (pmd_trans_huge(orig)) {
David Miller9e695d22012-10-08 16:34:29 -0700185 tlb_batch_add_one(mm, addr, exec);
David S. Miller37b3a8f2013-09-25 13:48:49 -0700186 tlb_batch_add_one(mm, addr + REAL_HPAGE_SIZE, exec);
187 } else {
David Miller9e695d22012-10-08 16:34:29 -0700188 tlb_batch_pmd_scan(mm, addr, orig, exec);
David S. Miller37b3a8f2013-09-25 13:48:49 -0700189 }
David Miller9e695d22012-10-08 16:34:29 -0700190 }
191}
192
Aneesh Kumar K.V6b0b50b2013-06-05 17:14:02 -0700193void pgtable_trans_huge_deposit(struct mm_struct *mm, pmd_t *pmdp,
194 pgtable_t pgtable)
David Miller9e695d22012-10-08 16:34:29 -0700195{
196 struct list_head *lh = (struct list_head *) pgtable;
197
198 assert_spin_locked(&mm->page_table_lock);
199
200 /* FIFO */
Kirill A. Shutemovc389a252013-11-14 14:30:59 -0800201 if (!pmd_huge_pte(mm, pmdp))
David Miller9e695d22012-10-08 16:34:29 -0700202 INIT_LIST_HEAD(lh);
203 else
Kirill A. Shutemovc389a252013-11-14 14:30:59 -0800204 list_add(lh, (struct list_head *) pmd_huge_pte(mm, pmdp));
205 pmd_huge_pte(mm, pmdp) = pgtable;
David Miller9e695d22012-10-08 16:34:29 -0700206}
207
Aneesh Kumar K.V6b0b50b2013-06-05 17:14:02 -0700208pgtable_t pgtable_trans_huge_withdraw(struct mm_struct *mm, pmd_t *pmdp)
David Miller9e695d22012-10-08 16:34:29 -0700209{
210 struct list_head *lh;
211 pgtable_t pgtable;
212
213 assert_spin_locked(&mm->page_table_lock);
214
215 /* FIFO */
Kirill A. Shutemovc389a252013-11-14 14:30:59 -0800216 pgtable = pmd_huge_pte(mm, pmdp);
David Miller9e695d22012-10-08 16:34:29 -0700217 lh = (struct list_head *) pgtable;
218 if (list_empty(lh))
Kirill A. Shutemovc389a252013-11-14 14:30:59 -0800219 pmd_huge_pte(mm, pmdp) = NULL;
David Miller9e695d22012-10-08 16:34:29 -0700220 else {
Kirill A. Shutemovc389a252013-11-14 14:30:59 -0800221 pmd_huge_pte(mm, pmdp) = (pgtable_t) lh->next;
David Miller9e695d22012-10-08 16:34:29 -0700222 list_del(lh);
223 }
224 pte_val(pgtable[0]) = 0;
225 pte_val(pgtable[1]) = 0;
226
227 return pgtable;
228}
229#endif /* CONFIG_TRANSPARENT_HUGEPAGE */