2 * Copyright (C) 2004-2006 Atmel Corporation
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
8 #ifndef __ASM_AVR32_PGALLOC_H
9 #define __ASM_AVR32_PGALLOC_H
11 #include <asm/processor.h>
12 #include <linux/threads.h>
13 #include <linux/slab.h>
16 #define pmd_populate_kernel(mm, pmd, pte) \
17 set_pmd(pmd, __pmd(_PAGE_TABLE + __pa(pte)))
19 static __inline__ void pmd_populate(struct mm_struct *mm, pmd_t *pmd,
22 set_pmd(pmd, __pmd(_PAGE_TABLE + page_to_phys(pte)));
26 * Allocate and free page tables
28 static __inline__ pgd_t *pgd_alloc(struct mm_struct *mm)
30 return kcalloc(USER_PTRS_PER_PGD, sizeof(pgd_t), GFP_KERNEL);
33 static inline void pgd_free(struct mm_struct *mm, pgd_t *pgd)
38 static inline pte_t *pte_alloc_one_kernel(struct mm_struct *mm,
39 unsigned long address)
43 pte = (pte_t *)get_zeroed_page(GFP_KERNEL | __GFP_REPEAT);
48 static inline struct page *pte_alloc_one(struct mm_struct *mm,
49 unsigned long address)
53 pte = alloc_page(GFP_KERNEL | __GFP_REPEAT | __GFP_ZERO);
58 static inline void pte_free_kernel(struct mm_struct *mm, pte_t *pte)
60 free_page((unsigned long)pte);
63 static inline void pte_free(struct mm_struct *mm, struct page *pte)
68 #define __pte_free_tlb(tlb,pte) tlb_remove_page((tlb),(pte))
70 #define check_pgt_cache() do { } while(0)
72 #endif /* __ASM_AVR32_PGALLOC_H */