blob: 9763be04f77ee9e15b8e759a1b392cb7f66b3b6f [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
Russell King74945c82006-03-16 14:44:36 +000013#include <asm/domain.h>
14#include <asm/pgtable-hwdef.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <asm/processor.h>
16#include <asm/cacheflush.h>
17#include <asm/tlbflush.h>
18
Russell King002547b2006-06-20 20:46:52 +010019#define check_pgt_cache() do { } while (0)
20
21#ifdef CONFIG_MMU
22
Russell King74945c82006-03-16 14:44:36 +000023#define _PAGE_USER_TABLE (PMD_TYPE_TABLE | PMD_BIT4 | PMD_DOMAIN(DOMAIN_USER))
24#define _PAGE_KERNEL_TABLE (PMD_TYPE_TABLE | PMD_BIT4 | PMD_DOMAIN(DOMAIN_KERNEL))
25
Linus Torvalds1da177e2005-04-16 15:20:36 -070026/*
27 * Since we have only two-level page tables, these are trivial
28 */
29#define pmd_alloc_one(mm,addr) ({ BUG(); ((pmd_t *)2); })
Benjamin Herrenschmidt5e541972008-02-04 22:29:14 -080030#define pmd_free(mm, pmd) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#define pgd_populate(mm,pmd,pte) BUG()
32
Russell Kingb0d03742010-11-21 11:00:56 +000033extern pgd_t *pgd_alloc(struct mm_struct *mm);
34extern void pgd_free(struct mm_struct *mm, pgd_t *pgd);
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Russell King65cec8e2009-08-17 20:02:06 +010036#define PGALLOC_GFP (GFP_KERNEL | __GFP_NOTRACK | __GFP_REPEAT | __GFP_ZERO)
37
Russell Kingd30e45e2010-11-16 00:16:01 +000038static inline void clean_pte_table(pte_t *pte)
39{
40 clean_dcache_area(pte + PTE_HWTABLE_PTRS, PTE_HWTABLE_SIZE);
41}
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043/*
44 * Allocate one PTE table.
45 *
46 * This actually allocates two hardware PTE tables, but we wrap this up
47 * into one table thus:
48 *
49 * +------------+
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 * | Linux pt 0 |
51 * +------------+
52 * | Linux pt 1 |
53 * +------------+
Russell Kingd30e45e2010-11-16 00:16:01 +000054 * | h/w pt 0 |
55 * +------------+
56 * | h/w pt 1 |
57 * +------------+
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 */
59static inline pte_t *
60pte_alloc_one_kernel(struct mm_struct *mm, unsigned long addr)
61{
62 pte_t *pte;
63
Russell King65cec8e2009-08-17 20:02:06 +010064 pte = (pte_t *)__get_free_page(PGALLOC_GFP);
Russell Kingd30e45e2010-11-16 00:16:01 +000065 if (pte)
66 clean_pte_table(pte);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
68 return pte;
69}
70
Martin Schwidefsky2f569af2008-02-08 04:22:04 -080071static inline pgtable_t
Linus Torvalds1da177e2005-04-16 15:20:36 -070072pte_alloc_one(struct mm_struct *mm, unsigned long addr)
73{
74 struct page *pte;
75
Russell King65cec8e2009-08-17 20:02:06 +010076#ifdef CONFIG_HIGHPTE
77 pte = alloc_pages(PGALLOC_GFP | __GFP_HIGHMEM, 0);
78#else
79 pte = alloc_pages(PGALLOC_GFP, 0);
80#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 if (pte) {
Russell Kingd30e45e2010-11-16 00:16:01 +000082 if (!PageHighMem(pte))
83 clean_pte_table(page_address(pte));
Martin Schwidefsky2f569af2008-02-08 04:22:04 -080084 pgtable_page_ctor(pte);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 }
86
87 return pte;
88}
89
90/*
91 * Free one PTE table.
92 */
Benjamin Herrenschmidt5e541972008-02-04 22:29:14 -080093static inline void pte_free_kernel(struct mm_struct *mm, pte_t *pte)
Linus Torvalds1da177e2005-04-16 15:20:36 -070094{
Russell Kingd30e45e2010-11-16 00:16:01 +000095 if (pte)
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 free_page((unsigned long)pte);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097}
98
Martin Schwidefsky2f569af2008-02-08 04:22:04 -080099static inline void pte_free(struct mm_struct *mm, pgtable_t pte)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100{
Martin Schwidefsky2f569af2008-02-08 04:22:04 -0800101 pgtable_page_dtor(pte);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 __free_page(pte);
103}
104
Russell King97092e02010-11-16 00:16:01 +0000105static inline void __pmd_populate(pmd_t *pmdp, phys_addr_t pte,
106 unsigned long prot)
Russell Kingbdf04242005-06-22 20:58:29 +0100107{
Russell Kingd30e45e2010-11-16 00:16:01 +0000108 unsigned long pmdval = (pte + PTE_HWTABLE_OFF) | prot;
Russell Kingbdf04242005-06-22 20:58:29 +0100109 pmdp[0] = __pmd(pmdval);
110 pmdp[1] = __pmd(pmdval + 256 * sizeof(pte_t));
111 flush_pmd_entry(pmdp);
112}
113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114/*
115 * Populate the pmdp entry with a pointer to the pte. This pmd is part
116 * of the mm address space.
117 *
118 * Ensure that we always set both PMD entries.
119 */
120static inline void
121pmd_populate_kernel(struct mm_struct *mm, pmd_t *pmdp, pte_t *ptep)
122{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 /*
Russell Kingd30e45e2010-11-16 00:16:01 +0000124 * The pmd must be loaded with the physical address of the PTE table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 */
Russell Kingd30e45e2010-11-16 00:16:01 +0000126 __pmd_populate(pmdp, __pa(ptep), _PAGE_KERNEL_TABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127}
128
129static inline void
Martin Schwidefsky2f569af2008-02-08 04:22:04 -0800130pmd_populate(struct mm_struct *mm, pmd_t *pmdp, pgtable_t ptep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131{
Russell King97092e02010-11-16 00:16:01 +0000132 __pmd_populate(pmdp, page_to_phys(ptep), _PAGE_USER_TABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133}
Martin Schwidefsky2f569af2008-02-08 04:22:04 -0800134#define pmd_pgtable(pmd) pmd_page(pmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Russell King002547b2006-06-20 20:46:52 +0100136#endif /* CONFIG_MMU */
137
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138#endif