hugetlb.h 2.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/*
 *  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
17
#define hugepages_supported()			(MACHINE_HAS_HPAGE)
18 19 20

void set_huge_pte_at(struct mm_struct *mm, unsigned long addr,
		     pte_t *ptep, pte_t pte);
21 22 23
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);
24 25 26 27 28

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

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

41 42
static inline void huge_pte_clear(struct mm_struct *mm, unsigned long addr,
				  pte_t *ptep)
43
{
44
	pte_val(*ptep) = _SEGMENT_ENTRY_EMPTY;
45 46
}

47 48
static inline void huge_ptep_clear_flush(struct vm_area_struct *vma,
					 unsigned long address, pte_t *ptep)
49
{
50
	huge_ptep_get_and_clear(vma->vm_mm, address, ptep);
51 52
}

53 54 55
static inline int huge_ptep_set_access_flags(struct vm_area_struct *vma,
					     unsigned long addr, pte_t *ptep,
					     pte_t pte, int dirty)
56
{
57 58 59 60
	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);
61
	}
62
	return changed;
63 64
}

65 66
static inline void huge_ptep_set_wrprotect(struct mm_struct *mm,
					   unsigned long addr, pte_t *ptep)
67
{
68 69
	pte_t pte = huge_ptep_get_and_clear(mm, addr, ptep);
	set_huge_pte_at(mm, addr, ptep, pte_wrprotect(pte));
70 71
}

72
static inline pte_t mk_huge_pte(struct page *page, pgprot_t pgprot)
73
{
74
	return mk_pte(page, pgprot);
75 76
}

77
static inline int huge_pte_none(pte_t pte)
78
{
79
	return pte_none(pte);
80 81 82 83
}

static inline int huge_pte_write(pte_t pte)
{
84
	return pte_write(pte);
85 86 87 88
}

static inline int huge_pte_dirty(pte_t pte)
{
89
	return pte_dirty(pte);
90 91 92 93
}

static inline pte_t huge_pte_mkwrite(pte_t pte)
{
94
	return pte_mkwrite(pte);
95 96 97 98
}

static inline pte_t huge_pte_mkdirty(pte_t pte)
{
99
	return pte_mkdirty(pte);
100 101
}

102
static inline pte_t huge_pte_wrprotect(pte_t pte)
103
{
104
	return pte_wrprotect(pte);
105 106
}

107
static inline pte_t huge_pte_modify(pte_t pte, pgprot_t newprot)
108
{
109
	return pte_modify(pte, newprot);
110 111
}

112
#endif /* _ASM_S390_HUGETLB_H */