blob: dcf3622d19462110dda6332b30f9234feb8f16cc [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
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110011#ifdef CONFIG_PPC_64K_PAGES
12#define PTE_CACHE_NUM 0
Benjamin Herrenschmidt87655ff2005-11-10 14:53:16 +110013#define PMD_CACHE_NUM 1
14#define PGD_CACHE_NUM 2
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110015#else
David Gibsone28f7fa2005-08-05 19:39:06 +100016#define PTE_CACHE_NUM 0
17#define PMD_CACHE_NUM 1
18#define PUD_CACHE_NUM 1
19#define PGD_CACHE_NUM 0
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110020#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
22/*
23 * This program is free software; you can redistribute it and/or
24 * modify it under the terms of the GNU General Public License
25 * as published by the Free Software Foundation; either version
26 * 2 of the License, or (at your option) any later version.
27 */
28
David Gibsone28f7fa2005-08-05 19:39:06 +100029static inline pgd_t *pgd_alloc(struct mm_struct *mm)
Linus Torvalds1da177e2005-04-16 15:20:36 -070030{
David Gibsone28f7fa2005-08-05 19:39:06 +100031 return kmem_cache_alloc(pgtable_cache[PGD_CACHE_NUM], GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070032}
33
David Gibsone28f7fa2005-08-05 19:39:06 +100034static inline void pgd_free(pgd_t *pgd)
Linus Torvalds1da177e2005-04-16 15:20:36 -070035{
David Gibsone28f7fa2005-08-05 19:39:06 +100036 kmem_cache_free(pgtable_cache[PGD_CACHE_NUM], pgd);
37}
38
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110039#ifndef CONFIG_PPC_64K_PAGES
40
David Gibsone28f7fa2005-08-05 19:39:06 +100041#define pgd_populate(MM, PGD, PUD) pgd_set(PGD, PUD)
42
43static inline pud_t *pud_alloc_one(struct mm_struct *mm, unsigned long addr)
44{
45 return kmem_cache_alloc(pgtable_cache[PUD_CACHE_NUM],
46 GFP_KERNEL|__GFP_REPEAT);
47}
48
49static inline void pud_free(pud_t *pud)
50{
51 kmem_cache_free(pgtable_cache[PUD_CACHE_NUM], pud);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052}
53
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110054static inline void pud_populate(struct mm_struct *mm, pud_t *pud, pmd_t *pmd)
55{
56 pud_set(pud, (unsigned long)pmd);
57}
58
59#define pmd_populate(mm, pmd, pte_page) \
60 pmd_populate_kernel(mm, pmd, page_address(pte_page))
61#define pmd_populate_kernel(mm, pmd, pte) pmd_set(pmd, (unsigned long)(pte))
62
63
64#else /* CONFIG_PPC_64K_PAGES */
65
66#define pud_populate(mm, pud, pmd) pud_set(pud, (unsigned long)pmd)
67
68static inline void pmd_populate_kernel(struct mm_struct *mm, pmd_t *pmd,
69 pte_t *pte)
70{
71 pmd_set(pmd, (unsigned long)pte);
72}
73
74#define pmd_populate(mm, pmd, pte_page) \
75 pmd_populate_kernel(mm, pmd, page_address(pte_page))
76
77#endif /* CONFIG_PPC_64K_PAGES */
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
David Gibsone28f7fa2005-08-05 19:39:06 +100079static inline pmd_t *pmd_alloc_one(struct mm_struct *mm, unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070080{
David Gibsone28f7fa2005-08-05 19:39:06 +100081 return kmem_cache_alloc(pgtable_cache[PMD_CACHE_NUM],
82 GFP_KERNEL|__GFP_REPEAT);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083}
84
David Gibsone28f7fa2005-08-05 19:39:06 +100085static inline void pmd_free(pmd_t *pmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -070086{
David Gibsone28f7fa2005-08-05 19:39:06 +100087 kmem_cache_free(pgtable_cache[PMD_CACHE_NUM], pmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088}
89
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110090static inline pte_t *pte_alloc_one_kernel(struct mm_struct *mm,
91 unsigned long address)
Linus Torvalds1da177e2005-04-16 15:20:36 -070092{
David Gibsone28f7fa2005-08-05 19:39:06 +100093 return kmem_cache_alloc(pgtable_cache[PTE_CACHE_NUM],
94 GFP_KERNEL|__GFP_REPEAT);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095}
96
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110097static inline struct page *pte_alloc_one(struct mm_struct *mm,
98 unsigned long address)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099{
David Gibsone28f7fa2005-08-05 19:39:06 +1000100 return virt_to_page(pte_alloc_one_kernel(mm, address));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101}
102
103static inline void pte_free_kernel(pte_t *pte)
104{
David Gibsone28f7fa2005-08-05 19:39:06 +1000105 kmem_cache_free(pgtable_cache[PTE_CACHE_NUM], pte);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106}
107
108static inline void pte_free(struct page *ptepage)
109{
David Gibsone28f7fa2005-08-05 19:39:06 +1000110 pte_free_kernel(page_address(ptepage));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111}
112
David Gibsone28f7fa2005-08-05 19:39:06 +1000113#define PGF_CACHENUM_MASK 0xf
114
115typedef struct pgtable_free {
116 unsigned long val;
117} pgtable_free_t;
118
119static inline pgtable_free_t pgtable_free_cache(void *p, int cachenum,
120 unsigned long mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121{
David Gibsone28f7fa2005-08-05 19:39:06 +1000122 BUG_ON(cachenum > PGF_CACHENUM_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
David Gibsone28f7fa2005-08-05 19:39:06 +1000124 return (pgtable_free_t){.val = ((unsigned long) p & ~mask) | cachenum};
125}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
David Gibsone28f7fa2005-08-05 19:39:06 +1000127static inline void pgtable_free(pgtable_free_t pgf)
128{
129 void *p = (void *)(pgf.val & ~PGF_CACHENUM_MASK);
130 int cachenum = pgf.val & PGF_CACHENUM_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
David Gibsone28f7fa2005-08-05 19:39:06 +1000132 kmem_cache_free(pgtable_cache[cachenum], p);
133}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100135extern void pgtable_free_tlb(struct mmu_gather *tlb, pgtable_free_t pgf);
David Gibsone28f7fa2005-08-05 19:39:06 +1000136
137#define __pte_free_tlb(tlb, ptepage) \
138 pgtable_free_tlb(tlb, pgtable_free_cache(page_address(ptepage), \
139 PTE_CACHE_NUM, PTE_TABLE_SIZE-1))
140#define __pmd_free_tlb(tlb, pmd) \
141 pgtable_free_tlb(tlb, pgtable_free_cache(pmd, \
142 PMD_CACHE_NUM, PMD_TABLE_SIZE-1))
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100143#ifndef CONFIG_PPC_64K_PAGES
David Gibsone28f7fa2005-08-05 19:39:06 +1000144#define __pud_free_tlb(tlb, pmd) \
145 pgtable_free_tlb(tlb, pgtable_free_cache(pud, \
146 PUD_CACHE_NUM, PUD_TABLE_SIZE-1))
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100147#endif /* CONFIG_PPC_64K_PAGES */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
149#define check_pgt_cache() do { } while (0)
150
151#endif /* _PPC64_PGALLOC_H */