1 // SPDX-License-Identifier: GPL-2.0
3 * PARISC64 Huge TLB page support.
5 * This parisc implementation is heavily based on the SPARC and x86 code.
7 * Copyright (C) 2015 Helge Deller <deller@gmx.de>
12 #include <linux/sched/mm.h>
13 #include <linux/hugetlb.h>
14 #include <linux/pagemap.h>
15 #include <linux/sysctl.h>
18 #include <asm/pgalloc.h>
20 #include <asm/tlbflush.h>
21 #include <asm/cacheflush.h>
22 #include <asm/mmu_context.h>
26 hugetlb_get_unmapped_area(struct file
*file
, unsigned long addr
,
27 unsigned long len
, unsigned long pgoff
, unsigned long flags
)
29 struct hstate
*h
= hstate_file(file
);
31 if (len
& ~huge_page_mask(h
))
36 if (flags
& MAP_FIXED
)
37 if (prepare_hugepage_range(file
, addr
, len
))
41 addr
= ALIGN(addr
, huge_page_size(h
));
43 /* we need to make sure the colouring is OK */
44 return arch_get_unmapped_area(file
, addr
, len
, pgoff
, flags
);
48 pte_t
*huge_pte_alloc(struct mm_struct
*mm
,
49 unsigned long addr
, unsigned long sz
)
56 /* We must align the address, because our caller will run
57 * set_huge_pte_at() on whatever we return, which writes out
58 * all of the sub-ptes for the hugepage range. So we have
59 * to give it the first such sub-pte.
63 pgd
= pgd_offset(mm
, addr
);
64 pud
= pud_alloc(mm
, pgd
, addr
);
66 pmd
= pmd_alloc(mm
, pud
, addr
);
68 pte
= pte_alloc_map(mm
, pmd
, addr
);
73 pte_t
*huge_pte_offset(struct mm_struct
*mm
,
74 unsigned long addr
, unsigned long sz
)
83 pgd
= pgd_offset(mm
, addr
);
84 if (!pgd_none(*pgd
)) {
85 pud
= pud_offset(pgd
, addr
);
86 if (!pud_none(*pud
)) {
87 pmd
= pmd_offset(pud
, addr
);
89 pte
= pte_offset_map(pmd
, addr
);
95 /* Purge data and instruction TLB entries. Must be called holding
96 * the pa_tlb_lock. The TLB purge instructions are slow on SMP
97 * machines since the purge must be broadcast to all CPUs.
99 static inline void purge_tlb_entries_huge(struct mm_struct
*mm
, unsigned long addr
)
103 /* We may use multiple physical huge pages (e.g. 2x1 MB) to emulate
104 * Linux standard huge pages (e.g. 2 MB) */
105 BUILD_BUG_ON(REAL_HPAGE_SHIFT
> HPAGE_SHIFT
);
108 addr
|= _HUGE_PAGE_SIZE_ENCODING_DEFAULT
;
110 for (i
= 0; i
< (1 << (HPAGE_SHIFT
-REAL_HPAGE_SHIFT
)); i
++) {
111 purge_tlb_entries(mm
, addr
);
112 addr
+= (1UL << REAL_HPAGE_SHIFT
);
116 /* __set_huge_pte_at() must be called holding the pa_tlb_lock. */
117 static void __set_huge_pte_at(struct mm_struct
*mm
, unsigned long addr
,
118 pte_t
*ptep
, pte_t entry
)
120 unsigned long addr_start
;
126 for (i
= 0; i
< (1 << HUGETLB_PAGE_ORDER
); i
++) {
127 set_pte(ptep
, entry
);
131 pte_val(entry
) += PAGE_SIZE
;
134 purge_tlb_entries_huge(mm
, addr_start
);
137 void set_huge_pte_at(struct mm_struct
*mm
, unsigned long addr
,
138 pte_t
*ptep
, pte_t entry
)
142 purge_tlb_start(flags
);
143 __set_huge_pte_at(mm
, addr
, ptep
, entry
);
144 purge_tlb_end(flags
);
148 pte_t
huge_ptep_get_and_clear(struct mm_struct
*mm
, unsigned long addr
,
154 purge_tlb_start(flags
);
156 __set_huge_pte_at(mm
, addr
, ptep
, __pte(0));
157 purge_tlb_end(flags
);
163 void huge_ptep_set_wrprotect(struct mm_struct
*mm
,
164 unsigned long addr
, pte_t
*ptep
)
169 purge_tlb_start(flags
);
171 __set_huge_pte_at(mm
, addr
, ptep
, pte_wrprotect(old_pte
));
172 purge_tlb_end(flags
);
175 int huge_ptep_set_access_flags(struct vm_area_struct
*vma
,
176 unsigned long addr
, pte_t
*ptep
,
177 pte_t pte
, int dirty
)
182 purge_tlb_start(flags
);
183 changed
= !pte_same(*ptep
, pte
);
185 __set_huge_pte_at(vma
->vm_mm
, addr
, ptep
, pte
);
187 purge_tlb_end(flags
);
192 int pmd_huge(pmd_t pmd
)
197 int pud_huge(pud_t pud
)