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> |
| 6 | |
Becky Bruce | 41151e7 | 2011-06-28 09:54:48 +0000 | [diff] [blame] | 7 | extern struct kmem_cache *hugepte_cache; |
| 8 | extern void __init reserve_hugetlb_gpages(void); |
| 9 | |
| 10 | static inline pte_t *hugepd_page(hugepd_t hpd) |
| 11 | { |
| 12 | BUG_ON(!hugepd_ok(hpd)); |
| 13 | return (pte_t *)((hpd.pd & ~HUGEPD_SHIFT_MASK) | PD_HUGE); |
| 14 | } |
| 15 | |
| 16 | static inline unsigned int hugepd_shift(hugepd_t hpd) |
| 17 | { |
| 18 | return hpd.pd & HUGEPD_SHIFT_MASK; |
| 19 | } |
| 20 | |
| 21 | static inline pte_t *hugepte_offset(hugepd_t *hpdp, unsigned long addr, |
| 22 | unsigned pdshift) |
| 23 | { |
| 24 | /* |
Becky Bruce | 881fde1 | 2011-10-10 10:50:40 +0000 | [diff] [blame] | 25 | * On FSL BookE, we have multiple higher-level table entries that |
| 26 | * 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] | 27 | * identical. So for that case, idx=0. |
| 28 | */ |
| 29 | unsigned long idx = 0; |
| 30 | |
| 31 | pte_t *dir = hugepd_page(*hpdp); |
Becky Bruce | 881fde1 | 2011-10-10 10:50:40 +0000 | [diff] [blame] | 32 | #ifndef CONFIG_PPC_FSL_BOOK3E |
Becky Bruce | 41151e7 | 2011-06-28 09:54:48 +0000 | [diff] [blame] | 33 | idx = (addr & ((1UL << pdshift) - 1)) >> hugepd_shift(*hpdp); |
| 34 | #endif |
| 35 | |
| 36 | return dir + idx; |
| 37 | } |
| 38 | |
David Gibson | 883a3e5 | 2009-10-26 19:24:31 +0000 | [diff] [blame] | 39 | pte_t *huge_pte_offset_and_shift(struct mm_struct *mm, |
| 40 | unsigned long addr, unsigned *shift); |
| 41 | |
David Gibson | 0895ecd | 2009-10-26 19:24:31 +0000 | [diff] [blame] | 42 | void flush_dcache_icache_hugepage(struct page *page); |
| 43 | |
Becky Bruce | 41151e7 | 2011-06-28 09:54:48 +0000 | [diff] [blame] | 44 | #if defined(CONFIG_PPC_MM_SLICES) || defined(CONFIG_PPC_SUBPAGE_PROT) |
Gerald Schaefer | 6d77907 | 2008-04-28 02:13:27 -0700 | [diff] [blame] | 45 | int is_hugepage_only_range(struct mm_struct *mm, unsigned long addr, |
| 46 | unsigned long len); |
Becky Bruce | 41151e7 | 2011-06-28 09:54:48 +0000 | [diff] [blame] | 47 | #else |
| 48 | static inline int is_hugepage_only_range(struct mm_struct *mm, |
| 49 | unsigned long addr, |
| 50 | unsigned long len) |
| 51 | { |
| 52 | return 0; |
| 53 | } |
| 54 | #endif |
| 55 | |
| 56 | void book3e_hugetlb_preload(struct mm_struct *mm, unsigned long ea, pte_t pte); |
| 57 | void flush_hugetlb_page(struct vm_area_struct *vma, unsigned long vmaddr); |
Gerald Schaefer | 6d77907 | 2008-04-28 02:13:27 -0700 | [diff] [blame] | 58 | |
Jan Beulich | 42b7772 | 2008-07-23 21:27:10 -0700 | [diff] [blame] | 59 | void hugetlb_free_pgd_range(struct mmu_gather *tlb, unsigned long addr, |
Gerald Schaefer | 6d77907 | 2008-04-28 02:13:27 -0700 | [diff] [blame] | 60 | unsigned long end, unsigned long floor, |
| 61 | unsigned long ceiling); |
| 62 | |
Gerald Schaefer | 6d77907 | 2008-04-28 02:13:27 -0700 | [diff] [blame] | 63 | /* |
Mel Gorman | 3340289 | 2009-01-06 14:38:54 -0800 | [diff] [blame] | 64 | * The version of vma_mmu_pagesize() in arch/powerpc/mm/hugetlbpage.c needs |
| 65 | * to override the version in mm/hugetlb.c |
| 66 | */ |
| 67 | #define vma_mmu_pagesize vma_mmu_pagesize |
| 68 | |
| 69 | /* |
Gerald Schaefer | 6d77907 | 2008-04-28 02:13:27 -0700 | [diff] [blame] | 70 | * If the arch doesn't supply something else, assume that hugepage |
| 71 | * size aligned regions are ok without further preparation. |
| 72 | */ |
Andi Kleen | a551643 | 2008-07-23 21:27:41 -0700 | [diff] [blame] | 73 | static inline int prepare_hugepage_range(struct file *file, |
| 74 | unsigned long addr, unsigned long len) |
Gerald Schaefer | 6d77907 | 2008-04-28 02:13:27 -0700 | [diff] [blame] | 75 | { |
Jon Tollefson | 0d9ea75 | 2008-07-23 21:27:56 -0700 | [diff] [blame] | 76 | struct hstate *h = hstate_file(file); |
| 77 | if (len & ~huge_page_mask(h)) |
Gerald Schaefer | 6d77907 | 2008-04-28 02:13:27 -0700 | [diff] [blame] | 78 | return -EINVAL; |
Jon Tollefson | 0d9ea75 | 2008-07-23 21:27:56 -0700 | [diff] [blame] | 79 | if (addr & ~huge_page_mask(h)) |
Gerald Schaefer | 6d77907 | 2008-04-28 02:13:27 -0700 | [diff] [blame] | 80 | return -EINVAL; |
| 81 | return 0; |
| 82 | } |
| 83 | |
| 84 | static inline void hugetlb_prefault_arch_hook(struct mm_struct *mm) |
| 85 | { |
| 86 | } |
| 87 | |
David Gibson | 0895ecd | 2009-10-26 19:24:31 +0000 | [diff] [blame] | 88 | |
| 89 | static inline void set_huge_pte_at(struct mm_struct *mm, unsigned long addr, |
| 90 | pte_t *ptep, pte_t pte) |
| 91 | { |
| 92 | set_pte_at(mm, addr, ptep, pte); |
| 93 | } |
| 94 | |
| 95 | static inline pte_t huge_ptep_get_and_clear(struct mm_struct *mm, |
| 96 | unsigned long addr, pte_t *ptep) |
| 97 | { |
Becky Bruce | 41151e7 | 2011-06-28 09:54:48 +0000 | [diff] [blame] | 98 | #ifdef CONFIG_PPC64 |
| 99 | return __pte(pte_update(mm, addr, ptep, ~0UL, 1)); |
| 100 | #else |
| 101 | return __pte(pte_update(ptep, ~0UL, 0)); |
| 102 | #endif |
David Gibson | 0895ecd | 2009-10-26 19:24:31 +0000 | [diff] [blame] | 103 | } |
| 104 | |
Gerald Schaefer | 8fe627e | 2008-04-28 02:13:28 -0700 | [diff] [blame] | 105 | static inline void huge_ptep_clear_flush(struct vm_area_struct *vma, |
| 106 | unsigned long addr, pte_t *ptep) |
| 107 | { |
David Gibson | 0895ecd | 2009-10-26 19:24:31 +0000 | [diff] [blame] | 108 | pte_t pte; |
| 109 | pte = huge_ptep_get_and_clear(vma->vm_mm, addr, ptep); |
| 110 | flush_tlb_page(vma, addr); |
Gerald Schaefer | 8fe627e | 2008-04-28 02:13:28 -0700 | [diff] [blame] | 111 | } |
| 112 | |
Gerald Schaefer | 7f2e952 | 2008-04-28 02:13:29 -0700 | [diff] [blame] | 113 | static inline int huge_pte_none(pte_t pte) |
| 114 | { |
| 115 | return pte_none(pte); |
| 116 | } |
| 117 | |
| 118 | static inline pte_t huge_pte_wrprotect(pte_t pte) |
| 119 | { |
| 120 | return pte_wrprotect(pte); |
| 121 | } |
| 122 | |
Gerald Schaefer | 7f2e952 | 2008-04-28 02:13:29 -0700 | [diff] [blame] | 123 | static inline int huge_ptep_set_access_flags(struct vm_area_struct *vma, |
| 124 | unsigned long addr, pte_t *ptep, |
| 125 | pte_t pte, int dirty) |
| 126 | { |
Becky Bruce | 97632e6 | 2011-10-10 10:50:37 +0000 | [diff] [blame] | 127 | #if defined(CONFIG_PPC_MMU_NOHASH) && \ |
| 128 | !(defined(CONFIG_PPC_FSL_BOOK3E) && defined(CONFIG_PPC32)) |
| 129 | /* |
| 130 | * The "return 1" forces a call of update_mmu_cache, which will write a |
| 131 | * TLB entry. Without this, platforms that don't do a write of the TLB |
| 132 | * entry in the TLB miss handler asm will fault ad infinitum. |
| 133 | */ |
| 134 | ptep_set_access_flags(vma, addr, ptep, pte, dirty); |
| 135 | return 1; |
| 136 | #else |
Gerald Schaefer | 7f2e952 | 2008-04-28 02:13:29 -0700 | [diff] [blame] | 137 | return ptep_set_access_flags(vma, addr, ptep, pte, dirty); |
Becky Bruce | 97632e6 | 2011-10-10 10:50:37 +0000 | [diff] [blame] | 138 | #endif |
Gerald Schaefer | 7f2e952 | 2008-04-28 02:13:29 -0700 | [diff] [blame] | 139 | } |
| 140 | |
| 141 | static inline pte_t huge_ptep_get(pte_t *ptep) |
| 142 | { |
| 143 | return *ptep; |
| 144 | } |
| 145 | |
| 146 | static inline int arch_prepare_hugepage(struct page *page) |
| 147 | { |
| 148 | return 0; |
| 149 | } |
| 150 | |
| 151 | static inline void arch_release_hugepage(struct page *page) |
| 152 | { |
| 153 | } |
| 154 | |
Becky Bruce | 41151e7 | 2011-06-28 09:54:48 +0000 | [diff] [blame] | 155 | #else /* ! CONFIG_HUGETLB_PAGE */ |
| 156 | static inline void reserve_hugetlb_gpages(void) |
| 157 | { |
| 158 | pr_err("Cannot reserve gpages without hugetlb enabled\n"); |
| 159 | } |
| 160 | static inline void flush_hugetlb_page(struct vm_area_struct *vma, |
| 161 | unsigned long vmaddr) |
| 162 | { |
| 163 | } |
| 164 | #endif |
| 165 | |
Gerald Schaefer | 6d77907 | 2008-04-28 02:13:27 -0700 | [diff] [blame] | 166 | #endif /* _ASM_POWERPC_HUGETLB_H */ |