blob: 555044c310b2accd23aff1d66154a71c4af69f4d [file] [log] [blame]
Gerald Schaefer6d779072008-04-28 02:13:27 -07001#ifndef _ASM_POWERPC_HUGETLB_H
2#define _ASM_POWERPC_HUGETLB_H
3
Becky Bruce41151e72011-06-28 09:54:48 +00004#ifdef CONFIG_HUGETLB_PAGE
Gerald Schaefer6d779072008-04-28 02:13:27 -07005#include <asm/page.h>
6
Becky Bruce41151e72011-06-28 09:54:48 +00007extern struct kmem_cache *hugepte_cache;
Becky Bruce41151e72011-06-28 09:54:48 +00008
9static inline pte_t *hugepd_page(hugepd_t hpd)
10{
11 BUG_ON(!hugepd_ok(hpd));
12 return (pte_t *)((hpd.pd & ~HUGEPD_SHIFT_MASK) | PD_HUGE);
13}
14
15static inline unsigned int hugepd_shift(hugepd_t hpd)
16{
17 return hpd.pd & HUGEPD_SHIFT_MASK;
18}
19
20static inline pte_t *hugepte_offset(hugepd_t *hpdp, unsigned long addr,
21 unsigned pdshift)
22{
23 /*
Becky Bruce881fde12011-10-10 10:50:40 +000024 * On FSL BookE, we have multiple higher-level table entries that
25 * point to the same hugepte. Just use the first one since they're all
Becky Bruce41151e72011-06-28 09:54:48 +000026 * identical. So for that case, idx=0.
27 */
28 unsigned long idx = 0;
29
30 pte_t *dir = hugepd_page(*hpdp);
Becky Bruce881fde12011-10-10 10:50:40 +000031#ifndef CONFIG_PPC_FSL_BOOK3E
Becky Bruce41151e72011-06-28 09:54:48 +000032 idx = (addr & ((1UL << pdshift) - 1)) >> hugepd_shift(*hpdp);
33#endif
34
35 return dir + idx;
36}
37
David Gibson883a3e52009-10-26 19:24:31 +000038pte_t *huge_pte_offset_and_shift(struct mm_struct *mm,
39 unsigned long addr, unsigned *shift);
40
David Gibson0895ecd2009-10-26 19:24:31 +000041void flush_dcache_icache_hugepage(struct page *page);
42
Becky Bruce41151e72011-06-28 09:54:48 +000043#if defined(CONFIG_PPC_MM_SLICES) || defined(CONFIG_PPC_SUBPAGE_PROT)
Gerald Schaefer6d779072008-04-28 02:13:27 -070044int is_hugepage_only_range(struct mm_struct *mm, unsigned long addr,
45 unsigned long len);
Becky Bruce41151e72011-06-28 09:54:48 +000046#else
47static inline int is_hugepage_only_range(struct mm_struct *mm,
48 unsigned long addr,
49 unsigned long len)
50{
51 return 0;
52}
53#endif
54
55void book3e_hugetlb_preload(struct mm_struct *mm, unsigned long ea, pte_t pte);
56void flush_hugetlb_page(struct vm_area_struct *vma, unsigned long vmaddr);
Gerald Schaefer6d779072008-04-28 02:13:27 -070057
Jan Beulich42b77722008-07-23 21:27:10 -070058void hugetlb_free_pgd_range(struct mmu_gather *tlb, unsigned long addr,
Gerald Schaefer6d779072008-04-28 02:13:27 -070059 unsigned long end, unsigned long floor,
60 unsigned long ceiling);
61
Gerald Schaefer6d779072008-04-28 02:13:27 -070062/*
Mel Gorman33402892009-01-06 14:38:54 -080063 * The version of vma_mmu_pagesize() in arch/powerpc/mm/hugetlbpage.c needs
64 * to override the version in mm/hugetlb.c
65 */
66#define vma_mmu_pagesize vma_mmu_pagesize
67
68/*
Gerald Schaefer6d779072008-04-28 02:13:27 -070069 * If the arch doesn't supply something else, assume that hugepage
70 * size aligned regions are ok without further preparation.
71 */
Andi Kleena5516432008-07-23 21:27:41 -070072static inline int prepare_hugepage_range(struct file *file,
73 unsigned long addr, unsigned long len)
Gerald Schaefer6d779072008-04-28 02:13:27 -070074{
Jon Tollefson0d9ea752008-07-23 21:27:56 -070075 struct hstate *h = hstate_file(file);
76 if (len & ~huge_page_mask(h))
Gerald Schaefer6d779072008-04-28 02:13:27 -070077 return -EINVAL;
Jon Tollefson0d9ea752008-07-23 21:27:56 -070078 if (addr & ~huge_page_mask(h))
Gerald Schaefer6d779072008-04-28 02:13:27 -070079 return -EINVAL;
80 return 0;
81}
82
83static inline void hugetlb_prefault_arch_hook(struct mm_struct *mm)
84{
85}
86
David Gibson0895ecd2009-10-26 19:24:31 +000087
88static inline void set_huge_pte_at(struct mm_struct *mm, unsigned long addr,
89 pte_t *ptep, pte_t pte)
90{
91 set_pte_at(mm, addr, ptep, pte);
92}
93
94static inline pte_t huge_ptep_get_and_clear(struct mm_struct *mm,
95 unsigned long addr, pte_t *ptep)
96{
Becky Bruce41151e72011-06-28 09:54:48 +000097#ifdef CONFIG_PPC64
98 return __pte(pte_update(mm, addr, ptep, ~0UL, 1));
99#else
100 return __pte(pte_update(ptep, ~0UL, 0));
101#endif
David Gibson0895ecd2009-10-26 19:24:31 +0000102}
103
Gerald Schaefer8fe627e2008-04-28 02:13:28 -0700104static inline void huge_ptep_clear_flush(struct vm_area_struct *vma,
105 unsigned long addr, pte_t *ptep)
106{
David Gibson0895ecd2009-10-26 19:24:31 +0000107 pte_t pte;
108 pte = huge_ptep_get_and_clear(vma->vm_mm, addr, ptep);
109 flush_tlb_page(vma, addr);
Gerald Schaefer8fe627e2008-04-28 02:13:28 -0700110}
111
Gerald Schaefer7f2e9522008-04-28 02:13:29 -0700112static inline int huge_pte_none(pte_t pte)
113{
114 return pte_none(pte);
115}
116
117static inline pte_t huge_pte_wrprotect(pte_t pte)
118{
119 return pte_wrprotect(pte);
120}
121
Gerald Schaefer7f2e9522008-04-28 02:13:29 -0700122static inline int huge_ptep_set_access_flags(struct vm_area_struct *vma,
123 unsigned long addr, pte_t *ptep,
124 pte_t pte, int dirty)
125{
Becky Bruce97632e62011-10-10 10:50:37 +0000126#if defined(CONFIG_PPC_MMU_NOHASH) && \
127 !(defined(CONFIG_PPC_FSL_BOOK3E) && defined(CONFIG_PPC32))
128 /*
129 * The "return 1" forces a call of update_mmu_cache, which will write a
130 * TLB entry. Without this, platforms that don't do a write of the TLB
131 * entry in the TLB miss handler asm will fault ad infinitum.
132 */
133 ptep_set_access_flags(vma, addr, ptep, pte, dirty);
134 return 1;
135#else
Gerald Schaefer7f2e9522008-04-28 02:13:29 -0700136 return ptep_set_access_flags(vma, addr, ptep, pte, dirty);
Becky Bruce97632e62011-10-10 10:50:37 +0000137#endif
Gerald Schaefer7f2e9522008-04-28 02:13:29 -0700138}
139
140static inline pte_t huge_ptep_get(pte_t *ptep)
141{
142 return *ptep;
143}
144
145static inline int arch_prepare_hugepage(struct page *page)
146{
147 return 0;
148}
149
150static inline void arch_release_hugepage(struct page *page)
151{
152}
153
Becky Bruce41151e72011-06-28 09:54:48 +0000154#else /* ! CONFIG_HUGETLB_PAGE */
Becky Bruce41151e72011-06-28 09:54:48 +0000155static inline void flush_hugetlb_page(struct vm_area_struct *vma,
156 unsigned long vmaddr)
157{
158}
Becky Brucea6146882011-10-10 10:50:43 +0000159#endif /* CONFIG_HUGETLB_PAGE */
160
161
162/*
163 * FSL Book3E platforms require special gpage handling - the gpages
164 * are reserved early in the boot process by memblock instead of via
165 * the .dts as on IBM platforms.
166 */
167#if defined(CONFIG_HUGETLB_PAGE) && defined(CONFIG_PPC_FSL_BOOK3E)
168extern void __init reserve_hugetlb_gpages(void);
169#else
170static inline void reserve_hugetlb_gpages(void)
171{
172}
Becky Bruce41151e72011-06-28 09:54:48 +0000173#endif
174
Gerald Schaefer6d779072008-04-28 02:13:27 -0700175#endif /* _ASM_POWERPC_HUGETLB_H */