GNU Linux-libre 4.19.286-gnu1
[releases.git] / arch / arm64 / mm / hugetlbpage.c
1 /*
2  * arch/arm64/mm/hugetlbpage.c
3  *
4  * Copyright (C) 2013 Linaro Ltd.
5  *
6  * Based on arch/x86/mm/hugetlbpage.c.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 as
10  * published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  */
17
18 #include <linux/init.h>
19 #include <linux/fs.h>
20 #include <linux/mm.h>
21 #include <linux/hugetlb.h>
22 #include <linux/pagemap.h>
23 #include <linux/err.h>
24 #include <linux/sysctl.h>
25 #include <asm/mman.h>
26 #include <asm/tlb.h>
27 #include <asm/tlbflush.h>
28 #include <asm/pgalloc.h>
29
30 int pmd_huge(pmd_t pmd)
31 {
32         return pmd_val(pmd) && !(pmd_val(pmd) & PMD_TABLE_BIT);
33 }
34
35 int pud_huge(pud_t pud)
36 {
37 #ifndef __PAGETABLE_PMD_FOLDED
38         return pud_val(pud) && !(pud_val(pud) & PUD_TABLE_BIT);
39 #else
40         return 0;
41 #endif
42 }
43
44 /*
45  * Select all bits except the pfn
46  */
47 static inline pgprot_t pte_pgprot(pte_t pte)
48 {
49         unsigned long pfn = pte_pfn(pte);
50
51         return __pgprot(pte_val(pfn_pte(pfn, __pgprot(0))) ^ pte_val(pte));
52 }
53
54 static int find_num_contig(struct mm_struct *mm, unsigned long addr,
55                            pte_t *ptep, size_t *pgsize)
56 {
57         pgd_t *pgdp = pgd_offset(mm, addr);
58         pud_t *pudp;
59         pmd_t *pmdp;
60
61         *pgsize = PAGE_SIZE;
62         pudp = pud_offset(pgdp, addr);
63         pmdp = pmd_offset(pudp, addr);
64         if ((pte_t *)pmdp == ptep) {
65                 *pgsize = PMD_SIZE;
66                 return CONT_PMDS;
67         }
68         return CONT_PTES;
69 }
70
71 static inline int num_contig_ptes(unsigned long size, size_t *pgsize)
72 {
73         int contig_ptes = 0;
74
75         *pgsize = size;
76
77         switch (size) {
78 #ifdef CONFIG_ARM64_4K_PAGES
79         case PUD_SIZE:
80 #endif
81         case PMD_SIZE:
82                 contig_ptes = 1;
83                 break;
84         case CONT_PMD_SIZE:
85                 *pgsize = PMD_SIZE;
86                 contig_ptes = CONT_PMDS;
87                 break;
88         case CONT_PTE_SIZE:
89                 *pgsize = PAGE_SIZE;
90                 contig_ptes = CONT_PTES;
91                 break;
92         }
93
94         return contig_ptes;
95 }
96
97 /*
98  * Changing some bits of contiguous entries requires us to follow a
99  * Break-Before-Make approach, breaking the whole contiguous set
100  * before we can change any entries. See ARM DDI 0487A.k_iss10775,
101  * "Misprogramming of the Contiguous bit", page D4-1762.
102  *
103  * This helper performs the break step.
104  */
105 static pte_t get_clear_flush(struct mm_struct *mm,
106                              unsigned long addr,
107                              pte_t *ptep,
108                              unsigned long pgsize,
109                              unsigned long ncontig)
110 {
111         pte_t orig_pte = huge_ptep_get(ptep);
112         bool valid = pte_valid(orig_pte);
113         unsigned long i, saddr = addr;
114
115         for (i = 0; i < ncontig; i++, addr += pgsize, ptep++) {
116                 pte_t pte = ptep_get_and_clear(mm, addr, ptep);
117
118                 /*
119                  * If HW_AFDBM is enabled, then the HW could turn on
120                  * the dirty or accessed bit for any page in the set,
121                  * so check them all.
122                  */
123                 if (pte_dirty(pte))
124                         orig_pte = pte_mkdirty(orig_pte);
125
126                 if (pte_young(pte))
127                         orig_pte = pte_mkyoung(orig_pte);
128         }
129
130         if (valid) {
131                 struct vm_area_struct vma = TLB_FLUSH_VMA(mm, 0);
132                 flush_tlb_range(&vma, saddr, addr);
133         }
134         return orig_pte;
135 }
136
137 /*
138  * Changing some bits of contiguous entries requires us to follow a
139  * Break-Before-Make approach, breaking the whole contiguous set
140  * before we can change any entries. See ARM DDI 0487A.k_iss10775,
141  * "Misprogramming of the Contiguous bit", page D4-1762.
142  *
143  * This helper performs the break step for use cases where the
144  * original pte is not needed.
145  */
146 static void clear_flush(struct mm_struct *mm,
147                              unsigned long addr,
148                              pte_t *ptep,
149                              unsigned long pgsize,
150                              unsigned long ncontig)
151 {
152         struct vm_area_struct vma = TLB_FLUSH_VMA(mm, 0);
153         unsigned long i, saddr = addr;
154
155         for (i = 0; i < ncontig; i++, addr += pgsize, ptep++)
156                 pte_clear(mm, addr, ptep);
157
158         flush_tlb_range(&vma, saddr, addr);
159 }
160
161 void set_huge_pte_at(struct mm_struct *mm, unsigned long addr,
162                             pte_t *ptep, pte_t pte)
163 {
164         size_t pgsize;
165         int i;
166         int ncontig;
167         unsigned long pfn, dpfn;
168         pgprot_t hugeprot;
169
170         /*
171          * Code needs to be expanded to handle huge swap and migration
172          * entries. Needed for HUGETLB and MEMORY_FAILURE.
173          */
174         WARN_ON(!pte_present(pte));
175
176         if (!pte_cont(pte)) {
177                 set_pte_at(mm, addr, ptep, pte);
178                 return;
179         }
180
181         ncontig = find_num_contig(mm, addr, ptep, &pgsize);
182         pfn = pte_pfn(pte);
183         dpfn = pgsize >> PAGE_SHIFT;
184         hugeprot = pte_pgprot(pte);
185
186         clear_flush(mm, addr, ptep, pgsize, ncontig);
187
188         for (i = 0; i < ncontig; i++, ptep++, addr += pgsize, pfn += dpfn)
189                 set_pte_at(mm, addr, ptep, pfn_pte(pfn, hugeprot));
190 }
191
192 void set_huge_swap_pte_at(struct mm_struct *mm, unsigned long addr,
193                           pte_t *ptep, pte_t pte, unsigned long sz)
194 {
195         int i, ncontig;
196         size_t pgsize;
197
198         ncontig = num_contig_ptes(sz, &pgsize);
199
200         for (i = 0; i < ncontig; i++, ptep++)
201                 set_pte(ptep, pte);
202 }
203
204 pte_t *huge_pte_alloc(struct mm_struct *mm,
205                       unsigned long addr, unsigned long sz)
206 {
207         pgd_t *pgdp;
208         pud_t *pudp;
209         pmd_t *pmdp;
210         pte_t *ptep = NULL;
211
212         pgdp = pgd_offset(mm, addr);
213         pudp = pud_alloc(mm, pgdp, addr);
214         if (!pudp)
215                 return NULL;
216
217         if (sz == PUD_SIZE) {
218                 ptep = (pte_t *)pudp;
219         } else if (sz == (PAGE_SIZE * CONT_PTES)) {
220                 pmdp = pmd_alloc(mm, pudp, addr);
221                 if (!pmdp)
222                         return NULL;
223
224                 WARN_ON(addr & (sz - 1));
225                 /*
226                  * Note that if this code were ever ported to the
227                  * 32-bit arm platform then it will cause trouble in
228                  * the case where CONFIG_HIGHPTE is set, since there
229                  * will be no pte_unmap() to correspond with this
230                  * pte_alloc_map().
231                  */
232                 ptep = pte_alloc_map(mm, pmdp, addr);
233         } else if (sz == PMD_SIZE) {
234                 if (IS_ENABLED(CONFIG_ARCH_WANT_HUGE_PMD_SHARE) &&
235                     pud_none(READ_ONCE(*pudp)))
236                         ptep = huge_pmd_share(mm, addr, pudp);
237                 else
238                         ptep = (pte_t *)pmd_alloc(mm, pudp, addr);
239         } else if (sz == (PMD_SIZE * CONT_PMDS)) {
240                 pmdp = pmd_alloc(mm, pudp, addr);
241                 WARN_ON(addr & (sz - 1));
242                 return (pte_t *)pmdp;
243         }
244
245         return ptep;
246 }
247
248 pte_t *huge_pte_offset(struct mm_struct *mm,
249                        unsigned long addr, unsigned long sz)
250 {
251         pgd_t *pgdp;
252         pud_t *pudp, pud;
253         pmd_t *pmdp, pmd;
254
255         pgdp = pgd_offset(mm, addr);
256         if (!pgd_present(READ_ONCE(*pgdp)))
257                 return NULL;
258
259         pudp = pud_offset(pgdp, addr);
260         pud = READ_ONCE(*pudp);
261         if (sz != PUD_SIZE && pud_none(pud))
262                 return NULL;
263         /* hugepage or swap? */
264         if (pud_huge(pud) || !pud_present(pud))
265                 return (pte_t *)pudp;
266         /* table; check the next level */
267
268         if (sz == CONT_PMD_SIZE)
269                 addr &= CONT_PMD_MASK;
270
271         pmdp = pmd_offset(pudp, addr);
272         pmd = READ_ONCE(*pmdp);
273         if (!(sz == PMD_SIZE || sz == CONT_PMD_SIZE) &&
274             pmd_none(pmd))
275                 return NULL;
276         if (pmd_huge(pmd) || !pmd_present(pmd))
277                 return (pte_t *)pmdp;
278
279         if (sz == CONT_PTE_SIZE)
280                 return pte_offset_kernel(pmdp, (addr & CONT_PTE_MASK));
281
282         return NULL;
283 }
284
285 pte_t arch_make_huge_pte(pte_t entry, struct vm_area_struct *vma,
286                          struct page *page, int writable)
287 {
288         size_t pagesize = huge_page_size(hstate_vma(vma));
289
290         if (pagesize == CONT_PTE_SIZE) {
291                 entry = pte_mkcont(entry);
292         } else if (pagesize == CONT_PMD_SIZE) {
293                 entry = pmd_pte(pmd_mkcont(pte_pmd(entry)));
294         } else if (pagesize != PUD_SIZE && pagesize != PMD_SIZE) {
295                 pr_warn("%s: unrecognized huge page size 0x%lx\n",
296                         __func__, pagesize);
297         }
298         return entry;
299 }
300
301 void huge_pte_clear(struct mm_struct *mm, unsigned long addr,
302                     pte_t *ptep, unsigned long sz)
303 {
304         int i, ncontig;
305         size_t pgsize;
306
307         ncontig = num_contig_ptes(sz, &pgsize);
308
309         for (i = 0; i < ncontig; i++, addr += pgsize, ptep++)
310                 pte_clear(mm, addr, ptep);
311 }
312
313 pte_t huge_ptep_get_and_clear(struct mm_struct *mm,
314                               unsigned long addr, pte_t *ptep)
315 {
316         int ncontig;
317         size_t pgsize;
318         pte_t orig_pte = huge_ptep_get(ptep);
319
320         if (!pte_cont(orig_pte))
321                 return ptep_get_and_clear(mm, addr, ptep);
322
323         ncontig = find_num_contig(mm, addr, ptep, &pgsize);
324
325         return get_clear_flush(mm, addr, ptep, pgsize, ncontig);
326 }
327
328 /*
329  * huge_ptep_set_access_flags will update access flags (dirty, accesssed)
330  * and write permission.
331  *
332  * For a contiguous huge pte range we need to check whether or not write
333  * permission has to change only on the first pte in the set. Then for
334  * all the contiguous ptes we need to check whether or not there is a
335  * discrepancy between dirty or young.
336  */
337 static int __cont_access_flags_changed(pte_t *ptep, pte_t pte, int ncontig)
338 {
339         int i;
340
341         if (pte_write(pte) != pte_write(huge_ptep_get(ptep)))
342                 return 1;
343
344         for (i = 0; i < ncontig; i++) {
345                 pte_t orig_pte = huge_ptep_get(ptep + i);
346
347                 if (pte_dirty(pte) != pte_dirty(orig_pte))
348                         return 1;
349
350                 if (pte_young(pte) != pte_young(orig_pte))
351                         return 1;
352         }
353
354         return 0;
355 }
356
357 int huge_ptep_set_access_flags(struct vm_area_struct *vma,
358                                unsigned long addr, pte_t *ptep,
359                                pte_t pte, int dirty)
360 {
361         int ncontig, i;
362         size_t pgsize = 0;
363         unsigned long pfn = pte_pfn(pte), dpfn;
364         pgprot_t hugeprot;
365         pte_t orig_pte;
366
367         if (!pte_cont(pte))
368                 return ptep_set_access_flags(vma, addr, ptep, pte, dirty);
369
370         ncontig = find_num_contig(vma->vm_mm, addr, ptep, &pgsize);
371         dpfn = pgsize >> PAGE_SHIFT;
372
373         if (!__cont_access_flags_changed(ptep, pte, ncontig))
374                 return 0;
375
376         orig_pte = get_clear_flush(vma->vm_mm, addr, ptep, pgsize, ncontig);
377
378         /* Make sure we don't lose the dirty or young state */
379         if (pte_dirty(orig_pte))
380                 pte = pte_mkdirty(pte);
381
382         if (pte_young(orig_pte))
383                 pte = pte_mkyoung(pte);
384
385         hugeprot = pte_pgprot(pte);
386         for (i = 0; i < ncontig; i++, ptep++, addr += pgsize, pfn += dpfn)
387                 set_pte_at(vma->vm_mm, addr, ptep, pfn_pte(pfn, hugeprot));
388
389         return 1;
390 }
391
392 void huge_ptep_set_wrprotect(struct mm_struct *mm,
393                              unsigned long addr, pte_t *ptep)
394 {
395         unsigned long pfn, dpfn;
396         pgprot_t hugeprot;
397         int ncontig, i;
398         size_t pgsize;
399         pte_t pte;
400
401         if (!pte_cont(READ_ONCE(*ptep))) {
402                 ptep_set_wrprotect(mm, addr, ptep);
403                 return;
404         }
405
406         ncontig = find_num_contig(mm, addr, ptep, &pgsize);
407         dpfn = pgsize >> PAGE_SHIFT;
408
409         pte = get_clear_flush(mm, addr, ptep, pgsize, ncontig);
410         pte = pte_wrprotect(pte);
411
412         hugeprot = pte_pgprot(pte);
413         pfn = pte_pfn(pte);
414
415         for (i = 0; i < ncontig; i++, ptep++, addr += pgsize, pfn += dpfn)
416                 set_pte_at(mm, addr, ptep, pfn_pte(pfn, hugeprot));
417 }
418
419 void huge_ptep_clear_flush(struct vm_area_struct *vma,
420                            unsigned long addr, pte_t *ptep)
421 {
422         size_t pgsize;
423         int ncontig;
424
425         if (!pte_cont(READ_ONCE(*ptep))) {
426                 ptep_clear_flush(vma, addr, ptep);
427                 return;
428         }
429
430         ncontig = find_num_contig(vma->vm_mm, addr, ptep, &pgsize);
431         clear_flush(vma->vm_mm, addr, ptep, pgsize, ncontig);
432 }
433
434 static __init int setup_hugepagesz(char *opt)
435 {
436         unsigned long ps = memparse(opt, &opt);
437
438         switch (ps) {
439 #ifdef CONFIG_ARM64_4K_PAGES
440         case PUD_SIZE:
441 #endif
442         case PMD_SIZE * CONT_PMDS:
443         case PMD_SIZE:
444         case PAGE_SIZE * CONT_PTES:
445                 hugetlb_add_hstate(ilog2(ps) - PAGE_SHIFT);
446                 return 1;
447         }
448
449         hugetlb_bad_size();
450         pr_err("hugepagesz: Unsupported page size %lu K\n", ps >> 10);
451         return 0;
452 }
453 __setup("hugepagesz=", setup_hugepagesz);
454
455 #ifdef CONFIG_ARM64_64K_PAGES
456 static __init int add_default_hugepagesz(void)
457 {
458         if (size_to_hstate(CONT_PTES * PAGE_SIZE) == NULL)
459                 hugetlb_add_hstate(CONT_PTE_SHIFT);
460         return 0;
461 }
462 arch_initcall(add_default_hugepagesz);
463 #endif