hugetlb.h 2.8 KB
Newer Older
1
/* SPDX-License-Identifier: GPL-2.0 */
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/*
 *  IBM System z Huge TLB Page Support for Kernel.
 *
 *    Copyright IBM Corp. 2008
 *    Author(s): Gerald Schaefer <gerald.schaefer@de.ibm.com>
 */

#ifndef _ASM_S390_HUGETLB_H
#define _ASM_S390_HUGETLB_H

#include <asm/page.h>
#include <asm/pgtable.h>


#define is_hugepage_only_range(mm, addr, len)	0
#define hugetlb_free_pgd_range			free_pgd_range
18
#define hugepages_supported()			(MACHINE_HAS_EDAT1)
19 20 21

void set_huge_pte_at(struct mm_struct *mm, unsigned long addr,
		     pte_t *ptep, pte_t pte);
22 23 24
pte_t huge_ptep_get(pte_t *ptep);
pte_t huge_ptep_get_and_clear(struct mm_struct *mm,
			      unsigned long addr, pte_t *ptep);
25 26 27 28 29

/*
 * If the arch doesn't supply something else, assume that hugepage
 * size aligned regions are ok without further preparation.
 */
30 31
static inline int prepare_hugepage_range(struct file *file,
			unsigned long addr, unsigned long len)
32 33 34 35 36 37 38 39
{
	if (len & ~HPAGE_MASK)
		return -EINVAL;
	if (addr & ~HPAGE_MASK)
		return -EINVAL;
	return 0;
}

40
#define arch_clear_hugepage_flags(page)		do { } while (0)
41

42
static inline void huge_pte_clear(struct mm_struct *mm, unsigned long addr,
43
				  pte_t *ptep, unsigned long sz)
44
{
45 46 47 48
	if ((pte_val(*ptep) & _REGION_ENTRY_TYPE_MASK) == _REGION_ENTRY_TYPE_R3)
		pte_val(*ptep) = _REGION3_ENTRY_EMPTY;
	else
		pte_val(*ptep) = _SEGMENT_ENTRY_EMPTY;
49 50
}

51 52
static inline void huge_ptep_clear_flush(struct vm_area_struct *vma,
					 unsigned long address, pte_t *ptep)
53
{
54
	huge_ptep_get_and_clear(vma->vm_mm, address, ptep);
55 56
}

57 58 59
static inline int huge_ptep_set_access_flags(struct vm_area_struct *vma,
					     unsigned long addr, pte_t *ptep,
					     pte_t pte, int dirty)
60
{
61 62 63 64
	int changed = !pte_same(huge_ptep_get(ptep), pte);
	if (changed) {
		huge_ptep_get_and_clear(vma->vm_mm, addr, ptep);
		set_huge_pte_at(vma->vm_mm, addr, ptep, pte);
65
	}
66
	return changed;
67 68
}

69 70
static inline void huge_ptep_set_wrprotect(struct mm_struct *mm,
					   unsigned long addr, pte_t *ptep)
71
{
72 73
	pte_t pte = huge_ptep_get_and_clear(mm, addr, ptep);
	set_huge_pte_at(mm, addr, ptep, pte_wrprotect(pte));
74 75
}

76
static inline pte_t mk_huge_pte(struct page *page, pgprot_t pgprot)
77
{
78
	return mk_pte(page, pgprot);
79 80
}

81
static inline int huge_pte_none(pte_t pte)
82
{
83
	return pte_none(pte);
84 85 86 87
}

static inline int huge_pte_write(pte_t pte)
{
88
	return pte_write(pte);
89 90 91 92
}

static inline int huge_pte_dirty(pte_t pte)
{
93
	return pte_dirty(pte);
94 95 96 97
}

static inline pte_t huge_pte_mkwrite(pte_t pte)
{
98
	return pte_mkwrite(pte);
99 100 101 102
}

static inline pte_t huge_pte_mkdirty(pte_t pte)
{
103
	return pte_mkdirty(pte);
104 105
}

106
static inline pte_t huge_pte_wrprotect(pte_t pte)
107
{
108
	return pte_wrprotect(pte);
109 110
}

111
static inline pte_t huge_pte_modify(pte_t pte, pgprot_t newprot)
112
{
113
	return pte_modify(pte, newprot);
114 115
}

116 117 118
#ifdef CONFIG_ARCH_HAS_GIGANTIC_PAGE
static inline bool gigantic_page_supported(void) { return true; }
#endif
119
#endif /* _ASM_S390_HUGETLB_H */