7d27ea96ec2ff7f7e882aadc41b89aa042e56015
[linux-2.6-microblaze.git] / arch / s390 / include / asm / hugetlb.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3  *  IBM System z Huge TLB Page Support for Kernel.
4  *
5  *    Copyright IBM Corp. 2008
6  *    Author(s): Gerald Schaefer <gerald.schaefer@de.ibm.com>
7  */
8
9 #ifndef _ASM_S390_HUGETLB_H
10 #define _ASM_S390_HUGETLB_H
11
12 #include <asm/page.h>
13 #include <asm/pgtable.h>
14
15 #define hugetlb_free_pgd_range                  free_pgd_range
16 #define hugepages_supported()                   (MACHINE_HAS_EDAT1)
17
18 void set_huge_pte_at(struct mm_struct *mm, unsigned long addr,
19                      pte_t *ptep, pte_t pte);
20 pte_t huge_ptep_get(pte_t *ptep);
21 pte_t huge_ptep_get_and_clear(struct mm_struct *mm,
22                               unsigned long addr, pte_t *ptep);
23
24 /*
25  * If the arch doesn't supply something else, assume that hugepage
26  * size aligned regions are ok without further preparation.
27  */
28 static inline int prepare_hugepage_range(struct file *file,
29                         unsigned long addr, unsigned long len)
30 {
31         if (len & ~HPAGE_MASK)
32                 return -EINVAL;
33         if (addr & ~HPAGE_MASK)
34                 return -EINVAL;
35         return 0;
36 }
37
38 static inline void arch_clear_hugepage_flags(struct page *page)
39 {
40         clear_bit(PG_arch_1, &page->flags);
41 }
42
43 static inline void huge_pte_clear(struct mm_struct *mm, unsigned long addr,
44                                   pte_t *ptep, unsigned long sz)
45 {
46         if ((pte_val(*ptep) & _REGION_ENTRY_TYPE_MASK) == _REGION_ENTRY_TYPE_R3)
47                 pte_val(*ptep) = _REGION3_ENTRY_EMPTY;
48         else
49                 pte_val(*ptep) = _SEGMENT_ENTRY_EMPTY;
50 }
51
52 static inline void huge_ptep_clear_flush(struct vm_area_struct *vma,
53                                          unsigned long address, pte_t *ptep)
54 {
55         huge_ptep_get_and_clear(vma->vm_mm, address, ptep);
56 }
57
58 static inline int huge_ptep_set_access_flags(struct vm_area_struct *vma,
59                                              unsigned long addr, pte_t *ptep,
60                                              pte_t pte, int dirty)
61 {
62         int changed = !pte_same(huge_ptep_get(ptep), pte);
63         if (changed) {
64                 huge_ptep_get_and_clear(vma->vm_mm, addr, ptep);
65                 set_huge_pte_at(vma->vm_mm, addr, ptep, pte);
66         }
67         return changed;
68 }
69
70 static inline void huge_ptep_set_wrprotect(struct mm_struct *mm,
71                                            unsigned long addr, pte_t *ptep)
72 {
73         pte_t pte = huge_ptep_get_and_clear(mm, addr, ptep);
74         set_huge_pte_at(mm, addr, ptep, pte_wrprotect(pte));
75 }
76
77 static inline pte_t mk_huge_pte(struct page *page, pgprot_t pgprot)
78 {
79         return mk_pte(page, pgprot);
80 }
81
82 static inline int huge_pte_none(pte_t pte)
83 {
84         return pte_none(pte);
85 }
86
87 static inline int huge_pte_write(pte_t pte)
88 {
89         return pte_write(pte);
90 }
91
92 static inline int huge_pte_dirty(pte_t pte)
93 {
94         return pte_dirty(pte);
95 }
96
97 static inline pte_t huge_pte_mkwrite(pte_t pte)
98 {
99         return pte_mkwrite(pte);
100 }
101
102 static inline pte_t huge_pte_mkdirty(pte_t pte)
103 {
104         return pte_mkdirty(pte);
105 }
106
107 static inline pte_t huge_pte_wrprotect(pte_t pte)
108 {
109         return pte_wrprotect(pte);
110 }
111
112 static inline pte_t huge_pte_modify(pte_t pte, pgprot_t newprot)
113 {
114         return pte_modify(pte, newprot);
115 }
116
117 static inline bool gigantic_page_runtime_supported(void)
118 {
119         return true;
120 }
121
122 #endif /* _ASM_S390_HUGETLB_H */