blob: 2690146161ba31e01236f6fe6d90d32e7bc76bf4 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/highmem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012
13#include <asm/pgalloc.h>
14#include <asm/page.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <asm/tlbflush.h>
16
Russell King1b2e2b72006-08-21 17:06:38 +010017#include "mm.h"
18
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#define FIRST_KERNEL_PGD_NR (FIRST_USER_PGD_NR + USER_PTRS_PER_PGD)
20
21/*
22 * need to get a 16k page for level 1
23 */
24pgd_t *get_pgd_slow(struct mm_struct *mm)
25{
26 pgd_t *new_pgd, *init_pgd;
27 pmd_t *new_pmd, *init_pmd;
28 pte_t *new_pte, *init_pte;
29
30 new_pgd = (pgd_t *)__get_free_pages(GFP_KERNEL, 2);
31 if (!new_pgd)
32 goto no_pgd;
33
Russell King59f0cb02008-10-27 11:24:09 +000034 memset(new_pgd, 0, FIRST_KERNEL_PGD_NR * sizeof(pgd_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Russell Kinga343e602005-06-27 14:08:56 +010036 /*
37 * Copy over the kernel and IO PGD entries
38 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 init_pgd = pgd_offset_k(0);
Russell Kinga343e602005-06-27 14:08:56 +010040 memcpy(new_pgd + FIRST_KERNEL_PGD_NR, init_pgd + FIRST_KERNEL_PGD_NR,
41 (PTRS_PER_PGD - FIRST_KERNEL_PGD_NR) * sizeof(pgd_t));
42
43 clean_dcache_area(new_pgd, PTRS_PER_PGD * sizeof(pgd_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45 if (!vectors_high()) {
46 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 * On ARM, first page must always be allocated since it
48 * contains the machine vectors.
49 */
50 new_pmd = pmd_alloc(mm, new_pgd, 0);
51 if (!new_pmd)
52 goto no_pmd;
53
54 new_pte = pte_alloc_map(mm, new_pmd, 0);
55 if (!new_pte)
56 goto no_pte;
57
58 init_pmd = pmd_offset(init_pgd, 0);
59 init_pte = pte_offset_map_nested(init_pmd, 0);
Russell Kingad1ae2f2006-12-13 14:34:43 +000060 set_pte_ext(new_pte, *init_pte, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 pte_unmap_nested(init_pte);
62 pte_unmap(new_pte);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 }
64
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 return new_pgd;
66
67no_pte:
Benjamin Herrenschmidt5e541972008-02-04 22:29:14 -080068 pmd_free(mm, new_pmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069no_pmd:
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 free_pages((unsigned long)new_pgd, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071no_pgd:
72 return NULL;
73}
74
Benjamin Herrenschmidt5e541972008-02-04 22:29:14 -080075void free_pgd_slow(struct mm_struct *mm, pgd_t *pgd)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076{
77 pmd_t *pmd;
Uwe Kleine-König0c82d832008-02-27 13:44:59 +010078 pgtable_t pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
80 if (!pgd)
81 return;
82
83 /* pgd is always present and good */
Russell King155bb142005-05-09 20:52:51 +010084 pmd = pmd_off(pgd, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 if (pmd_none(*pmd))
86 goto free;
87 if (pmd_bad(*pmd)) {
88 pmd_ERROR(*pmd);
89 pmd_clear(pmd);
90 goto free;
91 }
92
Uwe Kleine-König0c82d832008-02-27 13:44:59 +010093 pte = pmd_pgtable(*pmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 pmd_clear(pmd);
Benjamin Herrenschmidt5e541972008-02-04 22:29:14 -080095 pte_free(mm, pte);
96 pmd_free(mm, pmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097free:
98 free_pages((unsigned long) pgd, 2);
99}