blob: 78a779361682adedae9acd430998c227842425bb [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Russell King4baa9922008-08-02 10:55:55 +01002 * arch/arm/include/asm/pgalloc.h
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * Copyright (C) 2000-2001 Russell King
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10#ifndef _ASMARM_PGALLOC_H
11#define _ASMARM_PGALLOC_H
12
Uwe Kleine-König97594b02011-02-22 23:29:37 +010013#include <linux/pagemap.h>
14
Russell King74945c82006-03-16 14:44:36 +000015#include <asm/domain.h>
16#include <asm/pgtable-hwdef.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <asm/processor.h>
18#include <asm/cacheflush.h>
19#include <asm/tlbflush.h>
20
Russell King002547b2006-06-20 20:46:52 +010021#define check_pgt_cache() do { } while (0)
22
23#ifdef CONFIG_MMU
24
Russell King74945c82006-03-16 14:44:36 +000025#define _PAGE_USER_TABLE (PMD_TYPE_TABLE | PMD_BIT4 | PMD_DOMAIN(DOMAIN_USER))
26#define _PAGE_KERNEL_TABLE (PMD_TYPE_TABLE | PMD_BIT4 | PMD_DOMAIN(DOMAIN_KERNEL))
27
Catalin Marinasda028772011-11-22 17:30:29 +000028#ifdef CONFIG_ARM_LPAE
29
30static inline pmd_t *pmd_alloc_one(struct mm_struct *mm, unsigned long addr)
31{
32 return (pmd_t *)get_zeroed_page(GFP_KERNEL | __GFP_REPEAT);
33}
34
35static inline void pmd_free(struct mm_struct *mm, pmd_t *pmd)
36{
37 BUG_ON((unsigned long)pmd & (PAGE_SIZE-1));
38 free_page((unsigned long)pmd);
39}
40
41static inline void pud_populate(struct mm_struct *mm, pud_t *pud, pmd_t *pmd)
42{
43 set_pud(pud, __pud(__pa(pmd) | PMD_TYPE_TABLE));
44}
45
46#else /* !CONFIG_ARM_LPAE */
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048/*
49 * Since we have only two-level page tables, these are trivial
50 */
51#define pmd_alloc_one(mm,addr) ({ BUG(); ((pmd_t *)2); })
Benjamin Herrenschmidt5e541972008-02-04 22:29:14 -080052#define pmd_free(mm, pmd) do { } while (0)
Russell Kinga32618d2011-11-22 17:30:28 +000053#define pud_populate(mm,pmd,pte) BUG()
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Catalin Marinasda028772011-11-22 17:30:29 +000055#endif /* CONFIG_ARM_LPAE */
56
Russell Kingb0d03742010-11-21 11:00:56 +000057extern pgd_t *pgd_alloc(struct mm_struct *mm);
58extern void pgd_free(struct mm_struct *mm, pgd_t *pgd);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Russell King65cec8e2009-08-17 20:02:06 +010060#define PGALLOC_GFP (GFP_KERNEL | __GFP_NOTRACK | __GFP_REPEAT | __GFP_ZERO)
61
Russell Kingd30e45e2010-11-16 00:16:01 +000062static inline void clean_pte_table(pte_t *pte)
63{
64 clean_dcache_area(pte + PTE_HWTABLE_PTRS, PTE_HWTABLE_SIZE);
65}
66
Linus Torvalds1da177e2005-04-16 15:20:36 -070067/*
68 * Allocate one PTE table.
69 *
70 * This actually allocates two hardware PTE tables, but we wrap this up
71 * into one table thus:
72 *
73 * +------------+
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 * | Linux pt 0 |
75 * +------------+
76 * | Linux pt 1 |
77 * +------------+
Russell Kingd30e45e2010-11-16 00:16:01 +000078 * | h/w pt 0 |
79 * +------------+
80 * | h/w pt 1 |
81 * +------------+
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 */
83static inline pte_t *
84pte_alloc_one_kernel(struct mm_struct *mm, unsigned long addr)
85{
86 pte_t *pte;
87
Russell King65cec8e2009-08-17 20:02:06 +010088 pte = (pte_t *)__get_free_page(PGALLOC_GFP);
Russell Kingd30e45e2010-11-16 00:16:01 +000089 if (pte)
90 clean_pte_table(pte);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
92 return pte;
93}
94
Martin Schwidefsky2f569af2008-02-08 04:22:04 -080095static inline pgtable_t
Linus Torvalds1da177e2005-04-16 15:20:36 -070096pte_alloc_one(struct mm_struct *mm, unsigned long addr)
97{
98 struct page *pte;
99
Russell King65cec8e2009-08-17 20:02:06 +0100100#ifdef CONFIG_HIGHPTE
101 pte = alloc_pages(PGALLOC_GFP | __GFP_HIGHMEM, 0);
102#else
103 pte = alloc_pages(PGALLOC_GFP, 0);
104#endif
Kirill A. Shutemovaffce502013-11-14 14:31:26 -0800105 if (!pte)
106 return NULL;
107 if (!PageHighMem(pte))
108 clean_pte_table(page_address(pte));
109 if (!pgtable_page_ctor(pte)) {
110 __free_page(pte);
111 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 return pte;
114}
115
116/*
117 * Free one PTE table.
118 */
Benjamin Herrenschmidt5e541972008-02-04 22:29:14 -0800119static inline void pte_free_kernel(struct mm_struct *mm, pte_t *pte)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120{
Russell Kingd30e45e2010-11-16 00:16:01 +0000121 if (pte)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 free_page((unsigned long)pte);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123}
124
Martin Schwidefsky2f569af2008-02-08 04:22:04 -0800125static inline void pte_free(struct mm_struct *mm, pgtable_t pte)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126{
Martin Schwidefsky2f569af2008-02-08 04:22:04 -0800127 pgtable_page_dtor(pte);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 __free_page(pte);
129}
130
Russell King97092e02010-11-16 00:16:01 +0000131static inline void __pmd_populate(pmd_t *pmdp, phys_addr_t pte,
Catalin Marinas442e70c2011-09-05 17:51:56 +0100132 pmdval_t prot)
Russell Kingbdf04242005-06-22 20:58:29 +0100133{
Catalin Marinas442e70c2011-09-05 17:51:56 +0100134 pmdval_t pmdval = (pte + PTE_HWTABLE_OFF) | prot;
Russell Kingbdf04242005-06-22 20:58:29 +0100135 pmdp[0] = __pmd(pmdval);
Catalin Marinasda028772011-11-22 17:30:29 +0000136#ifndef CONFIG_ARM_LPAE
Russell Kingbdf04242005-06-22 20:58:29 +0100137 pmdp[1] = __pmd(pmdval + 256 * sizeof(pte_t));
Catalin Marinasda028772011-11-22 17:30:29 +0000138#endif
Russell Kingbdf04242005-06-22 20:58:29 +0100139 flush_pmd_entry(pmdp);
140}
141
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142/*
143 * Populate the pmdp entry with a pointer to the pte. This pmd is part
144 * of the mm address space.
145 *
146 * Ensure that we always set both PMD entries.
147 */
148static inline void
149pmd_populate_kernel(struct mm_struct *mm, pmd_t *pmdp, pte_t *ptep)
150{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 /*
Russell Kingd30e45e2010-11-16 00:16:01 +0000152 * The pmd must be loaded with the physical address of the PTE table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 */
Russell Kingd30e45e2010-11-16 00:16:01 +0000154 __pmd_populate(pmdp, __pa(ptep), _PAGE_KERNEL_TABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155}
156
157static inline void
Martin Schwidefsky2f569af2008-02-08 04:22:04 -0800158pmd_populate(struct mm_struct *mm, pmd_t *pmdp, pgtable_t ptep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159{
Russell King97092e02010-11-16 00:16:01 +0000160 __pmd_populate(pmdp, page_to_phys(ptep), _PAGE_USER_TABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161}
Martin Schwidefsky2f569af2008-02-08 04:22:04 -0800162#define pmd_pgtable(pmd) pmd_page(pmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Russell King002547b2006-06-20 20:46:52 +0100164#endif /* CONFIG_MMU */
165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166#endif