blob: 26bc49c1108dfcd09cc30c6feb455e00e833e15f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _PPC64_PGALLOC_H
2#define _PPC64_PGALLOC_H
3
4#include <linux/mm.h>
5#include <linux/slab.h>
6#include <linux/cpumask.h>
7#include <linux/percpu.h>
8
David Gibsone28f7fa2005-08-05 19:39:06 +10009extern kmem_cache_t *pgtable_cache[];
10
11#define PTE_CACHE_NUM 0
12#define PMD_CACHE_NUM 1
13#define PUD_CACHE_NUM 1
14#define PGD_CACHE_NUM 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
16/*
17 * This program is free software; you can redistribute it and/or
18 * modify it under the terms of the GNU General Public License
19 * as published by the Free Software Foundation; either version
20 * 2 of the License, or (at your option) any later version.
21 */
22
David Gibsone28f7fa2005-08-05 19:39:06 +100023static inline pgd_t *pgd_alloc(struct mm_struct *mm)
Linus Torvalds1da177e2005-04-16 15:20:36 -070024{
David Gibsone28f7fa2005-08-05 19:39:06 +100025 return kmem_cache_alloc(pgtable_cache[PGD_CACHE_NUM], GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070026}
27
David Gibsone28f7fa2005-08-05 19:39:06 +100028static inline void pgd_free(pgd_t *pgd)
Linus Torvalds1da177e2005-04-16 15:20:36 -070029{
David Gibsone28f7fa2005-08-05 19:39:06 +100030 kmem_cache_free(pgtable_cache[PGD_CACHE_NUM], pgd);
31}
32
33#define pgd_populate(MM, PGD, PUD) pgd_set(PGD, PUD)
34
35static inline pud_t *pud_alloc_one(struct mm_struct *mm, unsigned long addr)
36{
37 return kmem_cache_alloc(pgtable_cache[PUD_CACHE_NUM],
38 GFP_KERNEL|__GFP_REPEAT);
39}
40
41static inline void pud_free(pud_t *pud)
42{
43 kmem_cache_free(pgtable_cache[PUD_CACHE_NUM], pud);
Linus Torvalds1da177e2005-04-16 15:20:36 -070044}
45
Benjamin Herrenschmidt58366af2005-05-01 08:58:44 -070046#define pud_populate(MM, PUD, PMD) pud_set(PUD, PMD)
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
David Gibsone28f7fa2005-08-05 19:39:06 +100048static inline pmd_t *pmd_alloc_one(struct mm_struct *mm, unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070049{
David Gibsone28f7fa2005-08-05 19:39:06 +100050 return kmem_cache_alloc(pgtable_cache[PMD_CACHE_NUM],
51 GFP_KERNEL|__GFP_REPEAT);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052}
53
David Gibsone28f7fa2005-08-05 19:39:06 +100054static inline void pmd_free(pmd_t *pmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -070055{
David Gibsone28f7fa2005-08-05 19:39:06 +100056 kmem_cache_free(pgtable_cache[PMD_CACHE_NUM], pmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057}
58
59#define pmd_populate_kernel(mm, pmd, pte) pmd_set(pmd, pte)
60#define pmd_populate(mm, pmd, pte_page) \
61 pmd_populate_kernel(mm, pmd, page_address(pte_page))
62
63static inline pte_t *pte_alloc_one_kernel(struct mm_struct *mm, unsigned long address)
64{
David Gibsone28f7fa2005-08-05 19:39:06 +100065 return kmem_cache_alloc(pgtable_cache[PTE_CACHE_NUM],
66 GFP_KERNEL|__GFP_REPEAT);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067}
68
69static inline struct page *pte_alloc_one(struct mm_struct *mm, unsigned long address)
70{
David Gibsone28f7fa2005-08-05 19:39:06 +100071 return virt_to_page(pte_alloc_one_kernel(mm, address));
Linus Torvalds1da177e2005-04-16 15:20:36 -070072}
73
74static inline void pte_free_kernel(pte_t *pte)
75{
David Gibsone28f7fa2005-08-05 19:39:06 +100076 kmem_cache_free(pgtable_cache[PTE_CACHE_NUM], pte);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077}
78
79static inline void pte_free(struct page *ptepage)
80{
David Gibsone28f7fa2005-08-05 19:39:06 +100081 pte_free_kernel(page_address(ptepage));
Linus Torvalds1da177e2005-04-16 15:20:36 -070082}
83
David Gibsone28f7fa2005-08-05 19:39:06 +100084#define PGF_CACHENUM_MASK 0xf
85
86typedef struct pgtable_free {
87 unsigned long val;
88} pgtable_free_t;
89
90static inline pgtable_free_t pgtable_free_cache(void *p, int cachenum,
91 unsigned long mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -070092{
David Gibsone28f7fa2005-08-05 19:39:06 +100093 BUG_ON(cachenum > PGF_CACHENUM_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
David Gibsone28f7fa2005-08-05 19:39:06 +100095 return (pgtable_free_t){.val = ((unsigned long) p & ~mask) | cachenum};
96}
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
David Gibsone28f7fa2005-08-05 19:39:06 +100098static inline void pgtable_free(pgtable_free_t pgf)
99{
100 void *p = (void *)(pgf.val & ~PGF_CACHENUM_MASK);
101 int cachenum = pgf.val & PGF_CACHENUM_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
David Gibsone28f7fa2005-08-05 19:39:06 +1000103 kmem_cache_free(pgtable_cache[cachenum], p);
104}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
David Gibsone28f7fa2005-08-05 19:39:06 +1000106void pgtable_free_tlb(struct mmu_gather *tlb, pgtable_free_t pgf);
107
108#define __pte_free_tlb(tlb, ptepage) \
109 pgtable_free_tlb(tlb, pgtable_free_cache(page_address(ptepage), \
110 PTE_CACHE_NUM, PTE_TABLE_SIZE-1))
111#define __pmd_free_tlb(tlb, pmd) \
112 pgtable_free_tlb(tlb, pgtable_free_cache(pmd, \
113 PMD_CACHE_NUM, PMD_TABLE_SIZE-1))
114#define __pud_free_tlb(tlb, pmd) \
115 pgtable_free_tlb(tlb, pgtable_free_cache(pud, \
116 PUD_CACHE_NUM, PUD_TABLE_SIZE-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
118#define check_pgt_cache() do { } while (0)
119
120#endif /* _PPC64_PGALLOC_H */