blob: 60e7f514ea0141b1032292538eb9133574480d27 [file] [log] [blame]
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -07001#ifndef _ASM_X86_PGALLOC_H
2#define _ASM_X86_PGALLOC_H
3
4#include <linux/threads.h>
5#include <linux/mm.h> /* for struct page */
6#include <linux/pagemap.h>
7
Jeremy Fitzhardinge1d262d32008-03-17 16:36:56 -07008#ifdef CONFIG_PARAVIRT
9#include <asm/paravirt.h>
10#else
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -070011#define paravirt_alloc_pte(mm, pfn) do { } while (0)
12#define paravirt_alloc_pmd(mm, pfn) do { } while (0)
13#define paravirt_alloc_pmd_clone(pfn, clonepfn, start, count) do { } while (0)
Jeremy Fitzhardinge2761fa02008-03-17 16:37:02 -070014#define paravirt_alloc_pud(mm, pfn) do { } while (0)
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -070015#define paravirt_release_pte(pfn) do { } while (0)
16#define paravirt_release_pmd(pfn) do { } while (0)
Jeremy Fitzhardinge2761fa02008-03-17 16:37:02 -070017#define paravirt_release_pud(pfn) do { } while (0)
Jeremy Fitzhardinge1d262d32008-03-17 16:36:56 -070018#endif
19
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -070020/*
21 * Allocate and free page tables.
22 */
23extern pgd_t *pgd_alloc(struct mm_struct *);
24extern void pgd_free(struct mm_struct *mm, pgd_t *pgd);
25
26extern pte_t *pte_alloc_one_kernel(struct mm_struct *, unsigned long);
27extern pgtable_t pte_alloc_one(struct mm_struct *, unsigned long);
28
Jeremy Fitzhardinge397f6872008-03-17 16:36:57 -070029/* Should really implement gc for free page table pages. This could be
30 done with a reference count in struct page. */
31
32static inline void pte_free_kernel(struct mm_struct *mm, pte_t *pte)
33{
34 BUG_ON((unsigned long)pte & (PAGE_SIZE-1));
35 free_page((unsigned long)pte);
36}
37
38static inline void pte_free(struct mm_struct *mm, struct page *pte)
39{
40 __free_page(pte);
41}
42
43extern void __pte_free_tlb(struct mmu_gather *tlb, struct page *pte);
44
Jeremy Fitzhardinge170fdff2008-03-17 16:36:58 -070045static inline void pmd_populate_kernel(struct mm_struct *mm,
46 pmd_t *pmd, pte_t *pte)
47{
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -070048 paravirt_alloc_pte(mm, __pa(pte) >> PAGE_SHIFT);
Jeremy Fitzhardinge170fdff2008-03-17 16:36:58 -070049 set_pmd(pmd, __pmd(__pa(pte) | _PAGE_TABLE));
50}
51
52static inline void pmd_populate(struct mm_struct *mm, pmd_t *pmd,
53 struct page *pte)
54{
55 unsigned long pfn = page_to_pfn(pte);
56
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -070057 paravirt_alloc_pte(mm, pfn);
Jeremy Fitzhardinge170fdff2008-03-17 16:36:58 -070058 set_pmd(pmd, __pmd(((pteval_t)pfn << PAGE_SHIFT) | _PAGE_TABLE));
59}
60
61#define pmd_pgtable(pmd) pmd_page(pmd)
62
63#if PAGETABLE_LEVELS > 2
64static inline pmd_t *pmd_alloc_one(struct mm_struct *mm, unsigned long addr)
65{
66 return (pmd_t *)get_zeroed_page(GFP_KERNEL|__GFP_REPEAT);
67}
68
69static inline void pmd_free(struct mm_struct *mm, pmd_t *pmd)
70{
71 BUG_ON((unsigned long)pmd & (PAGE_SIZE-1));
72 free_page((unsigned long)pmd);
73}
74
75extern void __pmd_free_tlb(struct mmu_gather *tlb, pmd_t *pmd);
Jeremy Fitzhardinge170fdff2008-03-17 16:36:58 -070076
Jeremy Fitzhardinge5a5f8f42008-03-17 16:36:59 -070077#ifdef CONFIG_X86_PAE
78extern void pud_populate(struct mm_struct *mm, pud_t *pudp, pmd_t *pmd);
79#else /* !CONFIG_X86_PAE */
80static inline void pud_populate(struct mm_struct *mm, pud_t *pud, pmd_t *pmd)
81{
Jeremy Fitzhardinge6944a9c2008-03-17 16:37:01 -070082 paravirt_alloc_pmd(mm, __pa(pmd) >> PAGE_SHIFT);
Jeremy Fitzhardinge5a5f8f42008-03-17 16:36:59 -070083 set_pud(pud, __pud(_PAGE_TABLE | __pa(pmd)));
84}
85#endif /* CONFIG_X86_PAE */
86
87#if PAGETABLE_LEVELS > 3
88static inline void pgd_populate(struct mm_struct *mm, pgd_t *pgd, pud_t *pud)
89{
Jeremy Fitzhardinge2761fa02008-03-17 16:37:02 -070090 paravirt_alloc_pud(mm, __pa(pud) >> PAGE_SHIFT);
Jeremy Fitzhardinge5a5f8f42008-03-17 16:36:59 -070091 set_pgd(pgd, __pgd(_PAGE_TABLE | __pa(pud)));
92}
93
94static inline pud_t *pud_alloc_one(struct mm_struct *mm, unsigned long addr)
95{
96 return (pud_t *)get_zeroed_page(GFP_KERNEL|__GFP_REPEAT);
97}
98
99static inline void pud_free(struct mm_struct *mm, pud_t *pud)
100{
101 BUG_ON((unsigned long)pud & (PAGE_SIZE-1));
102 free_page((unsigned long)pud);
103}
104
105extern void __pud_free_tlb(struct mmu_gather *tlb, pud_t *pud);
106#endif /* PAGETABLE_LEVELS > 3 */
107#endif /* PAGETABLE_LEVELS > 2 */
Jeremy Fitzhardinge4f76cd32008-03-17 16:36:55 -0700108
109#endif /* _ASM_X86_PGALLOC_H */