blob: 69e352a5252b77f6835860f01aa7ab599dedb397 [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
78
79#else /* CONFIG_PPC_64K_PAGES */
80
81#define pud_populate(mm, pud, pmd) pud_set(pud, (unsigned long)pmd)
82
83static inline void pmd_populate_kernel(struct mm_struct *mm, pmd_t *pmd,
84 pte_t *pte)
85{
86 pmd_set(pmd, (unsigned long)pte);
87}
88
89#define pmd_populate(mm, pmd, pte_page) \
90 pmd_populate_kernel(mm, pmd, page_address(pte_page))
Martin Schwidefsky2f569af2008-02-08 04:22:04 -080091#define pmd_pgtable(pmd) pmd_page(pmd)
David Gibsonf88df142007-04-30 16:30:56 +100092
93#endif /* CONFIG_PPC_64K_PAGES */
94
95static inline pmd_t *pmd_alloc_one(struct mm_struct *mm, unsigned long addr)
96{
David Gibsona0668cd2009-10-28 16:27:18 +000097 return kmem_cache_alloc(PGT_CACHE(PMD_INDEX_SIZE),
David Gibsonf88df142007-04-30 16:30:56 +100098 GFP_KERNEL|__GFP_REPEAT);
99}
100
Benjamin Herrenschmidt5e541972008-02-04 22:29:14 -0800101static inline void pmd_free(struct mm_struct *mm, pmd_t *pmd)
David Gibsonf88df142007-04-30 16:30:56 +1000102{
David Gibsona0668cd2009-10-28 16:27:18 +0000103 kmem_cache_free(PGT_CACHE(PMD_INDEX_SIZE), pmd);
David Gibsonf88df142007-04-30 16:30:56 +1000104}
105
106static inline pte_t *pte_alloc_one_kernel(struct mm_struct *mm,
107 unsigned long address)
108{
Hugh Dickins517e2262007-05-09 14:38:48 +1000109 return (pte_t *)__get_free_page(GFP_KERNEL | __GFP_REPEAT | __GFP_ZERO);
David Gibsonf88df142007-04-30 16:30:56 +1000110}
111
Martin Schwidefsky2f569af2008-02-08 04:22:04 -0800112static inline pgtable_t pte_alloc_one(struct mm_struct *mm,
113 unsigned long address)
David Gibsonf88df142007-04-30 16:30:56 +1000114{
Martin Schwidefsky2f569af2008-02-08 04:22:04 -0800115 struct page *page;
116 pte_t *pte;
117
118 pte = pte_alloc_one_kernel(mm, address);
119 if (!pte)
120 return NULL;
121 page = virt_to_page(pte);
122 pgtable_page_ctor(page);
123 return page;
David Gibsonf88df142007-04-30 16:30:56 +1000124}
125
David Gibsona0668cd2009-10-28 16:27:18 +0000126static inline void pgtable_free(void *table, unsigned index_size)
David Gibsonf88df142007-04-30 16:30:56 +1000127{
David Gibsona0668cd2009-10-28 16:27:18 +0000128 if (!index_size)
129 free_page((unsigned long)table);
130 else {
131 BUG_ON(index_size > MAX_PGTABLE_INDEX_SIZE);
132 kmem_cache_free(PGT_CACHE(index_size), table);
133 }
David Gibsonf88df142007-04-30 16:30:56 +1000134}
135
David Gibsona0668cd2009-10-28 16:27:18 +0000136#define __pmd_free_tlb(tlb, pmd, addr) \
137 pgtable_free_tlb(tlb, pmd, PMD_INDEX_SIZE)
David Gibsonf88df142007-04-30 16:30:56 +1000138#ifndef CONFIG_PPC_64K_PAGES
Benjamin Herrenschmidt9e1b32c2009-07-22 15:44:28 +1000139#define __pud_free_tlb(tlb, pud, addr) \
David Gibsona0668cd2009-10-28 16:27:18 +0000140 pgtable_free_tlb(tlb, pud, PUD_INDEX_SIZE)
141
David Gibsonf88df142007-04-30 16:30:56 +1000142#endif /* CONFIG_PPC_64K_PAGES */
143
144#define check_pgt_cache() do { } while (0)
145
146#endif /* _ASM_POWERPC_PGALLOC_64_H */