blob: e2d62d033708c4494a5e95d941b8d34cad3ec3e0 [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};
Hari Bathini8ff81272013-11-15 23:01:32 +053019extern struct vmemmap_backing *vmemmap_list;
Mark Nelson91eea672010-04-21 16:21:03 +000020
David Gibsona0668cd2009-10-28 16:27:18 +000021/*
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 Gibsonf88df142007-04-30 16:30:56 +100038extern struct kmem_cache *pgtable_cache[];
Aneesh Kumar K.Vcf9427b2013-04-28 09:37:29 +000039#define PGT_CACHE(shift) ({ \
40 BUG_ON(!(shift)); \
41 pgtable_cache[(shift) - 1]; \
42 })
David Gibsonf88df142007-04-30 16:30:56 +100043
44static inline pgd_t *pgd_alloc(struct mm_struct *mm)
45{
Balbir Singhde3b8762017-05-02 15:17:04 +100046 return kmem_cache_alloc(PGT_CACHE(PGD_INDEX_SIZE),
47 pgtable_gfp_flags(mm, GFP_KERNEL));
David Gibsonf88df142007-04-30 16:30:56 +100048}
49
Benjamin Herrenschmidt5e541972008-02-04 22:29:14 -080050static inline void pgd_free(struct mm_struct *mm, pgd_t *pgd)
David Gibsonf88df142007-04-30 16:30:56 +100051{
David Gibsona0668cd2009-10-28 16:27:18 +000052 kmem_cache_free(PGT_CACHE(PGD_INDEX_SIZE), pgd);
David Gibsonf88df142007-04-30 16:30:56 +100053}
54
Aneesh Kumar K.V27209202016-04-29 23:26:15 +100055#define pgd_populate(MM, PGD, PUD) pgd_set(PGD, (unsigned long)PUD)
David Gibsonf88df142007-04-30 16:30:56 +100056
57static inline pud_t *pud_alloc_one(struct mm_struct *mm, unsigned long addr)
58{
Balbir Singhde3b8762017-05-02 15:17:04 +100059 return kmem_cache_alloc(PGT_CACHE(PUD_INDEX_SIZE),
60 pgtable_gfp_flags(mm, GFP_KERNEL));
David Gibsonf88df142007-04-30 16:30:56 +100061}
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{
Aneesh Kumar K.V27209202016-04-29 23:26:15 +100070 pud_set(pud, (unsigned long)pmd);
David Gibsonf88df142007-04-30 16:30:56 +100071}
72
Aneesh Kumar K.Vf281b5d2015-12-01 09:06:35 +053073static inline void pmd_populate_kernel(struct mm_struct *mm, pmd_t *pmd,
74 pte_t *pte)
75{
Aneesh Kumar K.V27209202016-04-29 23:26:15 +100076 pmd_set(pmd, (unsigned long)pte);
Aneesh Kumar K.Vf281b5d2015-12-01 09:06:35 +053077}
78
79static inline void pmd_populate(struct mm_struct *mm, pmd_t *pmd,
80 pgtable_t pte_page)
81{
Aneesh Kumar K.V27209202016-04-29 23:26:15 +100082 pmd_set(pmd, (unsigned long)page_address(pte_page));
Aneesh Kumar K.Vf281b5d2015-12-01 09:06:35 +053083}
84
Martin Schwidefsky2f569af2008-02-08 04:22:04 -080085#define pmd_pgtable(pmd) pmd_page(pmd)
David Gibsonf88df142007-04-30 16:30:56 +100086
Aneesh Kumar K.V70234672018-04-16 16:57:19 +053087static inline pmd_t *pmd_alloc_one(struct mm_struct *mm, unsigned long addr)
88{
89 return kmem_cache_alloc(PGT_CACHE(PMD_CACHE_INDEX),
90 pgtable_gfp_flags(mm, GFP_KERNEL));
91}
92
93static inline void pmd_free(struct mm_struct *mm, pmd_t *pmd)
94{
95 kmem_cache_free(PGT_CACHE(PMD_CACHE_INDEX), pmd);
96}
97
98
Aneesh Kumar K.Vd614bb02013-04-28 09:37:32 +000099static inline pte_t *pte_alloc_one_kernel(struct mm_struct *mm,
100 unsigned long address)
101{
Michal Hocko32d6bd92016-06-24 14:48:47 -0700102 return (pte_t *)__get_free_page(GFP_KERNEL | __GFP_ZERO);
Aneesh Kumar K.Vd614bb02013-04-28 09:37:32 +0000103}
David Gibsonf88df142007-04-30 16:30:56 +1000104
Aneesh Kumar K.Vd614bb02013-04-28 09:37:32 +0000105static inline pgtable_t pte_alloc_one(struct mm_struct *mm,
106 unsigned long address)
107{
108 struct page *page;
109 pte_t *pte;
110
Balbir Singhde3b8762017-05-02 15:17:04 +1000111 pte = (pte_t *)__get_free_page(GFP_KERNEL | __GFP_ZERO | __GFP_ACCOUNT);
Aneesh Kumar K.Vd614bb02013-04-28 09:37:32 +0000112 if (!pte)
113 return NULL;
114 page = virt_to_page(pte);
Kirill A. Shutemov4f8049432013-11-14 14:31:38 -0800115 if (!pgtable_page_ctor(page)) {
116 __free_page(page);
117 return NULL;
118 }
Aneesh Kumar K.Vd614bb02013-04-28 09:37:32 +0000119 return page;
120}
121
122static inline void pte_free_kernel(struct mm_struct *mm, pte_t *pte)
123{
124 free_page((unsigned long)pte);
125}
126
127static inline void pte_free(struct mm_struct *mm, pgtable_t ptepage)
128{
129 pgtable_page_dtor(ptepage);
130 __free_page(ptepage);
131}
132
Aneesh Kumar K.V70234672018-04-16 16:57:19 +0530133static inline void pgtable_free(void *table, int shift)
134{
135 if (!shift) {
Aneesh Kumar K.V667416f2018-05-30 18:02:25 +0530136 pgtable_page_dtor(virt_to_page(table));
Aneesh Kumar K.V70234672018-04-16 16:57:19 +0530137 free_page((unsigned long)table);
138 } else {
139 BUG_ON(shift > MAX_PGTABLE_INDEX_SIZE);
140 kmem_cache_free(PGT_CACHE(shift), table);
141 }
142}
143
Aneesh Kumar K.Vfadd03c2018-06-14 16:01:52 +0530144#define get_hugepd_cache_index(x) (x)
Aneesh Kumar K.Vd614bb02013-04-28 09:37:32 +0000145#ifdef CONFIG_SMP
Aneesh Kumar K.V70234672018-04-16 16:57:19 +0530146static inline void pgtable_free_tlb(struct mmu_gather *tlb, void *table, int shift)
147{
148 unsigned long pgf = (unsigned long)table;
149
150 BUG_ON(shift > MAX_PGTABLE_INDEX_SIZE);
151 pgf |= shift;
152 tlb_remove_table(tlb, (void *)pgf);
153}
154
155static inline void __tlb_remove_table(void *_table)
156{
157 void *table = (void *)((unsigned long)_table & ~MAX_PGTABLE_INDEX_SIZE);
158 unsigned shift = (unsigned long)_table & MAX_PGTABLE_INDEX_SIZE;
159
160 pgtable_free(table, shift);
161}
162
163#else
164static inline void pgtable_free_tlb(struct mmu_gather *tlb, void *table, int shift)
165{
166 pgtable_free(table, shift);
167}
Aneesh Kumar K.V934828e2016-04-29 23:26:18 +1000168#endif
Aneesh Kumar K.V70234672018-04-16 16:57:19 +0530169
Aneesh Kumar K.Vd614bb02013-04-28 09:37:32 +0000170static inline void __pte_free_tlb(struct mmu_gather *tlb, pgtable_t table,
171 unsigned long address)
172{
Aneesh Kumar K.Vd614bb02013-04-28 09:37:32 +0000173 tlb_flush_pgtable(tlb, address);
Hong H. Phamcf77ee52013-12-07 09:06:33 -0500174 pgtable_free_tlb(tlb, page_address(table), 0);
Aneesh Kumar K.Vd614bb02013-04-28 09:37:32 +0000175}
176
David Gibsona0668cd2009-10-28 16:27:18 +0000177#define __pmd_free_tlb(tlb, pmd, addr) \
Aneesh Kumar K.Vf940f522013-06-20 14:30:14 +0530178 pgtable_free_tlb(tlb, pmd, PMD_CACHE_INDEX)
Aneesh Kumar K.V27209202016-04-29 23:26:15 +1000179#ifndef CONFIG_PPC_64K_PAGES
Benjamin Herrenschmidt9e1b32c2009-07-22 15:44:28 +1000180#define __pud_free_tlb(tlb, pud, addr) \
David Gibsona0668cd2009-10-28 16:27:18 +0000181 pgtable_free_tlb(tlb, pud, PUD_INDEX_SIZE)
182
Aneesh Kumar K.V27209202016-04-29 23:26:15 +1000183#endif /* CONFIG_PPC_64K_PAGES */
David Gibsonf88df142007-04-30 16:30:56 +1000184
185#define check_pgt_cache() do { } while (0)
186
187#endif /* _ASM_POWERPC_PGALLOC_64_H */