blob: 4f6220db22b110bbf1606d75316a36e1b458fa1a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _X86_64_PGALLOC_H
2#define _X86_64_PGALLOC_H
3
Linus Torvalds1da177e2005-04-16 15:20:36 -07004#include <asm/pda.h>
5#include <linux/threads.h>
6#include <linux/mm.h>
7
8#define pmd_populate_kernel(mm, pmd, pte) \
9 set_pmd(pmd, __pmd(_PAGE_TABLE | __pa(pte)))
10#define pud_populate(mm, pud, pmd) \
11 set_pud(pud, __pud(_PAGE_TABLE | __pa(pmd)))
12#define pgd_populate(mm, pgd, pud) \
13 set_pgd(pgd, __pgd(_PAGE_TABLE | __pa(pud)))
14
15static inline void pmd_populate(struct mm_struct *mm, pmd_t *pmd, struct page *pte)
16{
17 set_pmd(pmd, __pmd(_PAGE_TABLE | (page_to_pfn(pte) << PAGE_SHIFT)));
18}
19
Benjamin Herrenschmidt5e541972008-02-04 22:29:14 -080020static inline void pmd_free(struct mm_struct *mm, pmd_t *pmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -070021{
22 BUG_ON((unsigned long)pmd & (PAGE_SIZE-1));
Linus Torvaldsda8f1532007-09-21 12:09:41 -070023 free_page((unsigned long)pmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -070024}
25
26static inline pmd_t *pmd_alloc_one (struct mm_struct *mm, unsigned long addr)
27{
Linus Torvaldsda8f1532007-09-21 12:09:41 -070028 return (pmd_t *)get_zeroed_page(GFP_KERNEL|__GFP_REPEAT);
Linus Torvalds1da177e2005-04-16 15:20:36 -070029}
30
31static inline pud_t *pud_alloc_one(struct mm_struct *mm, unsigned long addr)
32{
Linus Torvaldsda8f1532007-09-21 12:09:41 -070033 return (pud_t *)get_zeroed_page(GFP_KERNEL|__GFP_REPEAT);
Linus Torvalds1da177e2005-04-16 15:20:36 -070034}
35
Benjamin Herrenschmidt5e541972008-02-04 22:29:14 -080036static inline void pud_free(struct mm_struct *mm, pud_t *pud)
Linus Torvalds1da177e2005-04-16 15:20:36 -070037{
38 BUG_ON((unsigned long)pud & (PAGE_SIZE-1));
Linus Torvaldsda8f1532007-09-21 12:09:41 -070039 free_page((unsigned long)pud);
Linus Torvalds1da177e2005-04-16 15:20:36 -070040}
41
Jan Beulich8c914cb2006-03-25 16:29:40 +010042static inline void pgd_list_add(pgd_t *pgd)
43{
44 struct page *page = virt_to_page(pgd);
Ingo Molnar58d5d0d2008-02-06 22:39:45 +010045 unsigned long flags;
Jan Beulich8c914cb2006-03-25 16:29:40 +010046
Ingo Molnar58d5d0d2008-02-06 22:39:45 +010047 spin_lock_irqsave(&pgd_lock, flags);
Christoph Lameter2bff7382007-05-02 19:27:10 +020048 list_add(&page->lru, &pgd_list);
Ingo Molnar58d5d0d2008-02-06 22:39:45 +010049 spin_unlock_irqrestore(&pgd_lock, flags);
Jan Beulich8c914cb2006-03-25 16:29:40 +010050}
51
52static inline void pgd_list_del(pgd_t *pgd)
53{
Christoph Lameter2bff7382007-05-02 19:27:10 +020054 struct page *page = virt_to_page(pgd);
Ingo Molnar58d5d0d2008-02-06 22:39:45 +010055 unsigned long flags;
Jan Beulich8c914cb2006-03-25 16:29:40 +010056
Ingo Molnar58d5d0d2008-02-06 22:39:45 +010057 spin_lock_irqsave(&pgd_lock, flags);
Christoph Lameter2bff7382007-05-02 19:27:10 +020058 list_del(&page->lru);
Ingo Molnar58d5d0d2008-02-06 22:39:45 +010059 spin_unlock_irqrestore(&pgd_lock, flags);
Jan Beulich8c914cb2006-03-25 16:29:40 +010060}
61
Christoph Lameter34feb2c2007-07-21 17:10:30 +020062static inline pgd_t *pgd_alloc(struct mm_struct *mm)
63{
Linus Torvaldsda8f1532007-09-21 12:09:41 -070064 unsigned boundary;
65 pgd_t *pgd = (pgd_t *)__get_free_page(GFP_KERNEL|__GFP_REPEAT);
66 if (!pgd)
67 return NULL;
68 pgd_list_add(pgd);
69 /*
70 * Copy kernel pointers in from init.
71 * Could keep a freelist or slab cache of those because the kernel
72 * part never changes.
73 */
74 boundary = pgd_index(__PAGE_OFFSET);
75 memset(pgd, 0, boundary * sizeof(pgd_t));
76 memcpy(pgd + boundary,
77 init_level4_pgt + boundary,
78 (PTRS_PER_PGD - boundary) * sizeof(pgd_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 return pgd;
80}
81
Benjamin Herrenschmidt5e541972008-02-04 22:29:14 -080082static inline void pgd_free(struct mm_struct *mm, pgd_t *pgd)
Linus Torvalds1da177e2005-04-16 15:20:36 -070083{
84 BUG_ON((unsigned long)pgd & (PAGE_SIZE-1));
Linus Torvaldsda8f1532007-09-21 12:09:41 -070085 pgd_list_del(pgd);
86 free_page((unsigned long)pgd);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087}
88
89static inline pte_t *pte_alloc_one_kernel(struct mm_struct *mm, unsigned long address)
90{
Linus Torvaldsda8f1532007-09-21 12:09:41 -070091 return (pte_t *)get_zeroed_page(GFP_KERNEL|__GFP_REPEAT);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092}
93
94static inline struct page *pte_alloc_one(struct mm_struct *mm, unsigned long address)
95{
Linus Torvaldsda8f1532007-09-21 12:09:41 -070096 void *p = (void *)get_zeroed_page(GFP_KERNEL|__GFP_REPEAT);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 if (!p)
98 return NULL;
99 return virt_to_page(p);
100}
101
102/* Should really implement gc for free page table pages. This could be
103 done with a reference count in struct page. */
104
Benjamin Herrenschmidt5e541972008-02-04 22:29:14 -0800105static inline void pte_free_kernel(struct mm_struct *mm, pte_t *pte)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106{
107 BUG_ON((unsigned long)pte & (PAGE_SIZE-1));
Linus Torvaldsda8f1532007-09-21 12:09:41 -0700108 free_page((unsigned long)pte);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109}
110
Benjamin Herrenschmidt5e541972008-02-04 22:29:14 -0800111static inline void pte_free(struct mm_struct *mm, struct page *pte)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112{
Linus Torvaldsda8f1532007-09-21 12:09:41 -0700113 __free_page(pte);
114}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
Linus Torvaldsda8f1532007-09-21 12:09:41 -0700116#define __pte_free_tlb(tlb,pte) tlb_remove_page((tlb),(pte))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Linus Torvaldsda8f1532007-09-21 12:09:41 -0700118#define __pmd_free_tlb(tlb,x) tlb_remove_page((tlb),virt_to_page(x))
119#define __pud_free_tlb(tlb,x) tlb_remove_page((tlb),virt_to_page(x))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121#endif /* _X86_64_PGALLOC_H */