1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * arch/arm/include/asm/pgalloc.h
5 * Copyright (C) 2000-2001 Russell King
7 #ifndef _ASMARM_PGALLOC_H
8 #define _ASMARM_PGALLOC_H
10 #include <linux/pagemap.h>
12 #include <asm/domain.h>
13 #include <asm/pgtable-hwdef.h>
14 #include <asm/processor.h>
15 #include <asm/cacheflush.h>
16 #include <asm/tlbflush.h>
20 #define _PAGE_USER_TABLE (PMD_TYPE_TABLE | PMD_BIT4 | PMD_DOMAIN(DOMAIN_USER))
21 #define _PAGE_KERNEL_TABLE (PMD_TYPE_TABLE | PMD_BIT4 | PMD_DOMAIN(DOMAIN_KERNEL))
23 #ifdef CONFIG_ARM_LPAE
25 static inline pmd_t
*pmd_alloc_one(struct mm_struct
*mm
, unsigned long addr
)
27 return (pmd_t
*)get_zeroed_page(GFP_KERNEL
);
30 static inline void pmd_free(struct mm_struct
*mm
, pmd_t
*pmd
)
32 BUG_ON((unsigned long)pmd
& (PAGE_SIZE
-1));
33 free_page((unsigned long)pmd
);
36 static inline void pud_populate(struct mm_struct
*mm
, pud_t
*pud
, pmd_t
*pmd
)
38 set_pud(pud
, __pud(__pa(pmd
) | PMD_TYPE_TABLE
));
41 #else /* !CONFIG_ARM_LPAE */
44 * Since we have only two-level page tables, these are trivial
46 #define pmd_alloc_one(mm,addr) ({ BUG(); ((pmd_t *)2); })
47 #define pmd_free(mm, pmd) do { } while (0)
48 #define pud_populate(mm,pmd,pte) BUG()
50 #endif /* CONFIG_ARM_LPAE */
52 extern pgd_t
*pgd_alloc(struct mm_struct
*mm
);
53 extern void pgd_free(struct mm_struct
*mm
, pgd_t
*pgd
);
55 static inline void clean_pte_table(pte_t
*pte
)
57 clean_dcache_area(pte
+ PTE_HWTABLE_PTRS
, PTE_HWTABLE_SIZE
);
61 * Allocate one PTE table.
63 * This actually allocates two hardware PTE tables, but we wrap this up
64 * into one table thus:
77 #define __HAVE_ARCH_PTE_ALLOC_ONE_KERNEL
78 #define __HAVE_ARCH_PTE_ALLOC_ONE
79 #include <asm-generic/pgalloc.h>
82 pte_alloc_one_kernel(struct mm_struct
*mm
)
84 pte_t
*pte
= __pte_alloc_one_kernel(mm
);
93 #define PGTABLE_HIGHMEM __GFP_HIGHMEM
95 #define PGTABLE_HIGHMEM 0
98 static inline pgtable_t
99 pte_alloc_one(struct mm_struct
*mm
)
103 pte
= __pte_alloc_one(mm
, GFP_PGTABLE_USER
| PGTABLE_HIGHMEM
);
106 if (!PageHighMem(pte
))
107 clean_pte_table(page_address(pte
));
111 static inline void __pmd_populate(pmd_t
*pmdp
, phys_addr_t pte
,
114 pmdval_t pmdval
= (pte
+ PTE_HWTABLE_OFF
) | prot
;
115 pmdp
[0] = __pmd(pmdval
);
116 #ifndef CONFIG_ARM_LPAE
117 pmdp
[1] = __pmd(pmdval
+ 256 * sizeof(pte_t
));
119 flush_pmd_entry(pmdp
);
123 * Populate the pmdp entry with a pointer to the pte. This pmd is part
124 * of the mm address space.
126 * Ensure that we always set both PMD entries.
129 pmd_populate_kernel(struct mm_struct
*mm
, pmd_t
*pmdp
, pte_t
*ptep
)
132 * The pmd must be loaded with the physical address of the PTE table
134 __pmd_populate(pmdp
, __pa(ptep
), _PAGE_KERNEL_TABLE
);
138 pmd_populate(struct mm_struct
*mm
, pmd_t
*pmdp
, pgtable_t ptep
)
140 extern pmdval_t user_pmd_table
;
143 if (__LINUX_ARM_ARCH__
>= 6 && !IS_ENABLED(CONFIG_ARM_LPAE
))
144 prot
= user_pmd_table
;
146 prot
= _PAGE_USER_TABLE
;
148 __pmd_populate(pmdp
, page_to_phys(ptep
), prot
);
150 #define pmd_pgtable(pmd) pmd_page(pmd)
152 #endif /* CONFIG_MMU */