blob: 0acb089d0f70db818ce487fa67b0fb90b1b0b69d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Russell King0c668982006-09-27 15:40:28 +01002 * linux/arch/arm/mm/pgd.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
Russell King90072052005-10-28 14:48:37 +01004 * Copyright (C) 1998-2005 Russell King
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
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.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/mm.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090011#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/highmem.h>
Catalin Marinasda028772011-11-22 17:30:29 +000013#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014
Russell King15d07dc2012-03-28 18:30:01 +010015#include <asm/cp15.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <asm/pgalloc.h>
17#include <asm/page.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <asm/tlbflush.h>
19
Russell King1b2e2b72006-08-21 17:06:38 +010020#include "mm.h"
21
Catalin Marinasda028772011-11-22 17:30:29 +000022#ifdef CONFIG_ARM_LPAE
23#define __pgd_alloc() kmalloc(PTRS_PER_PGD * sizeof(pgd_t), GFP_KERNEL)
24#define __pgd_free(pgd) kfree(pgd)
25#else
26#define __pgd_alloc() (pgd_t *)__get_free_pages(GFP_KERNEL, 2)
27#define __pgd_free(pgd) free_pages((unsigned long)pgd, 2)
28#endif
29
Linus Torvalds1da177e2005-04-16 15:20:36 -070030/*
31 * need to get a 16k page for level 1
32 */
Russell Kingb0d03742010-11-21 11:00:56 +000033pgd_t *pgd_alloc(struct mm_struct *mm)
Linus Torvalds1da177e2005-04-16 15:20:36 -070034{
35 pgd_t *new_pgd, *init_pgd;
Russell King516295e2010-11-21 16:27:49 +000036 pud_t *new_pud, *init_pud;
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 pmd_t *new_pmd, *init_pmd;
38 pte_t *new_pte, *init_pte;
39
Catalin Marinasda028772011-11-22 17:30:29 +000040 new_pgd = __pgd_alloc();
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 if (!new_pgd)
42 goto no_pgd;
43
Russell Kinge926f442010-11-21 11:55:37 +000044 memset(new_pgd, 0, USER_PTRS_PER_PGD * sizeof(pgd_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Russell Kinga343e602005-06-27 14:08:56 +010046 /*
47 * Copy over the kernel and IO PGD entries
48 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 init_pgd = pgd_offset_k(0);
Russell Kinge926f442010-11-21 11:55:37 +000050 memcpy(new_pgd + USER_PTRS_PER_PGD, init_pgd + USER_PTRS_PER_PGD,
51 (PTRS_PER_PGD - USER_PTRS_PER_PGD) * sizeof(pgd_t));
Russell Kinga343e602005-06-27 14:08:56 +010052
53 clean_dcache_area(new_pgd, PTRS_PER_PGD * sizeof(pgd_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Catalin Marinasda028772011-11-22 17:30:29 +000055#ifdef CONFIG_ARM_LPAE
56 /*
57 * Allocate PMD table for modules and pkmap mappings.
58 */
59 new_pud = pud_alloc(mm, new_pgd + pgd_index(MODULES_VADDR),
60 MODULES_VADDR);
61 if (!new_pud)
62 goto no_pud;
63
64 new_pmd = pmd_alloc(mm, new_pud, 0);
65 if (!new_pmd)
66 goto no_pmd;
67#endif
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 if (!vectors_high()) {
70 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 * On ARM, first page must always be allocated since it
Catalin Marinasda028772011-11-22 17:30:29 +000072 * contains the machine vectors. The vectors are always high
73 * with LPAE.
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 */
Russell King516295e2010-11-21 16:27:49 +000075 new_pud = pud_alloc(mm, new_pgd, 0);
76 if (!new_pud)
77 goto no_pud;
78
79 new_pmd = pmd_alloc(mm, new_pud, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 if (!new_pmd)
81 goto no_pmd;
82
Andrea Arcangeli8ac1f832011-01-13 15:46:43 -080083 new_pte = pte_alloc_map(mm, NULL, new_pmd, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 if (!new_pte)
85 goto no_pte;
86
Russell King516295e2010-11-21 16:27:49 +000087 init_pud = pud_offset(init_pgd, 0);
88 init_pmd = pmd_offset(init_pud, 0);
Peter Zijlstraece0e2b2010-10-26 14:21:52 -070089 init_pte = pte_offset_map(init_pmd, 0);
Russell Kingad1ae2f2006-12-13 14:34:43 +000090 set_pte_ext(new_pte, *init_pte, 0);
Peter Zijlstraece0e2b2010-10-26 14:21:52 -070091 pte_unmap(init_pte);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 pte_unmap(new_pte);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 }
94
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 return new_pgd;
96
97no_pte:
Benjamin Herrenschmidt5e541972008-02-04 22:29:14 -080098 pmd_free(mm, new_pmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099no_pmd:
Russell King516295e2010-11-21 16:27:49 +0000100 pud_free(mm, new_pud);
101no_pud:
Catalin Marinasda028772011-11-22 17:30:29 +0000102 __pgd_free(new_pgd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103no_pgd:
104 return NULL;
105}
106
Russell King6e4beb52010-11-21 23:48:55 +0000107void pgd_free(struct mm_struct *mm, pgd_t *pgd_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108{
Russell King6e4beb52010-11-21 23:48:55 +0000109 pgd_t *pgd;
Russell King516295e2010-11-21 16:27:49 +0000110 pud_t *pud;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 pmd_t *pmd;
Uwe Kleine-König0c82d832008-02-27 13:44:59 +0100112 pgtable_t pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Russell King6e4beb52010-11-21 23:48:55 +0000114 if (!pgd_base)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 return;
116
Russell King6e4beb52010-11-21 23:48:55 +0000117 pgd = pgd_base + pgd_index(0);
118 if (pgd_none_or_clear_bad(pgd))
119 goto no_pgd;
120
Russell King516295e2010-11-21 16:27:49 +0000121 pud = pud_offset(pgd, 0);
122 if (pud_none_or_clear_bad(pud))
123 goto no_pud;
124
125 pmd = pmd_offset(pud, 0);
Russell King6e4beb52010-11-21 23:48:55 +0000126 if (pmd_none_or_clear_bad(pmd))
127 goto no_pmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
Uwe Kleine-König0c82d832008-02-27 13:44:59 +0100129 pte = pmd_pgtable(*pmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 pmd_clear(pmd);
Benjamin Herrenschmidt5e541972008-02-04 22:29:14 -0800131 pte_free(mm, pte);
Russell King6e4beb52010-11-21 23:48:55 +0000132no_pmd:
Russell King516295e2010-11-21 16:27:49 +0000133 pud_clear(pud);
Benjamin Herrenschmidt5e541972008-02-04 22:29:14 -0800134 pmd_free(mm, pmd);
Russell King516295e2010-11-21 16:27:49 +0000135no_pud:
136 pgd_clear(pgd);
137 pud_free(mm, pud);
Russell King6e4beb52010-11-21 23:48:55 +0000138no_pgd:
Catalin Marinasda028772011-11-22 17:30:29 +0000139#ifdef CONFIG_ARM_LPAE
140 /*
141 * Free modules/pkmap or identity pmd tables.
142 */
143 for (pgd = pgd_base; pgd < pgd_base + PTRS_PER_PGD; pgd++) {
144 if (pgd_none_or_clear_bad(pgd))
145 continue;
146 if (pgd_val(*pgd) & L_PGD_SWAPPER)
147 continue;
148 pud = pud_offset(pgd, 0);
149 if (pud_none_or_clear_bad(pud))
150 continue;
151 pmd = pmd_offset(pud, 0);
152 pud_clear(pud);
153 pmd_free(mm, pmd);
154 pgd_clear(pgd);
155 pud_free(mm, pud);
156 }
157#endif
158 __pgd_free(pgd_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159}