David Gibson | f88df14 | 2007-04-30 16:30:56 +1000 | [diff] [blame] | 1 | #ifndef _ASM_POWERPC_PGALLOC_64_H |
| 2 | #define _ASM_POWERPC_PGALLOC_64_H |
| 3 | /* |
| 4 | * This program is free software; you can redistribute it and/or |
| 5 | * modify it under the terms of the GNU General Public License |
| 6 | * as published by the Free Software Foundation; either version |
| 7 | * 2 of the License, or (at your option) any later version. |
| 8 | */ |
| 9 | |
David Gibson | f88df14 | 2007-04-30 16:30:56 +1000 | [diff] [blame] | 10 | #include <linux/slab.h> |
| 11 | #include <linux/cpumask.h> |
| 12 | #include <linux/percpu.h> |
| 13 | |
Mark Nelson | 91eea67 | 2010-04-21 16:21:03 +0000 | [diff] [blame] | 14 | struct vmemmap_backing { |
| 15 | struct vmemmap_backing *list; |
| 16 | unsigned long phys; |
| 17 | unsigned long virt_addr; |
| 18 | }; |
Hari Bathini | 8ff8127 | 2013-11-15 23:01:32 +0530 | [diff] [blame] | 19 | extern struct vmemmap_backing *vmemmap_list; |
Mark Nelson | 91eea67 | 2010-04-21 16:21:03 +0000 | [diff] [blame] | 20 | |
David Gibson | a0668cd | 2009-10-28 16:27:18 +0000 | [diff] [blame] | 21 | /* |
| 22 | * Functions that deal with pagetables that could be at any level of |
| 23 | * the table need to be passed an "index_size" so they know how to |
| 24 | * handle allocation. For PTE pages (which are linked to a struct |
| 25 | * page for now, and drawn from the main get_free_pages() pool), the |
| 26 | * allocation size will be (2^index_size * sizeof(pointer)) and |
| 27 | * allocations are drawn from the kmem_cache in PGT_CACHE(index_size). |
| 28 | * |
| 29 | * The maximum index size needs to be big enough to allow any |
| 30 | * pagetable sizes we need, but small enough to fit in the low bits of |
| 31 | * any page table pointer. In other words all pagetables, even tiny |
| 32 | * ones, must be aligned to allow at least enough low 0 bits to |
| 33 | * contain this value. This value is also used as a mask, so it must |
| 34 | * be one less than a power of two. |
| 35 | */ |
| 36 | #define MAX_PGTABLE_INDEX_SIZE 0xf |
| 37 | |
David Gibson | f88df14 | 2007-04-30 16:30:56 +1000 | [diff] [blame] | 38 | extern struct kmem_cache *pgtable_cache[]; |
Aneesh Kumar K.V | cf9427b | 2013-04-28 09:37:29 +0000 | [diff] [blame] | 39 | #define PGT_CACHE(shift) ({ \ |
| 40 | BUG_ON(!(shift)); \ |
| 41 | pgtable_cache[(shift) - 1]; \ |
| 42 | }) |
David Gibson | f88df14 | 2007-04-30 16:30:56 +1000 | [diff] [blame] | 43 | |
| 44 | static inline pgd_t *pgd_alloc(struct mm_struct *mm) |
| 45 | { |
David Gibson | a0668cd | 2009-10-28 16:27:18 +0000 | [diff] [blame] | 46 | return kmem_cache_alloc(PGT_CACHE(PGD_INDEX_SIZE), GFP_KERNEL); |
David Gibson | f88df14 | 2007-04-30 16:30:56 +1000 | [diff] [blame] | 47 | } |
| 48 | |
Benjamin Herrenschmidt | 5e54197 | 2008-02-04 22:29:14 -0800 | [diff] [blame] | 49 | static inline void pgd_free(struct mm_struct *mm, pgd_t *pgd) |
David Gibson | f88df14 | 2007-04-30 16:30:56 +1000 | [diff] [blame] | 50 | { |
David Gibson | a0668cd | 2009-10-28 16:27:18 +0000 | [diff] [blame] | 51 | kmem_cache_free(PGT_CACHE(PGD_INDEX_SIZE), pgd); |
David Gibson | f88df14 | 2007-04-30 16:30:56 +1000 | [diff] [blame] | 52 | } |
| 53 | |
| 54 | #ifndef CONFIG_PPC_64K_PAGES |
| 55 | |
Aneesh Kumar K.V | 2720920 | 2016-04-29 23:26:15 +1000 | [diff] [blame] | 56 | #define pgd_populate(MM, PGD, PUD) pgd_set(PGD, (unsigned long)PUD) |
David Gibson | f88df14 | 2007-04-30 16:30:56 +1000 | [diff] [blame] | 57 | |
| 58 | static inline pud_t *pud_alloc_one(struct mm_struct *mm, unsigned long addr) |
| 59 | { |
David Gibson | a0668cd | 2009-10-28 16:27:18 +0000 | [diff] [blame] | 60 | return kmem_cache_alloc(PGT_CACHE(PUD_INDEX_SIZE), |
David Gibson | f88df14 | 2007-04-30 16:30:56 +1000 | [diff] [blame] | 61 | GFP_KERNEL|__GFP_REPEAT); |
| 62 | } |
| 63 | |
Benjamin Herrenschmidt | 5e54197 | 2008-02-04 22:29:14 -0800 | [diff] [blame] | 64 | static inline void pud_free(struct mm_struct *mm, pud_t *pud) |
David Gibson | f88df14 | 2007-04-30 16:30:56 +1000 | [diff] [blame] | 65 | { |
David Gibson | a0668cd | 2009-10-28 16:27:18 +0000 | [diff] [blame] | 66 | kmem_cache_free(PGT_CACHE(PUD_INDEX_SIZE), pud); |
David Gibson | f88df14 | 2007-04-30 16:30:56 +1000 | [diff] [blame] | 67 | } |
| 68 | |
| 69 | static inline void pud_populate(struct mm_struct *mm, pud_t *pud, pmd_t *pmd) |
| 70 | { |
Aneesh Kumar K.V | 2720920 | 2016-04-29 23:26:15 +1000 | [diff] [blame] | 71 | pud_set(pud, (unsigned long)pmd); |
David Gibson | f88df14 | 2007-04-30 16:30:56 +1000 | [diff] [blame] | 72 | } |
| 73 | |
Aneesh Kumar K.V | f281b5d | 2015-12-01 09:06:35 +0530 | [diff] [blame] | 74 | static inline void pmd_populate_kernel(struct mm_struct *mm, pmd_t *pmd, |
| 75 | pte_t *pte) |
| 76 | { |
Aneesh Kumar K.V | 2720920 | 2016-04-29 23:26:15 +1000 | [diff] [blame] | 77 | pmd_set(pmd, (unsigned long)pte); |
Aneesh Kumar K.V | f281b5d | 2015-12-01 09:06:35 +0530 | [diff] [blame] | 78 | } |
| 79 | |
| 80 | static inline void pmd_populate(struct mm_struct *mm, pmd_t *pmd, |
| 81 | pgtable_t pte_page) |
| 82 | { |
Aneesh Kumar K.V | 2720920 | 2016-04-29 23:26:15 +1000 | [diff] [blame] | 83 | pmd_set(pmd, (unsigned long)page_address(pte_page)); |
Aneesh Kumar K.V | f281b5d | 2015-12-01 09:06:35 +0530 | [diff] [blame] | 84 | } |
| 85 | |
Martin Schwidefsky | 2f569af | 2008-02-08 04:22:04 -0800 | [diff] [blame] | 86 | #define pmd_pgtable(pmd) pmd_page(pmd) |
David Gibson | f88df14 | 2007-04-30 16:30:56 +1000 | [diff] [blame] | 87 | |
Aneesh Kumar K.V | d614bb0 | 2013-04-28 09:37:32 +0000 | [diff] [blame] | 88 | static inline pte_t *pte_alloc_one_kernel(struct mm_struct *mm, |
| 89 | unsigned long address) |
| 90 | { |
| 91 | return (pte_t *)__get_free_page(GFP_KERNEL | __GFP_REPEAT | __GFP_ZERO); |
| 92 | } |
David Gibson | f88df14 | 2007-04-30 16:30:56 +1000 | [diff] [blame] | 93 | |
Aneesh Kumar K.V | d614bb0 | 2013-04-28 09:37:32 +0000 | [diff] [blame] | 94 | static inline pgtable_t pte_alloc_one(struct mm_struct *mm, |
| 95 | unsigned long address) |
| 96 | { |
| 97 | struct page *page; |
| 98 | pte_t *pte; |
| 99 | |
| 100 | pte = pte_alloc_one_kernel(mm, address); |
| 101 | if (!pte) |
| 102 | return NULL; |
| 103 | page = virt_to_page(pte); |
Kirill A. Shutemov | 4f804943 | 2013-11-14 14:31:38 -0800 | [diff] [blame] | 104 | if (!pgtable_page_ctor(page)) { |
| 105 | __free_page(page); |
| 106 | return NULL; |
| 107 | } |
Aneesh Kumar K.V | d614bb0 | 2013-04-28 09:37:32 +0000 | [diff] [blame] | 108 | return page; |
| 109 | } |
| 110 | |
| 111 | static inline void pte_free_kernel(struct mm_struct *mm, pte_t *pte) |
| 112 | { |
| 113 | free_page((unsigned long)pte); |
| 114 | } |
| 115 | |
| 116 | static inline void pte_free(struct mm_struct *mm, pgtable_t ptepage) |
| 117 | { |
| 118 | pgtable_page_dtor(ptepage); |
| 119 | __free_page(ptepage); |
| 120 | } |
| 121 | |
Aneesh Kumar K.V | 934828e | 2016-04-29 23:26:18 +1000 | [diff] [blame^] | 122 | extern void pgtable_free_tlb(struct mmu_gather *tlb, void *table, int shift); |
Aneesh Kumar K.V | d614bb0 | 2013-04-28 09:37:32 +0000 | [diff] [blame] | 123 | #ifdef CONFIG_SMP |
Aneesh Kumar K.V | 934828e | 2016-04-29 23:26:18 +1000 | [diff] [blame^] | 124 | extern void __tlb_remove_table(void *_table); |
| 125 | #endif |
Aneesh Kumar K.V | d614bb0 | 2013-04-28 09:37:32 +0000 | [diff] [blame] | 126 | static inline void __pte_free_tlb(struct mmu_gather *tlb, pgtable_t table, |
| 127 | unsigned long address) |
| 128 | { |
Aneesh Kumar K.V | d614bb0 | 2013-04-28 09:37:32 +0000 | [diff] [blame] | 129 | tlb_flush_pgtable(tlb, address); |
Hong H. Pham | cf77ee5 | 2013-12-07 09:06:33 -0500 | [diff] [blame] | 130 | pgtable_free_tlb(tlb, page_address(table), 0); |
Aneesh Kumar K.V | d614bb0 | 2013-04-28 09:37:32 +0000 | [diff] [blame] | 131 | } |
| 132 | |
| 133 | #else /* if CONFIG_PPC_64K_PAGES */ |
Aneesh Kumar K.V | 5c1f6ee | 2013-04-28 09:37:33 +0000 | [diff] [blame] | 134 | |
Aneesh Kumar K.V | 74701d5 | 2016-04-29 23:26:17 +1000 | [diff] [blame] | 135 | extern pte_t *pte_fragment_alloc(struct mm_struct *, unsigned long, int); |
| 136 | extern void pte_fragment_free(unsigned long *, int); |
Aneesh Kumar K.V | 5c1f6ee | 2013-04-28 09:37:33 +0000 | [diff] [blame] | 137 | extern void pgtable_free_tlb(struct mmu_gather *tlb, void *table, int shift); |
| 138 | #ifdef CONFIG_SMP |
| 139 | extern void __tlb_remove_table(void *_table); |
| 140 | #endif |
David Gibson | f88df14 | 2007-04-30 16:30:56 +1000 | [diff] [blame] | 141 | |
Aneesh Kumar K.V | 2720920 | 2016-04-29 23:26:15 +1000 | [diff] [blame] | 142 | #define pud_populate(mm, pud, pmd) pud_set(pud, (unsigned long)pmd) |
David Gibson | f88df14 | 2007-04-30 16:30:56 +1000 | [diff] [blame] | 143 | |
| 144 | static inline void pmd_populate_kernel(struct mm_struct *mm, pmd_t *pmd, |
| 145 | pte_t *pte) |
| 146 | { |
Aneesh Kumar K.V | 2720920 | 2016-04-29 23:26:15 +1000 | [diff] [blame] | 147 | pmd_set(pmd, (unsigned long)pte); |
David Gibson | f88df14 | 2007-04-30 16:30:56 +1000 | [diff] [blame] | 148 | } |
| 149 | |
Aneesh Kumar K.V | d614bb0 | 2013-04-28 09:37:32 +0000 | [diff] [blame] | 150 | static inline void pmd_populate(struct mm_struct *mm, pmd_t *pmd, |
| 151 | pgtable_t pte_page) |
| 152 | { |
Aneesh Kumar K.V | 2720920 | 2016-04-29 23:26:15 +1000 | [diff] [blame] | 153 | pmd_set(pmd, (unsigned long)pte_page); |
Aneesh Kumar K.V | d614bb0 | 2013-04-28 09:37:32 +0000 | [diff] [blame] | 154 | } |
| 155 | |
| 156 | static inline pgtable_t pmd_pgtable(pmd_t pmd) |
| 157 | { |
Aneesh Kumar K.V | 2720920 | 2016-04-29 23:26:15 +1000 | [diff] [blame] | 158 | return (pgtable_t)(pmd_val(pmd) & ~PMD_MASKED_BITS); |
Aneesh Kumar K.V | d614bb0 | 2013-04-28 09:37:32 +0000 | [diff] [blame] | 159 | } |
| 160 | |
| 161 | static inline pte_t *pte_alloc_one_kernel(struct mm_struct *mm, |
| 162 | unsigned long address) |
| 163 | { |
Aneesh Kumar K.V | 74701d5 | 2016-04-29 23:26:17 +1000 | [diff] [blame] | 164 | return (pte_t *)pte_fragment_alloc(mm, address, 1); |
Aneesh Kumar K.V | d614bb0 | 2013-04-28 09:37:32 +0000 | [diff] [blame] | 165 | } |
| 166 | |
| 167 | static inline pgtable_t pte_alloc_one(struct mm_struct *mm, |
Aneesh Kumar K.V | 5c1f6ee | 2013-04-28 09:37:33 +0000 | [diff] [blame] | 168 | unsigned long address) |
Aneesh Kumar K.V | d614bb0 | 2013-04-28 09:37:32 +0000 | [diff] [blame] | 169 | { |
Aneesh Kumar K.V | 74701d5 | 2016-04-29 23:26:17 +1000 | [diff] [blame] | 170 | return (pgtable_t)pte_fragment_alloc(mm, address, 0); |
Aneesh Kumar K.V | d614bb0 | 2013-04-28 09:37:32 +0000 | [diff] [blame] | 171 | } |
| 172 | |
| 173 | static inline void pte_free_kernel(struct mm_struct *mm, pte_t *pte) |
| 174 | { |
Aneesh Kumar K.V | 74701d5 | 2016-04-29 23:26:17 +1000 | [diff] [blame] | 175 | pte_fragment_fre((unsigned long *)pte, 1); |
Aneesh Kumar K.V | d614bb0 | 2013-04-28 09:37:32 +0000 | [diff] [blame] | 176 | } |
| 177 | |
| 178 | static inline void pte_free(struct mm_struct *mm, pgtable_t ptepage) |
| 179 | { |
Aneesh Kumar K.V | 74701d5 | 2016-04-29 23:26:17 +1000 | [diff] [blame] | 180 | pte_fragment_free((unsigned long *)ptepage, 0); |
Aneesh Kumar K.V | d614bb0 | 2013-04-28 09:37:32 +0000 | [diff] [blame] | 181 | } |
| 182 | |
Aneesh Kumar K.V | d614bb0 | 2013-04-28 09:37:32 +0000 | [diff] [blame] | 183 | static inline void __pte_free_tlb(struct mmu_gather *tlb, pgtable_t table, |
| 184 | unsigned long address) |
| 185 | { |
Aneesh Kumar K.V | d614bb0 | 2013-04-28 09:37:32 +0000 | [diff] [blame] | 186 | tlb_flush_pgtable(tlb, address); |
Aneesh Kumar K.V | 5c1f6ee | 2013-04-28 09:37:33 +0000 | [diff] [blame] | 187 | pgtable_free_tlb(tlb, table, 0); |
Aneesh Kumar K.V | d614bb0 | 2013-04-28 09:37:32 +0000 | [diff] [blame] | 188 | } |
David Gibson | f88df14 | 2007-04-30 16:30:56 +1000 | [diff] [blame] | 189 | #endif /* CONFIG_PPC_64K_PAGES */ |
| 190 | |
| 191 | static inline pmd_t *pmd_alloc_one(struct mm_struct *mm, unsigned long addr) |
| 192 | { |
Aneesh Kumar K.V | f940f52 | 2013-06-20 14:30:14 +0530 | [diff] [blame] | 193 | return kmem_cache_alloc(PGT_CACHE(PMD_CACHE_INDEX), |
David Gibson | f88df14 | 2007-04-30 16:30:56 +1000 | [diff] [blame] | 194 | GFP_KERNEL|__GFP_REPEAT); |
| 195 | } |
| 196 | |
Benjamin Herrenschmidt | 5e54197 | 2008-02-04 22:29:14 -0800 | [diff] [blame] | 197 | static inline void pmd_free(struct mm_struct *mm, pmd_t *pmd) |
David Gibson | f88df14 | 2007-04-30 16:30:56 +1000 | [diff] [blame] | 198 | { |
Aneesh Kumar K.V | f940f52 | 2013-06-20 14:30:14 +0530 | [diff] [blame] | 199 | kmem_cache_free(PGT_CACHE(PMD_CACHE_INDEX), pmd); |
David Gibson | f88df14 | 2007-04-30 16:30:56 +1000 | [diff] [blame] | 200 | } |
| 201 | |
David Gibson | a0668cd | 2009-10-28 16:27:18 +0000 | [diff] [blame] | 202 | #define __pmd_free_tlb(tlb, pmd, addr) \ |
Aneesh Kumar K.V | f940f52 | 2013-06-20 14:30:14 +0530 | [diff] [blame] | 203 | pgtable_free_tlb(tlb, pmd, PMD_CACHE_INDEX) |
Aneesh Kumar K.V | 2720920 | 2016-04-29 23:26:15 +1000 | [diff] [blame] | 204 | #ifndef CONFIG_PPC_64K_PAGES |
Benjamin Herrenschmidt | 9e1b32c | 2009-07-22 15:44:28 +1000 | [diff] [blame] | 205 | #define __pud_free_tlb(tlb, pud, addr) \ |
David Gibson | a0668cd | 2009-10-28 16:27:18 +0000 | [diff] [blame] | 206 | pgtable_free_tlb(tlb, pud, PUD_INDEX_SIZE) |
| 207 | |
Aneesh Kumar K.V | 2720920 | 2016-04-29 23:26:15 +1000 | [diff] [blame] | 208 | #endif /* CONFIG_PPC_64K_PAGES */ |
David Gibson | f88df14 | 2007-04-30 16:30:56 +1000 | [diff] [blame] | 209 | |
| 210 | #define check_pgt_cache() do { } while (0) |
| 211 | |
| 212 | #endif /* _ASM_POWERPC_PGALLOC_64_H */ |