Gerald Schaefer | 6d77907 | 2008-04-28 02:13:27 -0700 | [diff] [blame] | 1 | #ifndef _ASM_POWERPC_HUGETLB_H |
| 2 | #define _ASM_POWERPC_HUGETLB_H |
| 3 | |
Becky Bruce | 41151e7 | 2011-06-28 09:54:48 +0000 | [diff] [blame] | 4 | #ifdef CONFIG_HUGETLB_PAGE |
Gerald Schaefer | 6d77907 | 2008-04-28 02:13:27 -0700 | [diff] [blame] | 5 | #include <asm/page.h> |
Gerald Schaefer | 106c992 | 2013-04-29 15:07:23 -0700 | [diff] [blame] | 6 | #include <asm-generic/hugetlb.h> |
Gerald Schaefer | 6d77907 | 2008-04-28 02:13:27 -0700 | [diff] [blame] | 7 | |
Becky Bruce | 41151e7 | 2011-06-28 09:54:48 +0000 | [diff] [blame] | 8 | extern struct kmem_cache *hugepte_cache; |
Becky Bruce | 41151e7 | 2011-06-28 09:54:48 +0000 | [diff] [blame] | 9 | |
Aneesh Kumar K.V | cf9427b | 2013-04-28 09:37:29 +0000 | [diff] [blame] | 10 | #ifdef CONFIG_PPC_BOOK3S_64 |
Aneesh Kumar K.V | 4848376 | 2016-04-29 23:26:25 +1000 | [diff] [blame] | 11 | |
Aneesh Kumar K.V | bee8b3b | 2016-11-28 11:46:58 +0530 | [diff] [blame] | 12 | #include <asm/book3s/64/hugetlb.h> |
Aneesh Kumar K.V | cf9427b | 2013-04-28 09:37:29 +0000 | [diff] [blame] | 13 | /* |
| 14 | * This should work for other subarchs too. But right now we use the |
| 15 | * new format only for 64bit book3s |
| 16 | */ |
| 17 | static 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); |
Paul Mackerras | c61a884 | 2016-02-23 13:36:17 +1100 | [diff] [blame] | 24 | return __va(hpd.pd & HUGEPD_ADDR_MASK); |
Aneesh Kumar K.V | cf9427b | 2013-04-28 09:37:29 +0000 | [diff] [blame] | 25 | } |
| 26 | |
| 27 | static inline unsigned int hugepd_mmu_psize(hugepd_t hpd) |
| 28 | { |
| 29 | return (hpd.pd & HUGEPD_SHIFT_MASK) >> 2; |
| 30 | } |
| 31 | |
| 32 | static inline unsigned int hugepd_shift(hugepd_t hpd) |
| 33 | { |
| 34 | return mmu_psize_to_shift(hugepd_mmu_psize(hpd)); |
| 35 | } |
Aneesh Kumar K.V | 4848376 | 2016-04-29 23:26:25 +1000 | [diff] [blame] | 36 | static 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 | } |
Aneesh Kumar K.V | cf9427b | 2013-04-28 09:37:29 +0000 | [diff] [blame] | 42 | |
Aneesh Kumar K.V | 4848376 | 2016-04-29 23:26:25 +1000 | [diff] [blame] | 43 | static 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 | } |
Aneesh Kumar K.V | cf9427b | 2013-04-28 09:37:29 +0000 | [diff] [blame] | 49 | #else |
| 50 | |
Becky Bruce | 41151e7 | 2011-06-28 09:54:48 +0000 | [diff] [blame] | 51 | static inline pte_t *hugepd_page(hugepd_t hpd) |
| 52 | { |
| 53 | BUG_ON(!hugepd_ok(hpd)); |
Christophe Leroy | 4b914286 | 2016-12-07 08:47:28 +0100 | [diff] [blame] | 54 | #ifdef CONFIG_PPC_8xx |
| 55 | return (pte_t *)__va(hpd.pd & ~(_PMD_PAGE_MASK | _PMD_PRESENT_MASK)); |
| 56 | #else |
Becky Bruce | 41151e7 | 2011-06-28 09:54:48 +0000 | [diff] [blame] | 57 | return (pte_t *)((hpd.pd & ~HUGEPD_SHIFT_MASK) | PD_HUGE); |
Christophe Leroy | 4b914286 | 2016-12-07 08:47:28 +0100 | [diff] [blame] | 58 | #endif |
Becky Bruce | 41151e7 | 2011-06-28 09:54:48 +0000 | [diff] [blame] | 59 | } |
| 60 | |
| 61 | static inline unsigned int hugepd_shift(hugepd_t hpd) |
| 62 | { |
Christophe Leroy | 4b914286 | 2016-12-07 08:47:28 +0100 | [diff] [blame] | 63 | #ifdef CONFIG_PPC_8xx |
| 64 | return ((hpd.pd & _PMD_PAGE_MASK) >> 1) + 17; |
| 65 | #else |
Becky Bruce | 41151e7 | 2011-06-28 09:54:48 +0000 | [diff] [blame] | 66 | return hpd.pd & HUGEPD_SHIFT_MASK; |
Christophe Leroy | 4b914286 | 2016-12-07 08:47:28 +0100 | [diff] [blame] | 67 | #endif |
Becky Bruce | 41151e7 | 2011-06-28 09:54:48 +0000 | [diff] [blame] | 68 | } |
| 69 | |
Aneesh Kumar K.V | cf9427b | 2013-04-28 09:37:29 +0000 | [diff] [blame] | 70 | #endif /* CONFIG_PPC_BOOK3S_64 */ |
| 71 | |
| 72 | |
Aneesh Kumar K.V | b30e759 | 2014-11-05 21:57:41 +0530 | [diff] [blame] | 73 | static inline pte_t *hugepte_offset(hugepd_t hpd, unsigned long addr, |
Becky Bruce | 41151e7 | 2011-06-28 09:54:48 +0000 | [diff] [blame] | 74 | unsigned pdshift) |
| 75 | { |
| 76 | /* |
Becky Bruce | 881fde1 | 2011-10-10 10:50:40 +0000 | [diff] [blame] | 77 | * On FSL BookE, we have multiple higher-level table entries that |
| 78 | * point to the same hugepte. Just use the first one since they're all |
Becky Bruce | 41151e7 | 2011-06-28 09:54:48 +0000 | [diff] [blame] | 79 | * identical. So for that case, idx=0. |
| 80 | */ |
| 81 | unsigned long idx = 0; |
| 82 | |
Aneesh Kumar K.V | b30e759 | 2014-11-05 21:57:41 +0530 | [diff] [blame] | 83 | pte_t *dir = hugepd_page(hpd); |
Becky Bruce | 881fde1 | 2011-10-10 10:50:40 +0000 | [diff] [blame] | 84 | #ifndef CONFIG_PPC_FSL_BOOK3E |
Aneesh Kumar K.V | b30e759 | 2014-11-05 21:57:41 +0530 | [diff] [blame] | 85 | idx = (addr & ((1UL << pdshift) - 1)) >> hugepd_shift(hpd); |
Becky Bruce | 41151e7 | 2011-06-28 09:54:48 +0000 | [diff] [blame] | 86 | #endif |
| 87 | |
| 88 | return dir + idx; |
| 89 | } |
| 90 | |
David Gibson | 883a3e5 | 2009-10-26 19:24:31 +0000 | [diff] [blame] | 91 | pte_t *huge_pte_offset_and_shift(struct mm_struct *mm, |
| 92 | unsigned long addr, unsigned *shift); |
| 93 | |
David Gibson | 0895ecd | 2009-10-26 19:24:31 +0000 | [diff] [blame] | 94 | void flush_dcache_icache_hugepage(struct page *page); |
| 95 | |
Aneesh Kumar K.V | ca5f1d1 | 2014-10-21 14:25:59 +1100 | [diff] [blame] | 96 | #if defined(CONFIG_PPC_MM_SLICES) |
Gerald Schaefer | 6d77907 | 2008-04-28 02:13:27 -0700 | [diff] [blame] | 97 | int is_hugepage_only_range(struct mm_struct *mm, unsigned long addr, |
| 98 | unsigned long len); |
Becky Bruce | 41151e7 | 2011-06-28 09:54:48 +0000 | [diff] [blame] | 99 | #else |
| 100 | static inline int is_hugepage_only_range(struct mm_struct *mm, |
| 101 | unsigned long addr, |
| 102 | unsigned long len) |
| 103 | { |
| 104 | return 0; |
| 105 | } |
| 106 | #endif |
| 107 | |
Becky Bruce | d93e4d7 | 2011-11-28 14:43:33 +0000 | [diff] [blame] | 108 | void book3e_hugetlb_preload(struct vm_area_struct *vma, unsigned long ea, |
| 109 | pte_t pte); |
Christophe Leroy | 4b914286 | 2016-12-07 08:47:28 +0100 | [diff] [blame] | 110 | #ifdef CONFIG_PPC_8xx |
| 111 | static inline void flush_hugetlb_page(struct vm_area_struct *vma, |
| 112 | unsigned long vmaddr) |
| 113 | { |
| 114 | flush_tlb_page(vma, vmaddr); |
| 115 | } |
| 116 | #else |
Becky Bruce | 41151e7 | 2011-06-28 09:54:48 +0000 | [diff] [blame] | 117 | void flush_hugetlb_page(struct vm_area_struct *vma, unsigned long vmaddr); |
Christophe Leroy | 4b914286 | 2016-12-07 08:47:28 +0100 | [diff] [blame] | 118 | #endif |
Gerald Schaefer | 6d77907 | 2008-04-28 02:13:27 -0700 | [diff] [blame] | 119 | |
Jan Beulich | 42b7772 | 2008-07-23 21:27:10 -0700 | [diff] [blame] | 120 | void hugetlb_free_pgd_range(struct mmu_gather *tlb, unsigned long addr, |
Gerald Schaefer | 6d77907 | 2008-04-28 02:13:27 -0700 | [diff] [blame] | 121 | unsigned long end, unsigned long floor, |
| 122 | unsigned long ceiling); |
| 123 | |
Gerald Schaefer | 6d77907 | 2008-04-28 02:13:27 -0700 | [diff] [blame] | 124 | /* |
Mel Gorman | 3340289 | 2009-01-06 14:38:54 -0800 | [diff] [blame] | 125 | * The version of vma_mmu_pagesize() in arch/powerpc/mm/hugetlbpage.c needs |
| 126 | * to override the version in mm/hugetlb.c |
| 127 | */ |
| 128 | #define vma_mmu_pagesize vma_mmu_pagesize |
| 129 | |
| 130 | /* |
Gerald Schaefer | 6d77907 | 2008-04-28 02:13:27 -0700 | [diff] [blame] | 131 | * If the arch doesn't supply something else, assume that hugepage |
| 132 | * size aligned regions are ok without further preparation. |
| 133 | */ |
Andi Kleen | a551643 | 2008-07-23 21:27:41 -0700 | [diff] [blame] | 134 | static inline int prepare_hugepage_range(struct file *file, |
| 135 | unsigned long addr, unsigned long len) |
Gerald Schaefer | 6d77907 | 2008-04-28 02:13:27 -0700 | [diff] [blame] | 136 | { |
Jon Tollefson | 0d9ea75 | 2008-07-23 21:27:56 -0700 | [diff] [blame] | 137 | struct hstate *h = hstate_file(file); |
| 138 | if (len & ~huge_page_mask(h)) |
Gerald Schaefer | 6d77907 | 2008-04-28 02:13:27 -0700 | [diff] [blame] | 139 | return -EINVAL; |
Jon Tollefson | 0d9ea75 | 2008-07-23 21:27:56 -0700 | [diff] [blame] | 140 | if (addr & ~huge_page_mask(h)) |
Gerald Schaefer | 6d77907 | 2008-04-28 02:13:27 -0700 | [diff] [blame] | 141 | return -EINVAL; |
| 142 | return 0; |
| 143 | } |
| 144 | |
David Gibson | 0895ecd | 2009-10-26 19:24:31 +0000 | [diff] [blame] | 145 | static inline void set_huge_pte_at(struct mm_struct *mm, unsigned long addr, |
| 146 | pte_t *ptep, pte_t pte) |
| 147 | { |
| 148 | set_pte_at(mm, addr, ptep, pte); |
| 149 | } |
| 150 | |
| 151 | static inline pte_t huge_ptep_get_and_clear(struct mm_struct *mm, |
| 152 | unsigned long addr, pte_t *ptep) |
| 153 | { |
Becky Bruce | 41151e7 | 2011-06-28 09:54:48 +0000 | [diff] [blame] | 154 | #ifdef CONFIG_PPC64 |
Aneesh Kumar K.V | 88247e8 | 2014-02-12 09:13:36 +0530 | [diff] [blame] | 155 | return __pte(pte_update(mm, addr, ptep, ~0UL, 0, 1)); |
Becky Bruce | 41151e7 | 2011-06-28 09:54:48 +0000 | [diff] [blame] | 156 | #else |
| 157 | return __pte(pte_update(ptep, ~0UL, 0)); |
| 158 | #endif |
David Gibson | 0895ecd | 2009-10-26 19:24:31 +0000 | [diff] [blame] | 159 | } |
| 160 | |
Gerald Schaefer | 8fe627e | 2008-04-28 02:13:28 -0700 | [diff] [blame] | 161 | static inline void huge_ptep_clear_flush(struct vm_area_struct *vma, |
| 162 | unsigned long addr, pte_t *ptep) |
| 163 | { |
David Gibson | 0895ecd | 2009-10-26 19:24:31 +0000 | [diff] [blame] | 164 | pte_t pte; |
| 165 | pte = huge_ptep_get_and_clear(vma->vm_mm, addr, ptep); |
Aneesh Kumar K.V | 13dce03 | 2016-07-13 15:06:38 +0530 | [diff] [blame] | 166 | flush_hugetlb_page(vma, addr); |
Gerald Schaefer | 8fe627e | 2008-04-28 02:13:28 -0700 | [diff] [blame] | 167 | } |
| 168 | |
Gerald Schaefer | 7f2e952 | 2008-04-28 02:13:29 -0700 | [diff] [blame] | 169 | static inline int huge_pte_none(pte_t pte) |
| 170 | { |
| 171 | return pte_none(pte); |
| 172 | } |
| 173 | |
| 174 | static inline pte_t huge_pte_wrprotect(pte_t pte) |
| 175 | { |
| 176 | return pte_wrprotect(pte); |
| 177 | } |
| 178 | |
Gerald Schaefer | 7f2e952 | 2008-04-28 02:13:29 -0700 | [diff] [blame] | 179 | static inline int huge_ptep_set_access_flags(struct vm_area_struct *vma, |
| 180 | unsigned long addr, pte_t *ptep, |
| 181 | pte_t pte, int dirty) |
| 182 | { |
Becky Bruce | 1f6820b | 2011-11-29 15:10:39 +0000 | [diff] [blame] | 183 | #ifdef HUGETLB_NEED_PRELOAD |
Becky Bruce | 97632e6 | 2011-10-10 10:50:37 +0000 | [diff] [blame] | 184 | /* |
| 185 | * The "return 1" forces a call of update_mmu_cache, which will write a |
| 186 | * TLB entry. Without this, platforms that don't do a write of the TLB |
| 187 | * entry in the TLB miss handler asm will fault ad infinitum. |
| 188 | */ |
| 189 | ptep_set_access_flags(vma, addr, ptep, pte, dirty); |
| 190 | return 1; |
| 191 | #else |
Gerald Schaefer | 7f2e952 | 2008-04-28 02:13:29 -0700 | [diff] [blame] | 192 | return ptep_set_access_flags(vma, addr, ptep, pte, dirty); |
Becky Bruce | 97632e6 | 2011-10-10 10:50:37 +0000 | [diff] [blame] | 193 | #endif |
Gerald Schaefer | 7f2e952 | 2008-04-28 02:13:29 -0700 | [diff] [blame] | 194 | } |
| 195 | |
| 196 | static inline pte_t huge_ptep_get(pte_t *ptep) |
| 197 | { |
| 198 | return *ptep; |
| 199 | } |
| 200 | |
Will Deacon | 5d3a551 | 2012-10-08 16:29:32 -0700 | [diff] [blame] | 201 | static inline void arch_clear_hugepage_flags(struct page *page) |
| 202 | { |
| 203 | } |
| 204 | |
Becky Bruce | 41151e7 | 2011-06-28 09:54:48 +0000 | [diff] [blame] | 205 | #else /* ! CONFIG_HUGETLB_PAGE */ |
Becky Bruce | 41151e7 | 2011-06-28 09:54:48 +0000 | [diff] [blame] | 206 | static inline void flush_hugetlb_page(struct vm_area_struct *vma, |
| 207 | unsigned long vmaddr) |
| 208 | { |
| 209 | } |
Becky Bruce | a614688 | 2011-10-10 10:50:43 +0000 | [diff] [blame] | 210 | |
Aneesh Kumar K.V | 2940999 | 2013-06-20 14:30:16 +0530 | [diff] [blame] | 211 | #define hugepd_shift(x) 0 |
Aneesh Kumar K.V | b30e759 | 2014-11-05 21:57:41 +0530 | [diff] [blame] | 212 | static inline pte_t *hugepte_offset(hugepd_t hpd, unsigned long addr, |
Aneesh Kumar K.V | 2940999 | 2013-06-20 14:30:16 +0530 | [diff] [blame] | 213 | unsigned pdshift) |
| 214 | { |
| 215 | return 0; |
| 216 | } |
| 217 | #endif /* CONFIG_HUGETLB_PAGE */ |
Becky Bruce | a614688 | 2011-10-10 10:50:43 +0000 | [diff] [blame] | 218 | |
| 219 | /* |
| 220 | * FSL Book3E platforms require special gpage handling - the gpages |
| 221 | * are reserved early in the boot process by memblock instead of via |
| 222 | * the .dts as on IBM platforms. |
| 223 | */ |
Christophe Leroy | 4b914286 | 2016-12-07 08:47:28 +0100 | [diff] [blame] | 224 | #if defined(CONFIG_HUGETLB_PAGE) && (defined(CONFIG_PPC_FSL_BOOK3E) || \ |
| 225 | defined(CONFIG_PPC_8xx)) |
Becky Bruce | a614688 | 2011-10-10 10:50:43 +0000 | [diff] [blame] | 226 | extern void __init reserve_hugetlb_gpages(void); |
| 227 | #else |
| 228 | static inline void reserve_hugetlb_gpages(void) |
| 229 | { |
| 230 | } |
Becky Bruce | 41151e7 | 2011-06-28 09:54:48 +0000 | [diff] [blame] | 231 | #endif |
| 232 | |
Gerald Schaefer | 6d77907 | 2008-04-28 02:13:27 -0700 | [diff] [blame] | 233 | #endif /* _ASM_POWERPC_HUGETLB_H */ |