powerpc/mm/hugetlb: Add support for reserving gigantic huge pages via kernel command...
[linux-2.6-block.git] / arch / powerpc / include / asm / hugetlb.h
CommitLineData
6d779079
GS
1#ifndef _ASM_POWERPC_HUGETLB_H
2#define _ASM_POWERPC_HUGETLB_H
3
41151e77 4#ifdef CONFIG_HUGETLB_PAGE
6d779079 5#include <asm/page.h>
106c992a 6#include <asm-generic/hugetlb.h>
6d779079 7
41151e77 8extern struct kmem_cache *hugepte_cache;
41151e77 9
cf9427b8 10#ifdef CONFIG_PPC_BOOK3S_64
48483760 11
bee8b3b5 12#include <asm/book3s/64/hugetlb.h>
cf9427b8
AK
13/*
14 * This should work for other subarchs too. But right now we use the
15 * new format only for 64bit book3s
16 */
17static inline pte_t *hugepd_page(hugepd_t hpd)
18{
19 BUG_ON(!hugepd_ok(hpd));
20 /*
21 * We have only four bits to encode, MMU page size
22 */
23 BUILD_BUG_ON((MMU_PAGE_COUNT - 1) > 0xf);
20717e1f 24 return __va(hpd_val(hpd) & HUGEPD_ADDR_MASK);
cf9427b8
AK
25}
26
27static inline unsigned int hugepd_mmu_psize(hugepd_t hpd)
28{
20717e1f 29 return (hpd_val(hpd) & HUGEPD_SHIFT_MASK) >> 2;
cf9427b8
AK
30}
31
32static inline unsigned int hugepd_shift(hugepd_t hpd)
33{
34 return mmu_psize_to_shift(hugepd_mmu_psize(hpd));
35}
48483760
AK
36static inline void flush_hugetlb_page(struct vm_area_struct *vma,
37 unsigned long vmaddr)
38{
39 if (radix_enabled())
40 return radix__flush_hugetlb_page(vma, vmaddr);
41}
cf9427b8 42
48483760
AK
43static inline void __local_flush_hugetlb_page(struct vm_area_struct *vma,
44 unsigned long vmaddr)
45{
46 if (radix_enabled())
47 return radix__local_flush_hugetlb_page(vma, vmaddr);
48}
cf9427b8
AK
49#else
50
41151e77
BB
51static inline pte_t *hugepd_page(hugepd_t hpd)
52{
53 BUG_ON(!hugepd_ok(hpd));
4b914286 54#ifdef CONFIG_PPC_8xx
20717e1f
AK
55 return (pte_t *)__va(hpd_val(hpd) &
56 ~(_PMD_PAGE_MASK | _PMD_PRESENT_MASK));
4b914286 57#else
20717e1f
AK
58 return (pte_t *)((hpd_val(hpd) &
59 ~HUGEPD_SHIFT_MASK) | PD_HUGE);
4b914286 60#endif
41151e77
BB
61}
62
63static inline unsigned int hugepd_shift(hugepd_t hpd)
64{
4b914286 65#ifdef CONFIG_PPC_8xx
20717e1f 66 return ((hpd_val(hpd) & _PMD_PAGE_MASK) >> 1) + 17;
4b914286 67#else
20717e1f 68 return hpd_val(hpd) & HUGEPD_SHIFT_MASK;
4b914286 69#endif
41151e77
BB
70}
71
cf9427b8
AK
72#endif /* CONFIG_PPC_BOOK3S_64 */
73
74
b30e7590 75static inline pte_t *hugepte_offset(hugepd_t hpd, unsigned long addr,
41151e77
BB
76 unsigned pdshift)
77{
78 /*
881fde1d
BB
79 * On FSL BookE, we have multiple higher-level table entries that
80 * point to the same hugepte. Just use the first one since they're all
41151e77
BB
81 * identical. So for that case, idx=0.
82 */
83 unsigned long idx = 0;
84
b30e7590 85 pte_t *dir = hugepd_page(hpd);
881fde1d 86#ifndef CONFIG_PPC_FSL_BOOK3E
b30e7590 87 idx = (addr & ((1UL << pdshift) - 1)) >> hugepd_shift(hpd);
41151e77
BB
88#endif
89
90 return dir + idx;
91}
92
883a3e52
DG
93pte_t *huge_pte_offset_and_shift(struct mm_struct *mm,
94 unsigned long addr, unsigned *shift);
95
0895ecda
DG
96void flush_dcache_icache_hugepage(struct page *page);
97
ca5f1d16 98#if defined(CONFIG_PPC_MM_SLICES)
6d779079
GS
99int is_hugepage_only_range(struct mm_struct *mm, unsigned long addr,
100 unsigned long len);
41151e77
BB
101#else
102static inline int is_hugepage_only_range(struct mm_struct *mm,
103 unsigned long addr,
104 unsigned long len)
105{
106 return 0;
107}
108#endif
109
d93e4d7d
BB
110void book3e_hugetlb_preload(struct vm_area_struct *vma, unsigned long ea,
111 pte_t pte);
4b914286
CL
112#ifdef CONFIG_PPC_8xx
113static inline void flush_hugetlb_page(struct vm_area_struct *vma,
114 unsigned long vmaddr)
115{
116 flush_tlb_page(vma, vmaddr);
117}
118#else
41151e77 119void flush_hugetlb_page(struct vm_area_struct *vma, unsigned long vmaddr);
4b914286 120#endif
6d779079 121
42b77728 122void hugetlb_free_pgd_range(struct mmu_gather *tlb, unsigned long addr,
6d779079
GS
123 unsigned long end, unsigned long floor,
124 unsigned long ceiling);
125
3340289d
MG
126/*
127 * The version of vma_mmu_pagesize() in arch/powerpc/mm/hugetlbpage.c needs
128 * to override the version in mm/hugetlb.c
129 */
130#define vma_mmu_pagesize vma_mmu_pagesize
131
6d779079
GS
132/*
133 * If the arch doesn't supply something else, assume that hugepage
134 * size aligned regions are ok without further preparation.
135 */
a5516438
AK
136static inline int prepare_hugepage_range(struct file *file,
137 unsigned long addr, unsigned long len)
6d779079 138{
0d9ea754
JT
139 struct hstate *h = hstate_file(file);
140 if (len & ~huge_page_mask(h))
6d779079 141 return -EINVAL;
0d9ea754 142 if (addr & ~huge_page_mask(h))
6d779079
GS
143 return -EINVAL;
144 return 0;
145}
146
0895ecda
DG
147static inline void set_huge_pte_at(struct mm_struct *mm, unsigned long addr,
148 pte_t *ptep, pte_t pte)
149{
150 set_pte_at(mm, addr, ptep, pte);
151}
152
153static inline pte_t huge_ptep_get_and_clear(struct mm_struct *mm,
154 unsigned long addr, pte_t *ptep)
155{
41151e77 156#ifdef CONFIG_PPC64
88247e8d 157 return __pte(pte_update(mm, addr, ptep, ~0UL, 0, 1));
41151e77
BB
158#else
159 return __pte(pte_update(ptep, ~0UL, 0));
160#endif
0895ecda
DG
161}
162
8fe627ec
GS
163static inline void huge_ptep_clear_flush(struct vm_area_struct *vma,
164 unsigned long addr, pte_t *ptep)
165{
0895ecda
DG
166 pte_t pte;
167 pte = huge_ptep_get_and_clear(vma->vm_mm, addr, ptep);
13dce033 168 flush_hugetlb_page(vma, addr);
8fe627ec
GS
169}
170
7f2e9525
GS
171static inline int huge_pte_none(pte_t pte)
172{
173 return pte_none(pte);
174}
175
176static inline pte_t huge_pte_wrprotect(pte_t pte)
177{
178 return pte_wrprotect(pte);
179}
180
7f2e9525
GS
181static inline int huge_ptep_set_access_flags(struct vm_area_struct *vma,
182 unsigned long addr, pte_t *ptep,
183 pte_t pte, int dirty)
184{
1f6820b4 185#ifdef HUGETLB_NEED_PRELOAD
97632e6f
BB
186 /*
187 * The "return 1" forces a call of update_mmu_cache, which will write a
188 * TLB entry. Without this, platforms that don't do a write of the TLB
189 * entry in the TLB miss handler asm will fault ad infinitum.
190 */
191 ptep_set_access_flags(vma, addr, ptep, pte, dirty);
192 return 1;
193#else
7f2e9525 194 return ptep_set_access_flags(vma, addr, ptep, pte, dirty);
97632e6f 195#endif
7f2e9525
GS
196}
197
198static inline pte_t huge_ptep_get(pte_t *ptep)
199{
200 return *ptep;
201}
202
5d3a551c
WD
203static inline void arch_clear_hugepage_flags(struct page *page)
204{
205}
206
41151e77 207#else /* ! CONFIG_HUGETLB_PAGE */
41151e77
BB
208static inline void flush_hugetlb_page(struct vm_area_struct *vma,
209 unsigned long vmaddr)
210{
211}
a6146888 212
29409997 213#define hugepd_shift(x) 0
b30e7590 214static inline pte_t *hugepte_offset(hugepd_t hpd, unsigned long addr,
29409997
AK
215 unsigned pdshift)
216{
217 return 0;
218}
219#endif /* CONFIG_HUGETLB_PAGE */
a6146888 220
6d779079 221#endif /* _ASM_POWERPC_HUGETLB_H */