hugetlb.h 5.6 KB
Newer Older
1 2 3
#ifndef _ASM_POWERPC_HUGETLB_H
#define _ASM_POWERPC_HUGETLB_H

B
Becky Bruce 已提交
4
#ifdef CONFIG_HUGETLB_PAGE
5
#include <asm/page.h>
6
#include <asm-generic/hugetlb.h>
7

B
Becky Bruce 已提交
8 9
extern struct kmem_cache *hugepte_cache;

10
#ifdef CONFIG_PPC_BOOK3S_64
11

12
#include <asm/book3s/64/hugetlb.h>
13 14 15 16 17 18 19 20 21 22 23
/*
 * This should work for other subarchs too. But right now we use the
 * new format only for 64bit book3s
 */
static inline pte_t *hugepd_page(hugepd_t hpd)
{
	BUG_ON(!hugepd_ok(hpd));
	/*
	 * We have only four bits to encode, MMU page size
	 */
	BUILD_BUG_ON((MMU_PAGE_COUNT - 1) > 0xf);
24
	return __va(hpd_val(hpd) & HUGEPD_ADDR_MASK);
25 26 27 28
}

static inline unsigned int hugepd_mmu_psize(hugepd_t hpd)
{
29
	return (hpd_val(hpd) & HUGEPD_SHIFT_MASK) >> 2;
30 31 32 33 34 35
}

static inline unsigned int hugepd_shift(hugepd_t hpd)
{
	return mmu_psize_to_shift(hugepd_mmu_psize(hpd));
}
36 37 38 39 40 41
static inline void flush_hugetlb_page(struct vm_area_struct *vma,
				      unsigned long vmaddr)
{
	if (radix_enabled())
		return radix__flush_hugetlb_page(vma, vmaddr);
}
42

43 44 45 46 47 48
static inline void __local_flush_hugetlb_page(struct vm_area_struct *vma,
					      unsigned long vmaddr)
{
	if (radix_enabled())
		return radix__local_flush_hugetlb_page(vma, vmaddr);
}
49 50
#else

B
Becky Bruce 已提交
51 52 53
static inline pte_t *hugepd_page(hugepd_t hpd)
{
	BUG_ON(!hugepd_ok(hpd));
54
#ifdef CONFIG_PPC_8xx
55 56
	return (pte_t *)__va(hpd_val(hpd) &
			     ~(_PMD_PAGE_MASK | _PMD_PRESENT_MASK));
57
#else
58 59
	return (pte_t *)((hpd_val(hpd) &
			  ~HUGEPD_SHIFT_MASK) | PD_HUGE);
60
#endif
B
Becky Bruce 已提交
61 62 63 64
}

static inline unsigned int hugepd_shift(hugepd_t hpd)
{
65
#ifdef CONFIG_PPC_8xx
66
	return ((hpd_val(hpd) & _PMD_PAGE_MASK) >> 1) + 17;
67
#else
68
	return hpd_val(hpd) & HUGEPD_SHIFT_MASK;
69
#endif
B
Becky Bruce 已提交
70 71
}

72 73 74
#endif /* CONFIG_PPC_BOOK3S_64 */


75
static inline pte_t *hugepte_offset(hugepd_t hpd, unsigned long addr,
B
Becky Bruce 已提交
76 77 78
				    unsigned pdshift)
{
	/*
79 80
	 * On FSL BookE, we have multiple higher-level table entries that
	 * point to the same hugepte.  Just use the first one since they're all
B
Becky Bruce 已提交
81 82 83 84
	 * identical.  So for that case, idx=0.
	 */
	unsigned long idx = 0;

85
	pte_t *dir = hugepd_page(hpd);
86
#ifndef CONFIG_PPC_FSL_BOOK3E
87
	idx = (addr & ((1UL << pdshift) - 1)) >> hugepd_shift(hpd);
B
Becky Bruce 已提交
88 89 90 91 92
#endif

	return dir + idx;
}

93 94 95
pte_t *huge_pte_offset_and_shift(struct mm_struct *mm,
				 unsigned long addr, unsigned *shift);

96 97
void flush_dcache_icache_hugepage(struct page *page);

98
#if defined(CONFIG_PPC_MM_SLICES)
99 100
int is_hugepage_only_range(struct mm_struct *mm, unsigned long addr,
			   unsigned long len);
B
Becky Bruce 已提交
101 102 103 104 105 106 107 108 109
#else
static inline int is_hugepage_only_range(struct mm_struct *mm,
					 unsigned long addr,
					 unsigned long len)
{
	return 0;
}
#endif

110 111
void book3e_hugetlb_preload(struct vm_area_struct *vma, unsigned long ea,
			    pte_t pte);
112 113 114 115 116 117 118
#ifdef CONFIG_PPC_8xx
static inline void flush_hugetlb_page(struct vm_area_struct *vma,
				      unsigned long vmaddr)
{
	flush_tlb_page(vma, vmaddr);
}
#else
B
Becky Bruce 已提交
119
void flush_hugetlb_page(struct vm_area_struct *vma, unsigned long vmaddr);
120
#endif
121

122
void hugetlb_free_pgd_range(struct mmu_gather *tlb, unsigned long addr,
123 124 125
			    unsigned long end, unsigned long floor,
			    unsigned long ceiling);

126 127 128 129 130 131
/*
 * The version of vma_mmu_pagesize() in arch/powerpc/mm/hugetlbpage.c needs
 * to override the version in mm/hugetlb.c
 */
#define vma_mmu_pagesize vma_mmu_pagesize

132 133 134 135
/*
 * If the arch doesn't supply something else, assume that hugepage
 * size aligned regions are ok without further preparation.
 */
136 137
static inline int prepare_hugepage_range(struct file *file,
			unsigned long addr, unsigned long len)
138
{
139 140
	struct hstate *h = hstate_file(file);
	if (len & ~huge_page_mask(h))
141
		return -EINVAL;
142
	if (addr & ~huge_page_mask(h))
143 144 145 146
		return -EINVAL;
	return 0;
}

147 148 149 150 151 152 153 154 155
static inline void set_huge_pte_at(struct mm_struct *mm, unsigned long addr,
				   pte_t *ptep, pte_t pte)
{
	set_pte_at(mm, addr, ptep, pte);
}

static inline pte_t huge_ptep_get_and_clear(struct mm_struct *mm,
					    unsigned long addr, pte_t *ptep)
{
B
Becky Bruce 已提交
156
#ifdef CONFIG_PPC64
157
	return __pte(pte_update(mm, addr, ptep, ~0UL, 0, 1));
B
Becky Bruce 已提交
158 159 160
#else
	return __pte(pte_update(ptep, ~0UL, 0));
#endif
161 162
}

163 164 165
static inline void huge_ptep_clear_flush(struct vm_area_struct *vma,
					 unsigned long addr, pte_t *ptep)
{
166 167
	pte_t pte;
	pte = huge_ptep_get_and_clear(vma->vm_mm, addr, ptep);
168
	flush_hugetlb_page(vma, addr);
169 170
}

171 172 173 174 175 176 177 178 179 180 181 182 183 184
static inline int huge_pte_none(pte_t pte)
{
	return pte_none(pte);
}

static inline pte_t huge_pte_wrprotect(pte_t pte)
{
	return pte_wrprotect(pte);
}

static inline int huge_ptep_set_access_flags(struct vm_area_struct *vma,
					     unsigned long addr, pte_t *ptep,
					     pte_t pte, int dirty)
{
185
#ifdef HUGETLB_NEED_PRELOAD
186 187 188 189 190 191 192 193
	/*
	 * The "return 1" forces a call of update_mmu_cache, which will write a
	 * TLB entry.  Without this, platforms that don't do a write of the TLB
	 * entry in the TLB miss handler asm will fault ad infinitum.
	 */
	ptep_set_access_flags(vma, addr, ptep, pte, dirty);
	return 1;
#else
194
	return ptep_set_access_flags(vma, addr, ptep, pte, dirty);
195
#endif
196 197 198 199 200 201 202
}

static inline pte_t huge_ptep_get(pte_t *ptep)
{
	return *ptep;
}

203 204 205 206
static inline void arch_clear_hugepage_flags(struct page *page)
{
}

B
Becky Bruce 已提交
207 208 209 210 211
#else /* ! CONFIG_HUGETLB_PAGE */
static inline void flush_hugetlb_page(struct vm_area_struct *vma,
				      unsigned long vmaddr)
{
}
212

213
#define hugepd_shift(x) 0
214
static inline pte_t *hugepte_offset(hugepd_t hpd, unsigned long addr,
215 216 217 218 219
				    unsigned pdshift)
{
	return 0;
}
#endif /* CONFIG_HUGETLB_PAGE */
220 221 222 223 224 225

/*
 * FSL Book3E platforms require special gpage handling - the gpages
 * are reserved early in the boot process by memblock instead of via
 * the .dts as on IBM platforms.
 */
226 227
#if defined(CONFIG_HUGETLB_PAGE) && (defined(CONFIG_PPC_FSL_BOOK3E) || \
    defined(CONFIG_PPC_8xx))
228 229 230 231 232
extern void __init reserve_hugetlb_gpages(void);
#else
static inline void reserve_hugetlb_gpages(void)
{
}
B
Becky Bruce 已提交
233 234
#endif

235
#endif /* _ASM_POWERPC_HUGETLB_H */