Merge tag 'drm-msm-fixes-2021-06-10' of https://gitlab.freedesktop.org/drm/msm into...
[linux-block.git] / arch / sparc / mm / tlb.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
1da177e4
LT
2/* arch/sparc64/mm/tlb.c
3 *
4 * Copyright (C) 2004 David S. Miller <davem@redhat.com>
5 */
6
7#include <linux/kernel.h>
1da177e4
LT
8#include <linux/percpu.h>
9#include <linux/mm.h>
10#include <linux/swap.h>
c9f2946f 11#include <linux/preempt.h>
842ca547 12#include <linux/pagemap.h>
1da177e4 13
1da177e4
LT
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
90f08e39 21static DEFINE_PER_CPU(struct tlb_batch, tlb_batch);
1da177e4
LT
22
23void flush_tlb_pending(void)
24{
90f08e39 25 struct tlb_batch *tb = &get_cpu_var(tlb_batch);
f36391d2 26 struct mm_struct *mm = tb->mm;
1da177e4 27
f36391d2
DM
28 if (!tb->tlb_nr)
29 goto out;
74bf4312 30
f36391d2
DM
31 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 {
1da177e4 37#ifdef CONFIG_SMP
90f08e39
PZ
38 smp_flush_tlb_pending(tb->mm, tb->tlb_nr,
39 &tb->vaddrs[0]);
1da177e4 40#else
90f08e39
PZ
41 __flush_tlb_pending(CTX_HWBITS(tb->mm->context),
42 tb->tlb_nr, &tb->vaddrs[0]);
1da177e4
LT
43#endif
44 }
1da177e4 45 }
c9f2946f 46
f36391d2
DM
47 tb->tlb_nr = 0;
48
49out:
90f08e39 50 put_cpu_var(tlb_batch);
1da177e4
LT
51}
52
f36391d2
DM
53void arch_enter_lazy_mmu_mode(void)
54{
494fc421 55 struct tlb_batch *tb = this_cpu_ptr(&tlb_batch);
f36391d2
DM
56
57 tb->active = 1;
58}
59
60void arch_leave_lazy_mmu_mode(void)
61{
494fc421 62 struct tlb_batch *tb = this_cpu_ptr(&tlb_batch);
f36391d2
DM
63
64 if (tb->tlb_nr)
65 flush_tlb_pending();
66 tb->active = 0;
67}
68
9e695d2e 69static void tlb_batch_add_one(struct mm_struct *mm, unsigned long vaddr,
c7d9f77d 70 bool exec, unsigned int hugepage_shift)
1da177e4 71{
90f08e39 72 struct tlb_batch *tb = &get_cpu_var(tlb_batch);
1da177e4
LT
73 unsigned long nr;
74
75 vaddr &= PAGE_MASK;
9e695d2e 76 if (exec)
1da177e4
LT
77 vaddr |= 0x1UL;
78
9e695d2e
DM
79 nr = tb->tlb_nr;
80
81 if (unlikely(nr != 0 && mm != tb->mm)) {
82 flush_tlb_pending();
83 nr = 0;
84 }
85
f36391d2 86 if (!tb->active) {
c7d9f77d 87 flush_tsb_user_page(mm, vaddr, hugepage_shift);
23a01138 88 global_flush_tlb_page(mm, vaddr);
f0af9707 89 goto out;
f36391d2
DM
90 }
91
24e49ee3 92 if (nr == 0) {
9e695d2e 93 tb->mm = mm;
c7d9f77d 94 tb->hugepage_shift = hugepage_shift;
24e49ee3
NG
95 }
96
c7d9f77d 97 if (tb->hugepage_shift != hugepage_shift) {
24e49ee3 98 flush_tlb_pending();
c7d9f77d 99 tb->hugepage_shift = hugepage_shift;
24e49ee3
NG
100 nr = 0;
101 }
9e695d2e
DM
102
103 tb->vaddrs[nr] = vaddr;
104 tb->tlb_nr = ++nr;
105 if (nr >= TLB_BATCH_NR)
106 flush_tlb_pending();
107
f0af9707 108out:
9e695d2e
DM
109 put_cpu_var(tlb_batch);
110}
111
112void tlb_batch_add(struct mm_struct *mm, unsigned long vaddr,
c7d9f77d
NG
113 pte_t *ptep, pte_t orig, int fullmm,
114 unsigned int hugepage_shift)
9e695d2e 115{
7a591cfe
DM
116 if (tlb_type != hypervisor &&
117 pte_dirty(orig)) {
1da177e4
LT
118 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? */
cb9f753a 130 mapping = page_mapping_file(page);
1da177e4
LT
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:
9e695d2e 140 if (!fullmm)
c7d9f77d 141 tlb_batch_add_one(mm, vaddr, pte_exec(orig), hugepage_shift);
9e695d2e
DM
142}
143
144#ifdef CONFIG_TRANSPARENT_HUGEPAGE
145static void tlb_batch_pmd_scan(struct mm_struct *mm, unsigned long vaddr,
5b1e94fa 146 pmd_t pmd)
9e695d2e
DM
147{
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) {
5b1e94fa
DM
154 if (pte_val(*pte) & _PAGE_VALID) {
155 bool exec = pte_exec(*pte);
156
76811263 157 tlb_batch_add_one(mm, vaddr, exec, PAGE_SHIFT);
5b1e94fa 158 }
9e695d2e
DM
159 pte++;
160 vaddr += PAGE_SIZE;
161 }
162 pte_unmap(pte);
163}
1da177e4 164
9e695d2e 165
cfb61b5e
DM
166static void __set_pmd_acct(struct mm_struct *mm, unsigned long addr,
167 pmd_t orig, pmd_t pmd)
168{
9e695d2e 169 if (mm == &init_mm)
1da177e4 170 return;
9e695d2e 171
a7b9403f 172 if ((pmd_val(pmd) ^ pmd_val(orig)) & _PAGE_PMD_HUGE) {
1e953d84
MK
173 /*
174 * Note that this routine only sets pmds for THP pages.
175 * Hugetlb pages are handled elsewhere. We need to check
176 * for huge zero page. Huge zero pages are like hugetlb
177 * pages in that there is no RSS, but there is the need
178 * for TSB entries. So, huge zero page counts go into
179 * hugetlb_pte_count.
180 */
181 if (pmd_val(pmd) & _PAGE_PMD_HUGE) {
182 if (is_huge_zero_page(pmd_page(pmd)))
183 mm->context.hugetlb_pte_count++;
184 else
185 mm->context.thp_pte_count++;
186 } else {
187 if (is_huge_zero_page(pmd_page(orig)))
188 mm->context.hugetlb_pte_count--;
189 else
190 mm->context.thp_pte_count--;
191 }
0fbebed6
DM
192
193 /* Do not try to allocate the TSB hash table if we
194 * don't have one already. We have various locks held
195 * and thus we'll end up doing a GFP_KERNEL allocation
196 * in an atomic context.
197 *
198 * Instead, we let the first TLB miss on a hugepage
199 * take care of this.
200 */
90f08e39 201 }
1da177e4 202
9e695d2e 203 if (!pmd_none(orig)) {
9e695d2e 204 addr &= HPAGE_MASK;
a7b9403f 205 if (pmd_trans_huge(orig)) {
5b1e94fa
DM
206 pte_t orig_pte = __pte(pmd_val(orig));
207 bool exec = pte_exec(orig_pte);
208
76811263 209 tlb_batch_add_one(mm, addr, exec, REAL_HPAGE_SHIFT);
24e49ee3 210 tlb_batch_add_one(mm, addr + REAL_HPAGE_SIZE, exec,
76811263 211 REAL_HPAGE_SHIFT);
37b3a8ff 212 } else {
5b1e94fa 213 tlb_batch_pmd_scan(mm, addr, orig);
37b3a8ff 214 }
1da177e4 215 }
9e695d2e 216}
1da177e4 217
cfb61b5e
DM
218void set_pmd_at(struct mm_struct *mm, unsigned long addr,
219 pmd_t *pmdp, pmd_t pmd)
220{
221 pmd_t orig = *pmdp;
222
223 *pmdp = pmd;
224 __set_pmd_acct(mm, addr, orig, pmd);
225}
226
a8e654f0
NG
227static inline pmd_t pmdp_establish(struct vm_area_struct *vma,
228 unsigned long address, pmd_t *pmdp, pmd_t pmd)
229{
230 pmd_t old;
231
232 do {
233 old = *pmdp;
234 } while (cmpxchg64(&pmdp->pmd, old.pmd, pmd.pmd) != old.pmd);
cfb61b5e 235 __set_pmd_acct(vma->vm_mm, address, old, pmd);
a8e654f0
NG
236
237 return old;
238}
239
1e953d84
MK
240/*
241 * This routine is only called when splitting a THP
242 */
a8e654f0 243pmd_t pmdp_invalidate(struct vm_area_struct *vma, unsigned long address,
51e5ef1b
DM
244 pmd_t *pmdp)
245{
a8e654f0 246 pmd_t old, entry;
51e5ef1b 247
a8e654f0
NG
248 entry = __pmd(pmd_val(*pmdp) & ~_PAGE_VALID);
249 old = pmdp_establish(vma, address, pmdp, entry);
51e5ef1b 250 flush_tlb_range(vma, address, address + HPAGE_PMD_SIZE);
1e953d84
MK
251
252 /*
253 * set_pmd_at() will not be called in a way to decrement
254 * thp_pte_count when splitting a THP, so do it now.
255 * Sanity check pmd before doing the actual decrement.
256 */
257 if ((pmd_val(entry) & _PAGE_PMD_HUGE) &&
258 !is_huge_zero_page(pmd_page(entry)))
259 (vma->vm_mm)->context.thp_pte_count--;
a8e654f0
NG
260
261 return old;
51e5ef1b
DM
262}
263
6b0b50b0
AK
264void pgtable_trans_huge_deposit(struct mm_struct *mm, pmd_t *pmdp,
265 pgtable_t pgtable)
9e695d2e
DM
266{
267 struct list_head *lh = (struct list_head *) pgtable;
1da177e4 268
9e695d2e 269 assert_spin_locked(&mm->page_table_lock);
90f08e39 270
9e695d2e 271 /* FIFO */
c389a250 272 if (!pmd_huge_pte(mm, pmdp))
9e695d2e
DM
273 INIT_LIST_HEAD(lh);
274 else
c389a250
KS
275 list_add(lh, (struct list_head *) pmd_huge_pte(mm, pmdp));
276 pmd_huge_pte(mm, pmdp) = pgtable;
9e695d2e
DM
277}
278
6b0b50b0 279pgtable_t pgtable_trans_huge_withdraw(struct mm_struct *mm, pmd_t *pmdp)
9e695d2e
DM
280{
281 struct list_head *lh;
282 pgtable_t pgtable;
283
284 assert_spin_locked(&mm->page_table_lock);
285
286 /* FIFO */
c389a250 287 pgtable = pmd_huge_pte(mm, pmdp);
9e695d2e
DM
288 lh = (struct list_head *) pgtable;
289 if (list_empty(lh))
c389a250 290 pmd_huge_pte(mm, pmdp) = NULL;
9e695d2e 291 else {
c389a250 292 pmd_huge_pte(mm, pmdp) = (pgtable_t) lh->next;
9e695d2e
DM
293 list_del(lh);
294 }
295 pte_val(pgtable[0]) = 0;
296 pte_val(pgtable[1]) = 0;
297
298 return pgtable;
1da177e4 299}
9e695d2e 300#endif /* CONFIG_TRANSPARENT_HUGEPAGE */