blob: b66ae722a8e9c2d9aacb9ef7eb49e553d9ad9dde [file] [log] [blame]
David Gibsonf88df142007-04-30 16:30:56 +10001#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 Gibsonf88df142007-04-30 16:30:56 +100010#include <linux/slab.h>
11#include <linux/cpumask.h>
12#include <linux/percpu.h>
13
Mark Nelson91eea672010-04-21 16:21:03 +000014struct vmemmap_backing {
15 struct vmemmap_backing *list;
16 unsigned long phys;
17 unsigned long virt_addr;
18};
19
David Gibsona0668cd2009-10-28 16:27:18 +000020/*
21 * Functions that deal with pagetables that could be at any level of
22 * the table need to be passed an "index_size" so they know how to
23 * handle allocation. For PTE pages (which are linked to a struct
24 * page for now, and drawn from the main get_free_pages() pool), the
25 * allocation size will be (2^index_size * sizeof(pointer)) and
26 * allocations are drawn from the kmem_cache in PGT_CACHE(index_size).
27 *
28 * The maximum index size needs to be big enough to allow any
29 * pagetable sizes we need, but small enough to fit in the low bits of
30 * any page table pointer. In other words all pagetables, even tiny
31 * ones, must be aligned to allow at least enough low 0 bits to
32 * contain this value. This value is also used as a mask, so it must
33 * be one less than a power of two.
34 */
35#define MAX_PGTABLE_INDEX_SIZE 0xf
36
David Gibsonf88df142007-04-30 16:30:56 +100037extern struct kmem_cache *pgtable_cache[];
Aneesh Kumar K.Vcf9427b2013-04-28 09:37:29 +000038#define PGT_CACHE(shift) ({ \
39 BUG_ON(!(shift)); \
40 pgtable_cache[(shift) - 1]; \
41 })
David Gibsonf88df142007-04-30 16:30:56 +100042
43static inline pgd_t *pgd_alloc(struct mm_struct *mm)
44{
David Gibsona0668cd2009-10-28 16:27:18 +000045 return kmem_cache_alloc(PGT_CACHE(PGD_INDEX_SIZE), GFP_KERNEL);
David Gibsonf88df142007-04-30 16:30:56 +100046}
47
Benjamin Herrenschmidt5e541972008-02-04 22:29:14 -080048static inline void pgd_free(struct mm_struct *mm, pgd_t *pgd)
David Gibsonf88df142007-04-30 16:30:56 +100049{
David Gibsona0668cd2009-10-28 16:27:18 +000050 kmem_cache_free(PGT_CACHE(PGD_INDEX_SIZE), pgd);
David Gibsonf88df142007-04-30 16:30:56 +100051}
52
53#ifndef CONFIG_PPC_64K_PAGES
54
55#define pgd_populate(MM, PGD, PUD) pgd_set(PGD, PUD)
56
57static inline pud_t *pud_alloc_one(struct mm_struct *mm, unsigned long addr)
58{
David Gibsona0668cd2009-10-28 16:27:18 +000059 return kmem_cache_alloc(PGT_CACHE(PUD_INDEX_SIZE),
David Gibsonf88df142007-04-30 16:30:56 +100060 GFP_KERNEL|__GFP_REPEAT);
61}
62
Benjamin Herrenschmidt5e541972008-02-04 22:29:14 -080063static inline void pud_free(struct mm_struct *mm, pud_t *pud)
David Gibsonf88df142007-04-30 16:30:56 +100064{
David Gibsona0668cd2009-10-28 16:27:18 +000065 kmem_cache_free(PGT_CACHE(PUD_INDEX_SIZE), pud);
David Gibsonf88df142007-04-30 16:30:56 +100066}
67
68static inline void pud_populate(struct mm_struct *mm, pud_t *pud, pmd_t *pmd)
69{
70 pud_set(pud, (unsigned long)pmd);
71}
72
73#define pmd_populate(mm, pmd, pte_page) \
74 pmd_populate_kernel(mm, pmd, page_address(pte_page))
75#define pmd_populate_kernel(mm, pmd, pte) pmd_set(pmd, (unsigned long)(pte))
Martin Schwidefsky2f569af2008-02-08 04:22:04 -080076#define pmd_pgtable(pmd) pmd_page(pmd)
David Gibsonf88df142007-04-30 16:30:56 +100077
Aneesh Kumar K.Vd614bb02013-04-28 09:37:32 +000078static inline pte_t *pte_alloc_one_kernel(struct mm_struct *mm,
79 unsigned long address)
80{
81 return (pte_t *)__get_free_page(GFP_KERNEL | __GFP_REPEAT | __GFP_ZERO);
82}
David Gibsonf88df142007-04-30 16:30:56 +100083
Aneesh Kumar K.Vd614bb02013-04-28 09:37:32 +000084static inline pgtable_t pte_alloc_one(struct mm_struct *mm,
85 unsigned long address)
86{
87 struct page *page;
88 pte_t *pte;
89
90 pte = pte_alloc_one_kernel(mm, address);
91 if (!pte)
92 return NULL;
93 page = virt_to_page(pte);
94 pgtable_page_ctor(page);
95 return page;
96}
97
98static inline void pte_free_kernel(struct mm_struct *mm, pte_t *pte)
99{
100 free_page((unsigned long)pte);
101}
102
103static inline void pte_free(struct mm_struct *mm, pgtable_t ptepage)
104{
105 pgtable_page_dtor(ptepage);
106 __free_page(ptepage);
107}
108
109static inline void pgtable_free(void *table, unsigned index_size)
110{
111 if (!index_size)
112 free_page((unsigned long)table);
113 else {
114 BUG_ON(index_size > MAX_PGTABLE_INDEX_SIZE);
115 kmem_cache_free(PGT_CACHE(index_size), table);
116 }
117}
118
119#ifdef CONFIG_SMP
120static inline void pgtable_free_tlb(struct mmu_gather *tlb,
121 void *table, int shift)
122{
123 unsigned long pgf = (unsigned long)table;
124 BUG_ON(shift > MAX_PGTABLE_INDEX_SIZE);
125 pgf |= shift;
126 tlb_remove_table(tlb, (void *)pgf);
127}
128
129static inline void __tlb_remove_table(void *_table)
130{
131 void *table = (void *)((unsigned long)_table & ~MAX_PGTABLE_INDEX_SIZE);
132 unsigned shift = (unsigned long)_table & MAX_PGTABLE_INDEX_SIZE;
133
134 pgtable_free(table, shift);
135}
136#else /* !CONFIG_SMP */
137static inline void pgtable_free_tlb(struct mmu_gather *tlb,
138 void *table, int shift)
139{
140 pgtable_free(table, shift);
141}
142#endif /* CONFIG_SMP */
143
144static inline void __pte_free_tlb(struct mmu_gather *tlb, pgtable_t table,
145 unsigned long address)
146{
147 struct page *page = page_address(table);
148
149 tlb_flush_pgtable(tlb, address);
150 pgtable_page_dtor(page);
151 pgtable_free_tlb(tlb, page, 0);
152}
153
154#else /* if CONFIG_PPC_64K_PAGES */
Aneesh Kumar K.V5c1f6ee2013-04-28 09:37:33 +0000155/*
156 * we support 16 fragments per PTE page.
157 */
158#define PTE_FRAG_NR 16
159/*
160 * We use a 2K PTE page fragment and another 2K for storing
161 * real_pte_t hash index
162 */
163#define PTE_FRAG_SIZE_SHIFT 12
164#define PTE_FRAG_SIZE (2 * PTRS_PER_PTE * sizeof(pte_t))
165
166extern pte_t *page_table_alloc(struct mm_struct *, unsigned long, int);
167extern void page_table_free(struct mm_struct *, unsigned long *, int);
168extern void pgtable_free_tlb(struct mmu_gather *tlb, void *table, int shift);
169#ifdef CONFIG_SMP
170extern void __tlb_remove_table(void *_table);
171#endif
David Gibsonf88df142007-04-30 16:30:56 +1000172
173#define pud_populate(mm, pud, pmd) pud_set(pud, (unsigned long)pmd)
174
175static inline void pmd_populate_kernel(struct mm_struct *mm, pmd_t *pmd,
176 pte_t *pte)
177{
178 pmd_set(pmd, (unsigned long)pte);
179}
180
Aneesh Kumar K.Vd614bb02013-04-28 09:37:32 +0000181static inline void pmd_populate(struct mm_struct *mm, pmd_t *pmd,
182 pgtable_t pte_page)
183{
Aneesh Kumar K.V5c1f6ee2013-04-28 09:37:33 +0000184 pmd_set(pmd, (unsigned long)pte_page);
Aneesh Kumar K.Vd614bb02013-04-28 09:37:32 +0000185}
186
187static inline pgtable_t pmd_pgtable(pmd_t pmd)
188{
Aneesh Kumar K.V613e60a2013-05-11 22:33:19 +0000189 return (pgtable_t)(pmd_val(pmd) & ~PMD_MASKED_BITS);
Aneesh Kumar K.Vd614bb02013-04-28 09:37:32 +0000190}
191
192static inline pte_t *pte_alloc_one_kernel(struct mm_struct *mm,
193 unsigned long address)
194{
Aneesh Kumar K.V5c1f6ee2013-04-28 09:37:33 +0000195 return (pte_t *)page_table_alloc(mm, address, 1);
Aneesh Kumar K.Vd614bb02013-04-28 09:37:32 +0000196}
197
198static inline pgtable_t pte_alloc_one(struct mm_struct *mm,
Aneesh Kumar K.V5c1f6ee2013-04-28 09:37:33 +0000199 unsigned long address)
Aneesh Kumar K.Vd614bb02013-04-28 09:37:32 +0000200{
Aneesh Kumar K.V5c1f6ee2013-04-28 09:37:33 +0000201 return (pgtable_t)page_table_alloc(mm, address, 0);
Aneesh Kumar K.Vd614bb02013-04-28 09:37:32 +0000202}
203
204static inline void pte_free_kernel(struct mm_struct *mm, pte_t *pte)
205{
Aneesh Kumar K.V5c1f6ee2013-04-28 09:37:33 +0000206 page_table_free(mm, (unsigned long *)pte, 1);
Aneesh Kumar K.Vd614bb02013-04-28 09:37:32 +0000207}
208
209static inline void pte_free(struct mm_struct *mm, pgtable_t ptepage)
210{
Aneesh Kumar K.V5c1f6ee2013-04-28 09:37:33 +0000211 page_table_free(mm, (unsigned long *)ptepage, 0);
Aneesh Kumar K.Vd614bb02013-04-28 09:37:32 +0000212}
213
Aneesh Kumar K.Vd614bb02013-04-28 09:37:32 +0000214static inline void __pte_free_tlb(struct mmu_gather *tlb, pgtable_t table,
215 unsigned long address)
216{
Aneesh Kumar K.Vd614bb02013-04-28 09:37:32 +0000217 tlb_flush_pgtable(tlb, address);
Aneesh Kumar K.V5c1f6ee2013-04-28 09:37:33 +0000218 pgtable_free_tlb(tlb, table, 0);
Aneesh Kumar K.Vd614bb02013-04-28 09:37:32 +0000219}
David Gibsonf88df142007-04-30 16:30:56 +1000220#endif /* CONFIG_PPC_64K_PAGES */
221
222static inline pmd_t *pmd_alloc_one(struct mm_struct *mm, unsigned long addr)
223{
David Gibsona0668cd2009-10-28 16:27:18 +0000224 return kmem_cache_alloc(PGT_CACHE(PMD_INDEX_SIZE),
David Gibsonf88df142007-04-30 16:30:56 +1000225 GFP_KERNEL|__GFP_REPEAT);
226}
227
Benjamin Herrenschmidt5e541972008-02-04 22:29:14 -0800228static inline void pmd_free(struct mm_struct *mm, pmd_t *pmd)
David Gibsonf88df142007-04-30 16:30:56 +1000229{
David Gibsona0668cd2009-10-28 16:27:18 +0000230 kmem_cache_free(PGT_CACHE(PMD_INDEX_SIZE), pmd);
David Gibsonf88df142007-04-30 16:30:56 +1000231}
232
David Gibsona0668cd2009-10-28 16:27:18 +0000233#define __pmd_free_tlb(tlb, pmd, addr) \
234 pgtable_free_tlb(tlb, pmd, PMD_INDEX_SIZE)
David Gibsonf88df142007-04-30 16:30:56 +1000235#ifndef CONFIG_PPC_64K_PAGES
Benjamin Herrenschmidt9e1b32c2009-07-22 15:44:28 +1000236#define __pud_free_tlb(tlb, pud, addr) \
David Gibsona0668cd2009-10-28 16:27:18 +0000237 pgtable_free_tlb(tlb, pud, PUD_INDEX_SIZE)
238
David Gibsonf88df142007-04-30 16:30:56 +1000239#endif /* CONFIG_PPC_64K_PAGES */
240
241#define check_pgt_cache() do { } while (0)
242
243#endif /* _ASM_POWERPC_PGALLOC_64_H */