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