Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #include <linux/sched.h> |
| 2 | #include <linux/kernel.h> |
| 3 | #include <linux/errno.h> |
| 4 | #include <linux/mm.h> |
Prarit Bhargava | 27eb0b2 | 2007-10-17 18:04:34 +0200 | [diff] [blame] | 5 | #include <linux/nmi.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | #include <linux/swap.h> |
| 7 | #include <linux/smp.h> |
| 8 | #include <linux/highmem.h> |
| 9 | #include <linux/slab.h> |
| 10 | #include <linux/pagemap.h> |
| 11 | #include <linux/spinlock.h> |
Jeremy Fitzhardinge | 052e799 | 2006-09-25 23:32:25 -0700 | [diff] [blame] | 12 | #include <linux/module.h> |
Christoph Lameter | f1d1a84 | 2007-05-12 11:15:24 -0700 | [diff] [blame] | 13 | #include <linux/quicklist.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | |
| 15 | #include <asm/system.h> |
| 16 | #include <asm/pgtable.h> |
| 17 | #include <asm/pgalloc.h> |
| 18 | #include <asm/fixmap.h> |
| 19 | #include <asm/e820.h> |
| 20 | #include <asm/tlb.h> |
| 21 | #include <asm/tlbflush.h> |
| 22 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | /* |
| 24 | * Associate a virtual page frame with a given physical page frame |
| 25 | * and protection flags for that frame. |
| 26 | */ |
Jeremy Fitzhardinge | d494a96 | 2008-06-17 11:41:59 -0700 | [diff] [blame] | 27 | void set_pte_vaddr(unsigned long vaddr, pte_t pteval) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | { |
| 29 | pgd_t *pgd; |
| 30 | pud_t *pud; |
| 31 | pmd_t *pmd; |
| 32 | pte_t *pte; |
| 33 | |
| 34 | pgd = swapper_pg_dir + pgd_index(vaddr); |
| 35 | if (pgd_none(*pgd)) { |
| 36 | BUG(); |
| 37 | return; |
| 38 | } |
| 39 | pud = pud_offset(pgd, vaddr); |
| 40 | if (pud_none(*pud)) { |
| 41 | BUG(); |
| 42 | return; |
| 43 | } |
| 44 | pmd = pmd_offset(pud, vaddr); |
| 45 | if (pmd_none(*pmd)) { |
| 46 | BUG(); |
| 47 | return; |
| 48 | } |
| 49 | pte = pte_offset_kernel(pmd, vaddr); |
Jeremy Fitzhardinge | d494a96 | 2008-06-17 11:41:59 -0700 | [diff] [blame] | 50 | if (pte_val(pteval)) |
| 51 | set_pte_present(&init_mm, vaddr, pte, pteval); |
Jan Beulich | b0bfece | 2006-12-07 02:14:09 +0100 | [diff] [blame] | 52 | else |
| 53 | pte_clear(&init_mm, vaddr, pte); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | |
| 55 | /* |
| 56 | * It's enough to flush this one mapping. |
| 57 | * (PGE mappings get flushed as well) |
| 58 | */ |
| 59 | __flush_tlb_one(vaddr); |
| 60 | } |
| 61 | |
| 62 | /* |
| 63 | * Associate a large virtual page frame with a given physical page frame |
| 64 | * and protection flags for that frame. pfn is for the base of the page, |
| 65 | * vaddr is what the page gets mapped to - both must be properly aligned. |
| 66 | * The pmd must already be instantiated. Assumes PAE mode. |
| 67 | */ |
| 68 | void set_pmd_pfn(unsigned long vaddr, unsigned long pfn, pgprot_t flags) |
| 69 | { |
| 70 | pgd_t *pgd; |
| 71 | pud_t *pud; |
| 72 | pmd_t *pmd; |
| 73 | |
| 74 | if (vaddr & (PMD_SIZE-1)) { /* vaddr is misaligned */ |
Christophe Lucas | f90e718 | 2005-06-25 14:59:24 -0700 | [diff] [blame] | 75 | printk(KERN_WARNING "set_pmd_pfn: vaddr misaligned\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | return; /* BUG(); */ |
| 77 | } |
| 78 | if (pfn & (PTRS_PER_PTE-1)) { /* pfn is misaligned */ |
Christophe Lucas | f90e718 | 2005-06-25 14:59:24 -0700 | [diff] [blame] | 79 | printk(KERN_WARNING "set_pmd_pfn: pfn misaligned\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | return; /* BUG(); */ |
| 81 | } |
| 82 | pgd = swapper_pg_dir + pgd_index(vaddr); |
| 83 | if (pgd_none(*pgd)) { |
Christophe Lucas | f90e718 | 2005-06-25 14:59:24 -0700 | [diff] [blame] | 84 | printk(KERN_WARNING "set_pmd_pfn: pgd_none\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | return; /* BUG(); */ |
| 86 | } |
| 87 | pud = pud_offset(pgd, vaddr); |
| 88 | pmd = pmd_offset(pud, vaddr); |
| 89 | set_pmd(pmd, pfn_pmd(pfn, flags)); |
| 90 | /* |
| 91 | * It's enough to flush this one mapping. |
| 92 | * (PGE mappings get flushed as well) |
| 93 | */ |
| 94 | __flush_tlb_one(vaddr); |
| 95 | } |
| 96 | |
Jeremy Fitzhardinge | 052e799 | 2006-09-25 23:32:25 -0700 | [diff] [blame] | 97 | unsigned long __FIXADDR_TOP = 0xfffff000; |
| 98 | EXPORT_SYMBOL(__FIXADDR_TOP); |
Jeremy Fitzhardinge | 052e799 | 2006-09-25 23:32:25 -0700 | [diff] [blame] | 99 | |
Jeremy Fitzhardinge | 052e799 | 2006-09-25 23:32:25 -0700 | [diff] [blame] | 100 | /** |
| 101 | * reserve_top_address - reserves a hole in the top of kernel address space |
| 102 | * @reserve - size of hole to reserve |
| 103 | * |
| 104 | * Can be used to relocate the fixmap area and poke a hole in the top |
| 105 | * of kernel address space to make room for a hypervisor. |
| 106 | */ |
Yinghai Lu | bef1568 | 2008-06-22 17:40:10 -0700 | [diff] [blame] | 107 | void __init reserve_top_address(unsigned long reserve) |
Jeremy Fitzhardinge | 052e799 | 2006-09-25 23:32:25 -0700 | [diff] [blame] | 108 | { |
Jeremy Fitzhardinge | 7c7e6e0 | 2008-06-17 11:41:54 -0700 | [diff] [blame] | 109 | BUG_ON(fixmaps_set > 0); |
Zachary Amsden | 7ce0bcf | 2007-02-13 13:26:21 +0100 | [diff] [blame] | 110 | printk(KERN_INFO "Reserving virtual address space above 0x%08x\n", |
| 111 | (int)-reserve); |
Jeremy Fitzhardinge | 052e799 | 2006-09-25 23:32:25 -0700 | [diff] [blame] | 112 | __FIXADDR_TOP = -reserve - PAGE_SIZE; |
| 113 | __VMALLOC_RESERVE += reserve; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | } |
Yinghai Lu | bef1568 | 2008-06-22 17:40:10 -0700 | [diff] [blame] | 115 | |
| 116 | /* |
| 117 | * vmalloc=size forces the vmalloc area to be exactly 'size' |
| 118 | * bytes. This can be used to increase (or decrease) the |
| 119 | * vmalloc area - the default is 128m. |
| 120 | */ |
| 121 | static int __init parse_vmalloc(char *arg) |
| 122 | { |
| 123 | if (!arg) |
| 124 | return -EINVAL; |
| 125 | |
Dave Young | e621bd1 | 2008-08-20 16:43:03 -0700 | [diff] [blame] | 126 | /* Add VMALLOC_OFFSET to the parsed value due to vm area guard hole*/ |
| 127 | __VMALLOC_RESERVE = memparse(arg, &arg) + VMALLOC_OFFSET; |
Yinghai Lu | bef1568 | 2008-06-22 17:40:10 -0700 | [diff] [blame] | 128 | return 0; |
| 129 | } |
| 130 | early_param("vmalloc", parse_vmalloc); |
| 131 | |
| 132 | /* |
| 133 | * reservetop=size reserves a hole at the top of the kernel address space which |
| 134 | * a hypervisor can load into later. Needed for dynamically loaded hypervisors, |
| 135 | * so relocating the fixmap can be done before paging initialization. |
| 136 | */ |
| 137 | static int __init parse_reservetop(char *arg) |
| 138 | { |
| 139 | unsigned long address; |
| 140 | |
| 141 | if (!arg) |
| 142 | return -EINVAL; |
| 143 | |
| 144 | address = memparse(arg, &arg); |
| 145 | reserve_top_address(address); |
| 146 | return 0; |
| 147 | } |
| 148 | early_param("reservetop", parse_reservetop); |