| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
| Russell King | 0c66898 | 2006-09-27 15:40:28 +0100 | [diff] [blame] | 2 | *  linux/arch/arm/mm/pgd.c | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * | 
| Russell King | 9007205 | 2005-10-28 14:48:37 +0100 | [diff] [blame] | 4 | *  Copyright (C) 1998-2005 Russell King | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | #include <linux/mm.h> | 
| Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 11 | #include <linux/gfp.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include <linux/highmem.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 |  | 
|  | 14 | #include <asm/pgalloc.h> | 
|  | 15 | #include <asm/page.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include <asm/tlbflush.h> | 
|  | 17 |  | 
| Russell King | 1b2e2b7 | 2006-08-21 17:06:38 +0100 | [diff] [blame] | 18 | #include "mm.h" | 
|  | 19 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #define FIRST_KERNEL_PGD_NR	(FIRST_USER_PGD_NR + USER_PTRS_PER_PGD) | 
|  | 21 |  | 
|  | 22 | /* | 
|  | 23 | * need to get a 16k page for level 1 | 
|  | 24 | */ | 
|  | 25 | pgd_t *get_pgd_slow(struct mm_struct *mm) | 
|  | 26 | { | 
|  | 27 | pgd_t *new_pgd, *init_pgd; | 
|  | 28 | pmd_t *new_pmd, *init_pmd; | 
|  | 29 | pte_t *new_pte, *init_pte; | 
|  | 30 |  | 
|  | 31 | new_pgd = (pgd_t *)__get_free_pages(GFP_KERNEL, 2); | 
|  | 32 | if (!new_pgd) | 
|  | 33 | goto no_pgd; | 
|  | 34 |  | 
| Russell King | 59f0cb0 | 2008-10-27 11:24:09 +0000 | [diff] [blame] | 35 | memset(new_pgd, 0, FIRST_KERNEL_PGD_NR * sizeof(pgd_t)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 |  | 
| Russell King | a343e60 | 2005-06-27 14:08:56 +0100 | [diff] [blame] | 37 | /* | 
|  | 38 | * Copy over the kernel and IO PGD entries | 
|  | 39 | */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | init_pgd = pgd_offset_k(0); | 
| Russell King | a343e60 | 2005-06-27 14:08:56 +0100 | [diff] [blame] | 41 | memcpy(new_pgd + FIRST_KERNEL_PGD_NR, init_pgd + FIRST_KERNEL_PGD_NR, | 
|  | 42 | (PTRS_PER_PGD - FIRST_KERNEL_PGD_NR) * sizeof(pgd_t)); | 
|  | 43 |  | 
|  | 44 | clean_dcache_area(new_pgd, PTRS_PER_PGD * sizeof(pgd_t)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 |  | 
|  | 46 | if (!vectors_high()) { | 
|  | 47 | /* | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | * On ARM, first page must always be allocated since it | 
|  | 49 | * contains the machine vectors. | 
|  | 50 | */ | 
|  | 51 | new_pmd = pmd_alloc(mm, new_pgd, 0); | 
|  | 52 | if (!new_pmd) | 
|  | 53 | goto no_pmd; | 
|  | 54 |  | 
|  | 55 | new_pte = pte_alloc_map(mm, new_pmd, 0); | 
|  | 56 | if (!new_pte) | 
|  | 57 | goto no_pte; | 
|  | 58 |  | 
|  | 59 | init_pmd = pmd_offset(init_pgd, 0); | 
|  | 60 | init_pte = pte_offset_map_nested(init_pmd, 0); | 
| Russell King | ad1ae2f | 2006-12-13 14:34:43 +0000 | [diff] [blame] | 61 | set_pte_ext(new_pte, *init_pte, 0); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | pte_unmap_nested(init_pte); | 
|  | 63 | pte_unmap(new_pte); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | } | 
|  | 65 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | return new_pgd; | 
|  | 67 |  | 
|  | 68 | no_pte: | 
| Benjamin Herrenschmidt | 5e54197 | 2008-02-04 22:29:14 -0800 | [diff] [blame] | 69 | pmd_free(mm, new_pmd); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | no_pmd: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | free_pages((unsigned long)new_pgd, 2); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | no_pgd: | 
|  | 73 | return NULL; | 
|  | 74 | } | 
|  | 75 |  | 
| Benjamin Herrenschmidt | 5e54197 | 2008-02-04 22:29:14 -0800 | [diff] [blame] | 76 | void free_pgd_slow(struct mm_struct *mm, pgd_t *pgd) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | { | 
|  | 78 | pmd_t *pmd; | 
| Uwe Kleine-König | 0c82d83 | 2008-02-27 13:44:59 +0100 | [diff] [blame] | 79 | pgtable_t pte; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 |  | 
|  | 81 | if (!pgd) | 
|  | 82 | return; | 
|  | 83 |  | 
|  | 84 | /* pgd is always present and good */ | 
| Russell King | 155bb14 | 2005-05-09 20:52:51 +0100 | [diff] [blame] | 85 | pmd = pmd_off(pgd, 0); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | if (pmd_none(*pmd)) | 
|  | 87 | goto free; | 
|  | 88 | if (pmd_bad(*pmd)) { | 
|  | 89 | pmd_ERROR(*pmd); | 
|  | 90 | pmd_clear(pmd); | 
|  | 91 | goto free; | 
|  | 92 | } | 
|  | 93 |  | 
| Uwe Kleine-König | 0c82d83 | 2008-02-27 13:44:59 +0100 | [diff] [blame] | 94 | pte = pmd_pgtable(*pmd); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | pmd_clear(pmd); | 
| Benjamin Herrenschmidt | 5e54197 | 2008-02-04 22:29:14 -0800 | [diff] [blame] | 96 | pte_free(mm, pte); | 
|  | 97 | pmd_free(mm, pmd); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | free: | 
|  | 99 | free_pages((unsigned long) pgd, 2); | 
|  | 100 | } |