Merge tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost
[cris-mirror.git] / arch / riscv / include / asm / pgalloc.h
bloba79ed5faff3aaaca774ee84ff657f87fd22e8897
1 /*
2 * Copyright (C) 2009 Chen Liqin <liqin.chen@sunplusct.com>
3 * Copyright (C) 2012 Regents of the University of California
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation, version 2.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
15 #ifndef _ASM_RISCV_PGALLOC_H
16 #define _ASM_RISCV_PGALLOC_H
18 #include <linux/mm.h>
19 #include <asm/tlb.h>
21 static inline void pmd_populate_kernel(struct mm_struct *mm,
22 pmd_t *pmd, pte_t *pte)
24 unsigned long pfn = virt_to_pfn(pte);
26 set_pmd(pmd, __pmd((pfn << _PAGE_PFN_SHIFT) | _PAGE_TABLE));
29 static inline void pmd_populate(struct mm_struct *mm,
30 pmd_t *pmd, pgtable_t pte)
32 unsigned long pfn = virt_to_pfn(page_address(pte));
34 set_pmd(pmd, __pmd((pfn << _PAGE_PFN_SHIFT) | _PAGE_TABLE));
37 #ifndef __PAGETABLE_PMD_FOLDED
38 static inline void pud_populate(struct mm_struct *mm, pud_t *pud, pmd_t *pmd)
40 unsigned long pfn = virt_to_pfn(pmd);
42 set_pud(pud, __pud((pfn << _PAGE_PFN_SHIFT) | _PAGE_TABLE));
44 #endif /* __PAGETABLE_PMD_FOLDED */
46 #define pmd_pgtable(pmd) pmd_page(pmd)
48 static inline pgd_t *pgd_alloc(struct mm_struct *mm)
50 pgd_t *pgd;
52 pgd = (pgd_t *)__get_free_page(GFP_KERNEL);
53 if (likely(pgd != NULL)) {
54 memset(pgd, 0, USER_PTRS_PER_PGD * sizeof(pgd_t));
55 /* Copy kernel mappings */
56 memcpy(pgd + USER_PTRS_PER_PGD,
57 init_mm.pgd + USER_PTRS_PER_PGD,
58 (PTRS_PER_PGD - USER_PTRS_PER_PGD) * sizeof(pgd_t));
60 return pgd;
63 static inline void pgd_free(struct mm_struct *mm, pgd_t *pgd)
65 free_page((unsigned long)pgd);
68 #ifndef __PAGETABLE_PMD_FOLDED
70 static inline pmd_t *pmd_alloc_one(struct mm_struct *mm, unsigned long addr)
72 return (pmd_t *)__get_free_page(
73 GFP_KERNEL | __GFP_RETRY_MAYFAIL | __GFP_ZERO);
76 static inline void pmd_free(struct mm_struct *mm, pmd_t *pmd)
78 free_page((unsigned long)pmd);
81 #define __pmd_free_tlb(tlb, pmd, addr) pmd_free((tlb)->mm, pmd)
83 #endif /* __PAGETABLE_PMD_FOLDED */
85 static inline pte_t *pte_alloc_one_kernel(struct mm_struct *mm,
86 unsigned long address)
88 return (pte_t *)__get_free_page(
89 GFP_KERNEL | __GFP_RETRY_MAYFAIL | __GFP_ZERO);
92 static inline struct page *pte_alloc_one(struct mm_struct *mm,
93 unsigned long address)
95 struct page *pte;
97 pte = alloc_page(GFP_KERNEL | __GFP_RETRY_MAYFAIL | __GFP_ZERO);
98 if (likely(pte != NULL))
99 pgtable_page_ctor(pte);
100 return pte;
103 static inline void pte_free_kernel(struct mm_struct *mm, pte_t *pte)
105 free_page((unsigned long)pte);
108 static inline void pte_free(struct mm_struct *mm, pgtable_t pte)
110 pgtable_page_dtor(pte);
111 __free_page(pte);
114 #define __pte_free_tlb(tlb, pte, buf) \
115 do { \
116 pgtable_page_dtor(pte); \
117 tlb_remove_page((tlb), pte); \
118 } while (0)
120 static inline void check_pgt_cache(void)
124 #endif /* _ASM_RISCV_PGALLOC_H */