Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/arch/x86_64/mm/init.c |
| 3 | * |
| 4 | * Copyright (C) 1995 Linus Torvalds |
| 5 | * Copyright (C) 2000 Pavel Machek <pavel@suse.cz> |
| 6 | * Copyright (C) 2002,2003 Andi Kleen <ak@suse.de> |
| 7 | */ |
| 8 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | #include <linux/signal.h> |
| 10 | #include <linux/sched.h> |
| 11 | #include <linux/kernel.h> |
| 12 | #include <linux/errno.h> |
| 13 | #include <linux/string.h> |
| 14 | #include <linux/types.h> |
| 15 | #include <linux/ptrace.h> |
| 16 | #include <linux/mman.h> |
| 17 | #include <linux/mm.h> |
| 18 | #include <linux/swap.h> |
| 19 | #include <linux/smp.h> |
| 20 | #include <linux/init.h> |
| 21 | #include <linux/pagemap.h> |
| 22 | #include <linux/bootmem.h> |
| 23 | #include <linux/proc_fs.h> |
Andi Kleen | 5917089 | 2005-11-05 17:25:53 +0100 | [diff] [blame] | 24 | #include <linux/pci.h> |
Jan Beulich | 6fb1475 | 2007-05-02 19:27:10 +0200 | [diff] [blame] | 25 | #include <linux/pfn.h> |
Randy Dunlap | c9cf552 | 2006-06-27 02:53:52 -0700 | [diff] [blame] | 26 | #include <linux/poison.h> |
Muli Ben-Yehuda | 17a941d | 2006-01-11 22:44:42 +0100 | [diff] [blame] | 27 | #include <linux/dma-mapping.h> |
Matt Tolentino | 44df75e | 2006-01-17 07:03:41 +0100 | [diff] [blame] | 28 | #include <linux/module.h> |
| 29 | #include <linux/memory_hotplug.h> |
Konrad Rzeszutek | ae32b12 | 2007-05-02 19:27:11 +0200 | [diff] [blame] | 30 | #include <linux/nmi.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | |
| 32 | #include <asm/processor.h> |
| 33 | #include <asm/system.h> |
| 34 | #include <asm/uaccess.h> |
| 35 | #include <asm/pgtable.h> |
| 36 | #include <asm/pgalloc.h> |
| 37 | #include <asm/dma.h> |
| 38 | #include <asm/fixmap.h> |
| 39 | #include <asm/e820.h> |
| 40 | #include <asm/apic.h> |
| 41 | #include <asm/tlb.h> |
| 42 | #include <asm/mmu_context.h> |
| 43 | #include <asm/proto.h> |
| 44 | #include <asm/smp.h> |
Andi Kleen | 2bc0414 | 2005-11-05 17:25:53 +0100 | [diff] [blame] | 45 | #include <asm/sections.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | |
| 47 | #ifndef Dprintk |
| 48 | #define Dprintk(x...) |
| 49 | #endif |
| 50 | |
Stephen Hemminger | e658450 | 2007-05-02 19:27:06 +0200 | [diff] [blame] | 51 | const struct dma_mapping_ops* dma_ops; |
Muli Ben-Yehuda | 17a941d | 2006-01-11 22:44:42 +0100 | [diff] [blame] | 52 | EXPORT_SYMBOL(dma_ops); |
| 53 | |
Andi Kleen | e18c687 | 2005-11-05 17:25:53 +0100 | [diff] [blame] | 54 | static unsigned long dma_reserve __initdata; |
| 55 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | DEFINE_PER_CPU(struct mmu_gather, mmu_gathers); |
| 57 | |
| 58 | /* |
| 59 | * NOTE: pagetable_init alloc all the fixmap pagetables contiguous on the |
| 60 | * physical space so we can cache the place of the first one and move |
| 61 | * around without checking the pgd every time. |
| 62 | */ |
| 63 | |
| 64 | void show_mem(void) |
| 65 | { |
Andi Kleen | e92343c | 2005-09-12 18:49:24 +0200 | [diff] [blame] | 66 | long i, total = 0, reserved = 0; |
| 67 | long shared = 0, cached = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | pg_data_t *pgdat; |
| 69 | struct page *page; |
| 70 | |
Andi Kleen | e92343c | 2005-09-12 18:49:24 +0200 | [diff] [blame] | 71 | printk(KERN_INFO "Mem-info:\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | show_free_areas(); |
Andi Kleen | e92343c | 2005-09-12 18:49:24 +0200 | [diff] [blame] | 73 | printk(KERN_INFO "Free swap: %6ldkB\n", nr_swap_pages<<(PAGE_SHIFT-10)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | |
KAMEZAWA Hiroyuki | ec936fc | 2006-03-27 01:15:59 -0800 | [diff] [blame] | 75 | for_each_online_pgdat(pgdat) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | for (i = 0; i < pgdat->node_spanned_pages; ++i) { |
Konrad Rzeszutek | ae32b12 | 2007-05-02 19:27:11 +0200 | [diff] [blame] | 77 | /* this loop can take a while with 256 GB and 4k pages |
| 78 | so update the NMI watchdog */ |
| 79 | if (unlikely(i % MAX_ORDER_NR_PAGES == 0)) { |
| 80 | touch_nmi_watchdog(); |
| 81 | } |
Bob Picco | 12710a5 | 2007-06-08 13:47:00 -0700 | [diff] [blame] | 82 | if (!pfn_valid(pgdat->node_start_pfn + i)) |
| 83 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | page = pfn_to_page(pgdat->node_start_pfn + i); |
| 85 | total++; |
Andi Kleen | e92343c | 2005-09-12 18:49:24 +0200 | [diff] [blame] | 86 | if (PageReserved(page)) |
| 87 | reserved++; |
| 88 | else if (PageSwapCache(page)) |
| 89 | cached++; |
| 90 | else if (page_count(page)) |
| 91 | shared += page_count(page) - 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | } |
| 93 | } |
Andi Kleen | e92343c | 2005-09-12 18:49:24 +0200 | [diff] [blame] | 94 | printk(KERN_INFO "%lu pages of RAM\n", total); |
| 95 | printk(KERN_INFO "%lu reserved pages\n",reserved); |
| 96 | printk(KERN_INFO "%lu pages shared\n",shared); |
| 97 | printk(KERN_INFO "%lu pages swap cached\n",cached); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | } |
| 99 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | int after_bootmem; |
| 101 | |
Andi Kleen | 5f44a66 | 2006-03-25 16:30:25 +0100 | [diff] [blame] | 102 | static __init void *spp_getpage(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | { |
| 104 | void *ptr; |
| 105 | if (after_bootmem) |
| 106 | ptr = (void *) get_zeroed_page(GFP_ATOMIC); |
| 107 | else |
| 108 | ptr = alloc_bootmem_pages(PAGE_SIZE); |
| 109 | if (!ptr || ((unsigned long)ptr & ~PAGE_MASK)) |
| 110 | panic("set_pte_phys: cannot allocate page data %s\n", after_bootmem?"after bootmem":""); |
| 111 | |
| 112 | Dprintk("spp_getpage %p\n", ptr); |
| 113 | return ptr; |
| 114 | } |
| 115 | |
Andi Kleen | 5f44a66 | 2006-03-25 16:30:25 +0100 | [diff] [blame] | 116 | static __init void set_pte_phys(unsigned long vaddr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | unsigned long phys, pgprot_t prot) |
| 118 | { |
| 119 | pgd_t *pgd; |
| 120 | pud_t *pud; |
| 121 | pmd_t *pmd; |
| 122 | pte_t *pte, new_pte; |
| 123 | |
| 124 | Dprintk("set_pte_phys %lx to %lx\n", vaddr, phys); |
| 125 | |
| 126 | pgd = pgd_offset_k(vaddr); |
| 127 | if (pgd_none(*pgd)) { |
| 128 | printk("PGD FIXMAP MISSING, it should be setup in head.S!\n"); |
| 129 | return; |
| 130 | } |
| 131 | pud = pud_offset(pgd, vaddr); |
| 132 | if (pud_none(*pud)) { |
| 133 | pmd = (pmd_t *) spp_getpage(); |
| 134 | set_pud(pud, __pud(__pa(pmd) | _KERNPG_TABLE | _PAGE_USER)); |
| 135 | if (pmd != pmd_offset(pud, 0)) { |
| 136 | printk("PAGETABLE BUG #01! %p <-> %p\n", pmd, pmd_offset(pud,0)); |
| 137 | return; |
| 138 | } |
| 139 | } |
| 140 | pmd = pmd_offset(pud, vaddr); |
| 141 | if (pmd_none(*pmd)) { |
| 142 | pte = (pte_t *) spp_getpage(); |
| 143 | set_pmd(pmd, __pmd(__pa(pte) | _KERNPG_TABLE | _PAGE_USER)); |
| 144 | if (pte != pte_offset_kernel(pmd, 0)) { |
| 145 | printk("PAGETABLE BUG #02!\n"); |
| 146 | return; |
| 147 | } |
| 148 | } |
| 149 | new_pte = pfn_pte(phys >> PAGE_SHIFT, prot); |
| 150 | |
| 151 | pte = pte_offset_kernel(pmd, vaddr); |
| 152 | if (!pte_none(*pte) && |
| 153 | pte_val(*pte) != (pte_val(new_pte) & __supported_pte_mask)) |
| 154 | pte_ERROR(*pte); |
| 155 | set_pte(pte, new_pte); |
| 156 | |
| 157 | /* |
| 158 | * It's enough to flush this one mapping. |
| 159 | * (PGE mappings get flushed as well) |
| 160 | */ |
| 161 | __flush_tlb_one(vaddr); |
| 162 | } |
| 163 | |
| 164 | /* NOTE: this is meant to be run only at boot */ |
Andi Kleen | 5f44a66 | 2006-03-25 16:30:25 +0100 | [diff] [blame] | 165 | void __init |
| 166 | __set_fixmap (enum fixed_addresses idx, unsigned long phys, pgprot_t prot) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | { |
| 168 | unsigned long address = __fix_to_virt(idx); |
| 169 | |
| 170 | if (idx >= __end_of_fixed_addresses) { |
| 171 | printk("Invalid __set_fixmap\n"); |
| 172 | return; |
| 173 | } |
| 174 | set_pte_phys(address, phys, prot); |
| 175 | } |
| 176 | |
Yasunori Goto | a3142c8 | 2007-05-08 00:23:07 -0700 | [diff] [blame] | 177 | unsigned long __meminitdata table_start, table_end; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | |
Vivek Goyal | dafe41e | 2007-05-02 19:27:06 +0200 | [diff] [blame] | 179 | static __meminit void *alloc_low_page(unsigned long *phys) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | { |
Vivek Goyal | dafe41e | 2007-05-02 19:27:06 +0200 | [diff] [blame] | 181 | unsigned long pfn = table_end++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | void *adr; |
| 183 | |
Matt Tolentino | 44df75e | 2006-01-17 07:03:41 +0100 | [diff] [blame] | 184 | if (after_bootmem) { |
| 185 | adr = (void *)get_zeroed_page(GFP_ATOMIC); |
| 186 | *phys = __pa(adr); |
| 187 | return adr; |
| 188 | } |
| 189 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | if (pfn >= end_pfn) |
| 191 | panic("alloc_low_page: ran out of memory"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | |
Vivek Goyal | dafe41e | 2007-05-02 19:27:06 +0200 | [diff] [blame] | 193 | adr = early_ioremap(pfn * PAGE_SIZE, PAGE_SIZE); |
| 194 | memset(adr, 0, PAGE_SIZE); |
| 195 | *phys = pfn * PAGE_SIZE; |
| 196 | return adr; |
| 197 | } |
| 198 | |
| 199 | static __meminit void unmap_low_page(void *adr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | { |
Matt Tolentino | 44df75e | 2006-01-17 07:03:41 +0100 | [diff] [blame] | 201 | |
| 202 | if (after_bootmem) |
| 203 | return; |
| 204 | |
Vivek Goyal | dafe41e | 2007-05-02 19:27:06 +0200 | [diff] [blame] | 205 | early_iounmap(adr, PAGE_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | } |
| 207 | |
Andi Kleen | f2d3efe | 2006-03-25 16:30:22 +0100 | [diff] [blame] | 208 | /* Must run before zap_low_mappings */ |
Yasunori Goto | a3142c8 | 2007-05-08 00:23:07 -0700 | [diff] [blame] | 209 | __meminit void *early_ioremap(unsigned long addr, unsigned long size) |
Andi Kleen | f2d3efe | 2006-03-25 16:30:22 +0100 | [diff] [blame] | 210 | { |
Vivek Goyal | dafe41e | 2007-05-02 19:27:06 +0200 | [diff] [blame] | 211 | unsigned long vaddr; |
| 212 | pmd_t *pmd, *last_pmd; |
| 213 | int i, pmds; |
Andi Kleen | f2d3efe | 2006-03-25 16:30:22 +0100 | [diff] [blame] | 214 | |
Vivek Goyal | dafe41e | 2007-05-02 19:27:06 +0200 | [diff] [blame] | 215 | pmds = ((addr & ~PMD_MASK) + size + ~PMD_MASK) / PMD_SIZE; |
| 216 | vaddr = __START_KERNEL_map; |
| 217 | pmd = level2_kernel_pgt; |
| 218 | last_pmd = level2_kernel_pgt + PTRS_PER_PMD - 1; |
| 219 | for (; pmd <= last_pmd; pmd++, vaddr += PMD_SIZE) { |
| 220 | for (i = 0; i < pmds; i++) { |
| 221 | if (pmd_present(pmd[i])) |
| 222 | goto next; |
| 223 | } |
| 224 | vaddr += addr & ~PMD_MASK; |
| 225 | addr &= PMD_MASK; |
| 226 | for (i = 0; i < pmds; i++, addr += PMD_SIZE) |
| 227 | set_pmd(pmd + i,__pmd(addr | _KERNPG_TABLE | _PAGE_PSE)); |
| 228 | __flush_tlb(); |
| 229 | return (void *)vaddr; |
| 230 | next: |
| 231 | ; |
Andi Kleen | f2d3efe | 2006-03-25 16:30:22 +0100 | [diff] [blame] | 232 | } |
Vivek Goyal | dafe41e | 2007-05-02 19:27:06 +0200 | [diff] [blame] | 233 | printk("early_ioremap(0x%lx, %lu) failed\n", addr, size); |
| 234 | return NULL; |
Andi Kleen | f2d3efe | 2006-03-25 16:30:22 +0100 | [diff] [blame] | 235 | } |
| 236 | |
| 237 | /* To avoid virtual aliases later */ |
Yasunori Goto | a3142c8 | 2007-05-08 00:23:07 -0700 | [diff] [blame] | 238 | __meminit void early_iounmap(void *addr, unsigned long size) |
Andi Kleen | f2d3efe | 2006-03-25 16:30:22 +0100 | [diff] [blame] | 239 | { |
Vivek Goyal | dafe41e | 2007-05-02 19:27:06 +0200 | [diff] [blame] | 240 | unsigned long vaddr; |
| 241 | pmd_t *pmd; |
| 242 | int i, pmds; |
| 243 | |
| 244 | vaddr = (unsigned long)addr; |
| 245 | pmds = ((vaddr & ~PMD_MASK) + size + ~PMD_MASK) / PMD_SIZE; |
| 246 | pmd = level2_kernel_pgt + pmd_index(vaddr); |
| 247 | for (i = 0; i < pmds; i++) |
| 248 | pmd_clear(pmd + i); |
Andi Kleen | f2d3efe | 2006-03-25 16:30:22 +0100 | [diff] [blame] | 249 | __flush_tlb(); |
| 250 | } |
| 251 | |
Matt Tolentino | 44df75e | 2006-01-17 07:03:41 +0100 | [diff] [blame] | 252 | static void __meminit |
Keith Mannthey | 6ad9165 | 2006-09-26 10:52:36 +0200 | [diff] [blame] | 253 | phys_pmd_init(pmd_t *pmd_page, unsigned long address, unsigned long end) |
Matt Tolentino | 44df75e | 2006-01-17 07:03:41 +0100 | [diff] [blame] | 254 | { |
Keith Mannthey | 6ad9165 | 2006-09-26 10:52:36 +0200 | [diff] [blame] | 255 | int i = pmd_index(address); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | |
Keith Mannthey | 6ad9165 | 2006-09-26 10:52:36 +0200 | [diff] [blame] | 257 | for (; i < PTRS_PER_PMD; i++, address += PMD_SIZE) { |
Matt Tolentino | 44df75e | 2006-01-17 07:03:41 +0100 | [diff] [blame] | 258 | unsigned long entry; |
Keith Mannthey | 6ad9165 | 2006-09-26 10:52:36 +0200 | [diff] [blame] | 259 | pmd_t *pmd = pmd_page + pmd_index(address); |
Matt Tolentino | 44df75e | 2006-01-17 07:03:41 +0100 | [diff] [blame] | 260 | |
Jan Beulich | 5f51e13 | 2006-06-26 13:59:02 +0200 | [diff] [blame] | 261 | if (address >= end) { |
| 262 | if (!after_bootmem) |
| 263 | for (; i < PTRS_PER_PMD; i++, pmd++) |
| 264 | set_pmd(pmd, __pmd(0)); |
Matt Tolentino | 44df75e | 2006-01-17 07:03:41 +0100 | [diff] [blame] | 265 | break; |
| 266 | } |
Keith Mannthey | 6ad9165 | 2006-09-26 10:52:36 +0200 | [diff] [blame] | 267 | |
| 268 | if (pmd_val(*pmd)) |
| 269 | continue; |
| 270 | |
Matt Tolentino | 44df75e | 2006-01-17 07:03:41 +0100 | [diff] [blame] | 271 | entry = _PAGE_NX|_PAGE_PSE|_KERNPG_TABLE|_PAGE_GLOBAL|address; |
| 272 | entry &= __supported_pte_mask; |
| 273 | set_pmd(pmd, __pmd(entry)); |
| 274 | } |
| 275 | } |
| 276 | |
| 277 | static void __meminit |
| 278 | phys_pmd_update(pud_t *pud, unsigned long address, unsigned long end) |
| 279 | { |
Keith Mannthey | 6ad9165 | 2006-09-26 10:52:36 +0200 | [diff] [blame] | 280 | pmd_t *pmd = pmd_offset(pud,0); |
| 281 | spin_lock(&init_mm.page_table_lock); |
| 282 | phys_pmd_init(pmd, address, end); |
| 283 | spin_unlock(&init_mm.page_table_lock); |
| 284 | __flush_tlb_all(); |
Matt Tolentino | 44df75e | 2006-01-17 07:03:41 +0100 | [diff] [blame] | 285 | } |
| 286 | |
Keith Mannthey | 6ad9165 | 2006-09-26 10:52:36 +0200 | [diff] [blame] | 287 | static void __meminit phys_pud_init(pud_t *pud_page, unsigned long addr, unsigned long end) |
Matt Tolentino | 44df75e | 2006-01-17 07:03:41 +0100 | [diff] [blame] | 288 | { |
Keith Mannthey | 6ad9165 | 2006-09-26 10:52:36 +0200 | [diff] [blame] | 289 | int i = pud_index(addr); |
Matt Tolentino | 44df75e | 2006-01-17 07:03:41 +0100 | [diff] [blame] | 290 | |
Matt Tolentino | 44df75e | 2006-01-17 07:03:41 +0100 | [diff] [blame] | 291 | |
Keith Mannthey | 6ad9165 | 2006-09-26 10:52:36 +0200 | [diff] [blame] | 292 | for (; i < PTRS_PER_PUD; i++, addr = (addr & PUD_MASK) + PUD_SIZE ) { |
Keith Mannthey | 6ad9165 | 2006-09-26 10:52:36 +0200 | [diff] [blame] | 293 | unsigned long pmd_phys; |
| 294 | pud_t *pud = pud_page + pud_index(addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | pmd_t *pmd; |
| 296 | |
Keith Mannthey | 6ad9165 | 2006-09-26 10:52:36 +0200 | [diff] [blame] | 297 | if (addr >= end) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | |
Keith Mannthey | 6ad9165 | 2006-09-26 10:52:36 +0200 | [diff] [blame] | 300 | if (!after_bootmem && !e820_any_mapped(addr,addr+PUD_SIZE,0)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | set_pud(pud, __pud(0)); |
| 302 | continue; |
| 303 | } |
| 304 | |
Keith Mannthey | 6ad9165 | 2006-09-26 10:52:36 +0200 | [diff] [blame] | 305 | if (pud_val(*pud)) { |
| 306 | phys_pmd_update(pud, addr, end); |
| 307 | continue; |
| 308 | } |
| 309 | |
Vivek Goyal | dafe41e | 2007-05-02 19:27:06 +0200 | [diff] [blame] | 310 | pmd = alloc_low_page(&pmd_phys); |
Matt Tolentino | 44df75e | 2006-01-17 07:03:41 +0100 | [diff] [blame] | 311 | spin_lock(&init_mm.page_table_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | set_pud(pud, __pud(pmd_phys | _KERNPG_TABLE)); |
Keith Mannthey | 6ad9165 | 2006-09-26 10:52:36 +0200 | [diff] [blame] | 313 | phys_pmd_init(pmd, addr, end); |
Matt Tolentino | 44df75e | 2006-01-17 07:03:41 +0100 | [diff] [blame] | 314 | spin_unlock(&init_mm.page_table_lock); |
Vivek Goyal | dafe41e | 2007-05-02 19:27:06 +0200 | [diff] [blame] | 315 | unmap_low_page(pmd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | } |
| 317 | __flush_tlb(); |
| 318 | } |
| 319 | |
| 320 | static void __init find_early_table_space(unsigned long end) |
| 321 | { |
Andi Kleen | 6c5acd1 | 2006-01-11 22:46:57 +0100 | [diff] [blame] | 322 | unsigned long puds, pmds, tables, start; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 323 | |
| 324 | puds = (end + PUD_SIZE - 1) >> PUD_SHIFT; |
| 325 | pmds = (end + PMD_SIZE - 1) >> PMD_SHIFT; |
| 326 | tables = round_up(puds * sizeof(pud_t), PAGE_SIZE) + |
| 327 | round_up(pmds * sizeof(pmd_t), PAGE_SIZE); |
| 328 | |
Andi Kleen | ee408c7 | 2006-01-16 01:56:51 +0100 | [diff] [blame] | 329 | /* RED-PEN putting page tables only on node 0 could |
| 330 | cause a hotspot and fill up ZONE_DMA. The page tables |
| 331 | need roughly 0.5KB per GB. */ |
| 332 | start = 0x8000; |
| 333 | table_start = find_e820_area(start, end, tables); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 334 | if (table_start == -1UL) |
| 335 | panic("Cannot find space for the kernel page tables"); |
| 336 | |
| 337 | table_start >>= PAGE_SHIFT; |
| 338 | table_end = table_start; |
Matt Tolentino | 44df75e | 2006-01-17 07:03:41 +0100 | [diff] [blame] | 339 | |
| 340 | early_printk("kernel direct mapping tables up to %lx @ %lx-%lx\n", |
Jan Beulich | 5f51e13 | 2006-06-26 13:59:02 +0200 | [diff] [blame] | 341 | end, table_start << PAGE_SHIFT, |
| 342 | (table_start << PAGE_SHIFT) + tables); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | } |
| 344 | |
| 345 | /* Setup the direct mapping of the physical memory at PAGE_OFFSET. |
| 346 | This runs before bootmem is initialized and gets pages directly from the |
| 347 | physical memory. To access them they are temporarily mapped. */ |
Matt Tolentino | 44df75e | 2006-01-17 07:03:41 +0100 | [diff] [blame] | 348 | void __meminit init_memory_mapping(unsigned long start, unsigned long end) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | { |
| 350 | unsigned long next; |
| 351 | |
| 352 | Dprintk("init_memory_mapping\n"); |
| 353 | |
| 354 | /* |
| 355 | * Find space for the kernel direct mapping tables. |
| 356 | * Later we should allocate these tables in the local node of the memory |
| 357 | * mapped. Unfortunately this is done currently before the nodes are |
| 358 | * discovered. |
| 359 | */ |
Matt Tolentino | 44df75e | 2006-01-17 07:03:41 +0100 | [diff] [blame] | 360 | if (!after_bootmem) |
| 361 | find_early_table_space(end); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 | |
| 363 | start = (unsigned long)__va(start); |
| 364 | end = (unsigned long)__va(end); |
| 365 | |
| 366 | for (; start < end; start = next) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | unsigned long pud_phys; |
Matt Tolentino | 44df75e | 2006-01-17 07:03:41 +0100 | [diff] [blame] | 368 | pgd_t *pgd = pgd_offset_k(start); |
| 369 | pud_t *pud; |
| 370 | |
| 371 | if (after_bootmem) |
Andi Kleen | d2ae5b5 | 2006-06-26 13:57:56 +0200 | [diff] [blame] | 372 | pud = pud_offset(pgd, start & PGDIR_MASK); |
Matt Tolentino | 44df75e | 2006-01-17 07:03:41 +0100 | [diff] [blame] | 373 | else |
Vivek Goyal | dafe41e | 2007-05-02 19:27:06 +0200 | [diff] [blame] | 374 | pud = alloc_low_page(&pud_phys); |
Matt Tolentino | 44df75e | 2006-01-17 07:03:41 +0100 | [diff] [blame] | 375 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | next = start + PGDIR_SIZE; |
| 377 | if (next > end) |
| 378 | next = end; |
| 379 | phys_pud_init(pud, __pa(start), __pa(next)); |
Matt Tolentino | 44df75e | 2006-01-17 07:03:41 +0100 | [diff] [blame] | 380 | if (!after_bootmem) |
| 381 | set_pgd(pgd_offset_k(start), mk_kernel_pgd(pud_phys)); |
Vivek Goyal | dafe41e | 2007-05-02 19:27:06 +0200 | [diff] [blame] | 382 | unmap_low_page(pud); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | } |
| 384 | |
Matt Tolentino | 44df75e | 2006-01-17 07:03:41 +0100 | [diff] [blame] | 385 | if (!after_bootmem) |
| 386 | asm volatile("movq %%cr4,%0" : "=r" (mmu_cr4_features)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | __flush_tlb_all(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | } |
| 389 | |
Matt Tolentino | 2b97690 | 2005-06-23 00:08:06 -0700 | [diff] [blame] | 390 | #ifndef CONFIG_NUMA |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | void __init paging_init(void) |
| 392 | { |
Mel Gorman | 6391af1 | 2006-10-11 01:20:39 -0700 | [diff] [blame] | 393 | unsigned long max_zone_pfns[MAX_NR_ZONES]; |
| 394 | memset(max_zone_pfns, 0, sizeof(max_zone_pfns)); |
| 395 | max_zone_pfns[ZONE_DMA] = MAX_DMA_PFN; |
| 396 | max_zone_pfns[ZONE_DMA32] = MAX_DMA32_PFN; |
| 397 | max_zone_pfns[ZONE_NORMAL] = end_pfn; |
| 398 | |
Matt Tolentino | 44df75e | 2006-01-17 07:03:41 +0100 | [diff] [blame] | 399 | memory_present(0, 0, end_pfn); |
| 400 | sparse_init(); |
Mel Gorman | 5cb248a | 2006-09-27 01:49:52 -0700 | [diff] [blame] | 401 | free_area_init_nodes(max_zone_pfns); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | } |
| 403 | #endif |
| 404 | |
| 405 | /* Unmap a kernel mapping if it exists. This is useful to avoid prefetches |
| 406 | from the CPU leading to inconsistent cache lines. address and size |
| 407 | must be aligned to 2MB boundaries. |
| 408 | Does nothing when the mapping doesn't exist. */ |
| 409 | void __init clear_kernel_mapping(unsigned long address, unsigned long size) |
| 410 | { |
| 411 | unsigned long end = address + size; |
| 412 | |
| 413 | BUG_ON(address & ~LARGE_PAGE_MASK); |
| 414 | BUG_ON(size & ~LARGE_PAGE_MASK); |
| 415 | |
| 416 | for (; address < end; address += LARGE_PAGE_SIZE) { |
| 417 | pgd_t *pgd = pgd_offset_k(address); |
| 418 | pud_t *pud; |
| 419 | pmd_t *pmd; |
| 420 | if (pgd_none(*pgd)) |
| 421 | continue; |
| 422 | pud = pud_offset(pgd, address); |
| 423 | if (pud_none(*pud)) |
| 424 | continue; |
| 425 | pmd = pmd_offset(pud, address); |
| 426 | if (!pmd || pmd_none(*pmd)) |
| 427 | continue; |
| 428 | if (0 == (pmd_val(*pmd) & _PAGE_PSE)) { |
| 429 | /* Could handle this, but it should not happen currently. */ |
| 430 | printk(KERN_ERR |
| 431 | "clear_kernel_mapping: mapping has been split. will leak memory\n"); |
| 432 | pmd_ERROR(*pmd); |
| 433 | } |
| 434 | set_pmd(pmd, __pmd(0)); |
| 435 | } |
| 436 | __flush_tlb_all(); |
| 437 | } |
| 438 | |
Matt Tolentino | 44df75e | 2006-01-17 07:03:41 +0100 | [diff] [blame] | 439 | /* |
| 440 | * Memory hotplug specific functions |
Matt Tolentino | 44df75e | 2006-01-17 07:03:41 +0100 | [diff] [blame] | 441 | */ |
Matt Tolentino | 44df75e | 2006-01-17 07:03:41 +0100 | [diff] [blame] | 442 | void online_page(struct page *page) |
| 443 | { |
| 444 | ClearPageReserved(page); |
Nick Piggin | 7835e98 | 2006-03-22 00:08:40 -0800 | [diff] [blame] | 445 | init_page_count(page); |
Matt Tolentino | 44df75e | 2006-01-17 07:03:41 +0100 | [diff] [blame] | 446 | __free_page(page); |
| 447 | totalram_pages++; |
| 448 | num_physpages++; |
| 449 | } |
| 450 | |
Yasunori Goto | bc02af9 | 2006-06-27 02:53:30 -0700 | [diff] [blame] | 451 | #ifdef CONFIG_MEMORY_HOTPLUG |
| 452 | /* |
Yasunori Goto | bc02af9 | 2006-06-27 02:53:30 -0700 | [diff] [blame] | 453 | * Memory is added always to NORMAL zone. This means you will never get |
| 454 | * additional DMA/DMA32 memory. |
| 455 | */ |
| 456 | int arch_add_memory(int nid, u64 start, u64 size) |
| 457 | { |
| 458 | struct pglist_data *pgdat = NODE_DATA(nid); |
Christoph Lameter | 776ed98 | 2006-09-25 23:31:09 -0700 | [diff] [blame] | 459 | struct zone *zone = pgdat->node_zones + ZONE_NORMAL; |
Yasunori Goto | bc02af9 | 2006-06-27 02:53:30 -0700 | [diff] [blame] | 460 | unsigned long start_pfn = start >> PAGE_SHIFT; |
| 461 | unsigned long nr_pages = size >> PAGE_SHIFT; |
| 462 | int ret; |
| 463 | |
Keith Mannthey | 45e0b78 | 2006-09-30 23:27:09 -0700 | [diff] [blame] | 464 | init_memory_mapping(start, (start + size -1)); |
| 465 | |
Yasunori Goto | bc02af9 | 2006-06-27 02:53:30 -0700 | [diff] [blame] | 466 | ret = __add_pages(zone, start_pfn, nr_pages); |
| 467 | if (ret) |
| 468 | goto error; |
| 469 | |
Yasunori Goto | bc02af9 | 2006-06-27 02:53:30 -0700 | [diff] [blame] | 470 | return ret; |
| 471 | error: |
| 472 | printk("%s: Problem encountered in __add_pages!\n", __func__); |
| 473 | return ret; |
| 474 | } |
| 475 | EXPORT_SYMBOL_GPL(arch_add_memory); |
| 476 | |
| 477 | int remove_memory(u64 start, u64 size) |
| 478 | { |
| 479 | return -EINVAL; |
| 480 | } |
| 481 | EXPORT_SYMBOL_GPL(remove_memory); |
| 482 | |
Yasunori Goto | 8243229 | 2006-11-18 22:19:40 -0800 | [diff] [blame] | 483 | #if !defined(CONFIG_ACPI_NUMA) && defined(CONFIG_NUMA) |
Keith Mannthey | 4942e99 | 2006-09-30 23:27:06 -0700 | [diff] [blame] | 484 | int memory_add_physaddr_to_nid(u64 start) |
| 485 | { |
| 486 | return 0; |
| 487 | } |
Keith Mannthey | 8c2676a | 2006-09-30 23:27:07 -0700 | [diff] [blame] | 488 | EXPORT_SYMBOL_GPL(memory_add_physaddr_to_nid); |
Keith Mannthey | 4942e99 | 2006-09-30 23:27:06 -0700 | [diff] [blame] | 489 | #endif |
| 490 | |
Keith Mannthey | 45e0b78 | 2006-09-30 23:27:09 -0700 | [diff] [blame] | 491 | #endif /* CONFIG_MEMORY_HOTPLUG */ |
| 492 | |
| 493 | #ifdef CONFIG_MEMORY_HOTPLUG_RESERVE |
Andi Kleen | 9d99aaa | 2006-04-07 19:49:15 +0200 | [diff] [blame] | 494 | /* |
| 495 | * Memory Hotadd without sparsemem. The mem_maps have been allocated in advance, |
| 496 | * just online the pages. |
| 497 | */ |
| 498 | int __add_pages(struct zone *z, unsigned long start_pfn, unsigned long nr_pages) |
| 499 | { |
| 500 | int err = -EIO; |
| 501 | unsigned long pfn; |
| 502 | unsigned long total = 0, mem = 0; |
| 503 | for (pfn = start_pfn; pfn < start_pfn + nr_pages; pfn++) { |
Andi Kleen | 68a3a7f | 2006-04-07 19:49:18 +0200 | [diff] [blame] | 504 | if (pfn_valid(pfn)) { |
Andi Kleen | 9d99aaa | 2006-04-07 19:49:15 +0200 | [diff] [blame] | 505 | online_page(pfn_to_page(pfn)); |
| 506 | err = 0; |
| 507 | mem++; |
| 508 | } |
| 509 | total++; |
| 510 | } |
| 511 | if (!err) { |
| 512 | z->spanned_pages += total; |
| 513 | z->present_pages += mem; |
| 514 | z->zone_pgdat->node_spanned_pages += total; |
| 515 | z->zone_pgdat->node_present_pages += mem; |
| 516 | } |
| 517 | return err; |
| 518 | } |
Keith Mannthey | 45e0b78 | 2006-09-30 23:27:09 -0700 | [diff] [blame] | 519 | #endif |
Matt Tolentino | 44df75e | 2006-01-17 07:03:41 +0100 | [diff] [blame] | 520 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 521 | static struct kcore_list kcore_mem, kcore_vmalloc, kcore_kernel, kcore_modules, |
| 522 | kcore_vsyscall; |
| 523 | |
| 524 | void __init mem_init(void) |
| 525 | { |
Andi Kleen | 0a43e4b | 2005-09-12 18:49:24 +0200 | [diff] [blame] | 526 | long codesize, reservedpages, datasize, initsize; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 527 | |
Jon Mason | 0dc243a | 2006-06-26 13:58:11 +0200 | [diff] [blame] | 528 | pci_iommu_alloc(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 529 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 530 | /* clear the zero-page */ |
| 531 | memset(empty_zero_page, 0, PAGE_SIZE); |
| 532 | |
| 533 | reservedpages = 0; |
| 534 | |
| 535 | /* this will put all low memory onto the freelists */ |
Matt Tolentino | 2b97690 | 2005-06-23 00:08:06 -0700 | [diff] [blame] | 536 | #ifdef CONFIG_NUMA |
Andi Kleen | 0a43e4b | 2005-09-12 18:49:24 +0200 | [diff] [blame] | 537 | totalram_pages = numa_free_all_bootmem(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | #else |
Andi Kleen | 0a43e4b | 2005-09-12 18:49:24 +0200 | [diff] [blame] | 539 | totalram_pages = free_all_bootmem(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | #endif |
Mel Gorman | 5cb248a | 2006-09-27 01:49:52 -0700 | [diff] [blame] | 541 | reservedpages = end_pfn - totalram_pages - |
| 542 | absent_pages_in_range(0, end_pfn); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | |
| 544 | after_bootmem = 1; |
| 545 | |
| 546 | codesize = (unsigned long) &_etext - (unsigned long) &_text; |
| 547 | datasize = (unsigned long) &_edata - (unsigned long) &_etext; |
| 548 | initsize = (unsigned long) &__init_end - (unsigned long) &__init_begin; |
| 549 | |
| 550 | /* Register memory areas for /proc/kcore */ |
| 551 | kclist_add(&kcore_mem, __va(0), max_low_pfn << PAGE_SHIFT); |
| 552 | kclist_add(&kcore_vmalloc, (void *)VMALLOC_START, |
| 553 | VMALLOC_END-VMALLOC_START); |
| 554 | kclist_add(&kcore_kernel, &_stext, _end - _stext); |
| 555 | kclist_add(&kcore_modules, (void *)MODULES_VADDR, MODULES_LEN); |
| 556 | kclist_add(&kcore_vsyscall, (void *)VSYSCALL_START, |
| 557 | VSYSCALL_END - VSYSCALL_START); |
| 558 | |
Andi Kleen | 0a43e4b | 2005-09-12 18:49:24 +0200 | [diff] [blame] | 559 | printk("Memory: %luk/%luk available (%ldk kernel code, %ldk reserved, %ldk data, %ldk init)\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 560 | (unsigned long) nr_free_pages() << (PAGE_SHIFT-10), |
| 561 | end_pfn << (PAGE_SHIFT-10), |
| 562 | codesize >> 10, |
| 563 | reservedpages << (PAGE_SHIFT-10), |
| 564 | datasize >> 10, |
| 565 | initsize >> 10); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 566 | } |
| 567 | |
Gerd Hoffmann | d167a51 | 2006-06-26 13:56:16 +0200 | [diff] [blame] | 568 | void free_init_pages(char *what, unsigned long begin, unsigned long end) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 569 | { |
| 570 | unsigned long addr; |
| 571 | |
Gerd Hoffmann | d167a51 | 2006-06-26 13:56:16 +0200 | [diff] [blame] | 572 | if (begin >= end) |
| 573 | return; |
| 574 | |
Jan Beulich | 6fb1475 | 2007-05-02 19:27:10 +0200 | [diff] [blame] | 575 | printk(KERN_INFO "Freeing %s: %luk freed\n", what, (end - begin) >> 10); |
Gerd Hoffmann | d167a51 | 2006-06-26 13:56:16 +0200 | [diff] [blame] | 576 | for (addr = begin; addr < end; addr += PAGE_SIZE) { |
Linus Torvalds | e3ebadd | 2007-05-07 08:44:24 -0700 | [diff] [blame] | 577 | ClearPageReserved(virt_to_page(addr)); |
| 578 | init_page_count(virt_to_page(addr)); |
| 579 | memset((void *)(addr & ~(PAGE_SIZE-1)), |
| 580 | POISON_FREE_INITMEM, PAGE_SIZE); |
Jan Beulich | 6fb1475 | 2007-05-02 19:27:10 +0200 | [diff] [blame] | 581 | if (addr >= __START_KERNEL_map) |
| 582 | change_page_attr_addr(addr, 1, __pgprot(0)); |
Linus Torvalds | e3ebadd | 2007-05-07 08:44:24 -0700 | [diff] [blame] | 583 | free_page(addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 584 | totalram_pages++; |
| 585 | } |
Jan Beulich | 6fb1475 | 2007-05-02 19:27:10 +0200 | [diff] [blame] | 586 | if (addr > __START_KERNEL_map) |
| 587 | global_flush_tlb(); |
Gerd Hoffmann | d167a51 | 2006-06-26 13:56:16 +0200 | [diff] [blame] | 588 | } |
| 589 | |
| 590 | void free_initmem(void) |
| 591 | { |
Gerd Hoffmann | d167a51 | 2006-06-26 13:56:16 +0200 | [diff] [blame] | 592 | free_init_pages("unused kernel memory", |
Linus Torvalds | e3ebadd | 2007-05-07 08:44:24 -0700 | [diff] [blame] | 593 | (unsigned long)(&__init_begin), |
| 594 | (unsigned long)(&__init_end)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 595 | } |
| 596 | |
Arjan van de Ven | 67df197 | 2006-01-06 00:12:04 -0800 | [diff] [blame] | 597 | #ifdef CONFIG_DEBUG_RODATA |
| 598 | |
Arjan van de Ven | 67df197 | 2006-01-06 00:12:04 -0800 | [diff] [blame] | 599 | void mark_rodata_ro(void) |
| 600 | { |
Linus Torvalds | e3ebadd | 2007-05-07 08:44:24 -0700 | [diff] [blame] | 601 | unsigned long start = (unsigned long)_stext, end; |
Arjan van de Ven | 67df197 | 2006-01-06 00:12:04 -0800 | [diff] [blame] | 602 | |
Jan Beulich | 6fb1475 | 2007-05-02 19:27:10 +0200 | [diff] [blame] | 603 | #ifdef CONFIG_HOTPLUG_CPU |
| 604 | /* It must still be possible to apply SMP alternatives. */ |
| 605 | if (num_possible_cpus() > 1) |
Linus Torvalds | e3ebadd | 2007-05-07 08:44:24 -0700 | [diff] [blame] | 606 | start = (unsigned long)_etext; |
Jan Beulich | 6fb1475 | 2007-05-02 19:27:10 +0200 | [diff] [blame] | 607 | #endif |
Arjan van de Ven | 0864a4e | 2007-06-20 22:23:21 -0700 | [diff] [blame] | 608 | |
| 609 | #ifdef CONFIG_KPROBES |
| 610 | start = (unsigned long)__start_rodata; |
| 611 | #endif |
| 612 | |
Linus Torvalds | e3ebadd | 2007-05-07 08:44:24 -0700 | [diff] [blame] | 613 | end = (unsigned long)__end_rodata; |
| 614 | start = (start + PAGE_SIZE - 1) & PAGE_MASK; |
| 615 | end &= PAGE_MASK; |
| 616 | if (end <= start) |
| 617 | return; |
| 618 | |
| 619 | change_page_attr_addr(start, (end - start) >> PAGE_SHIFT, PAGE_KERNEL_RO); |
Arjan van de Ven | 67df197 | 2006-01-06 00:12:04 -0800 | [diff] [blame] | 620 | |
Jan Beulich | 6fb1475 | 2007-05-02 19:27:10 +0200 | [diff] [blame] | 621 | printk(KERN_INFO "Write protecting the kernel read-only data: %luk\n", |
Linus Torvalds | e3ebadd | 2007-05-07 08:44:24 -0700 | [diff] [blame] | 622 | (end - start) >> 10); |
Arjan van de Ven | 67df197 | 2006-01-06 00:12:04 -0800 | [diff] [blame] | 623 | |
| 624 | /* |
| 625 | * change_page_attr_addr() requires a global_flush_tlb() call after it. |
| 626 | * We do this after the printk so that if something went wrong in the |
| 627 | * change, the printk gets out at least to give a better debug hint |
| 628 | * of who is the culprit. |
| 629 | */ |
| 630 | global_flush_tlb(); |
| 631 | } |
| 632 | #endif |
| 633 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 634 | #ifdef CONFIG_BLK_DEV_INITRD |
| 635 | void free_initrd_mem(unsigned long start, unsigned long end) |
| 636 | { |
Linus Torvalds | e3ebadd | 2007-05-07 08:44:24 -0700 | [diff] [blame] | 637 | free_init_pages("initrd memory", start, end); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 638 | } |
| 639 | #endif |
| 640 | |
| 641 | void __init reserve_bootmem_generic(unsigned long phys, unsigned len) |
| 642 | { |
Matt Tolentino | 2b97690 | 2005-06-23 00:08:06 -0700 | [diff] [blame] | 643 | #ifdef CONFIG_NUMA |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 644 | int nid = phys_to_nid(phys); |
Andi Kleen | 5e58a02 | 2006-11-14 16:57:46 +0100 | [diff] [blame] | 645 | #endif |
| 646 | unsigned long pfn = phys >> PAGE_SHIFT; |
| 647 | if (pfn >= end_pfn) { |
| 648 | /* This can happen with kdump kernels when accessing firmware |
| 649 | tables. */ |
| 650 | if (pfn < end_pfn_map) |
| 651 | return; |
| 652 | printk(KERN_ERR "reserve_bootmem: illegal reserve %lx %u\n", |
| 653 | phys, len); |
| 654 | return; |
| 655 | } |
| 656 | |
| 657 | /* Should check here against the e820 map to avoid double free */ |
| 658 | #ifdef CONFIG_NUMA |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 659 | reserve_bootmem_node(NODE_DATA(nid), phys, len); |
| 660 | #else |
| 661 | reserve_bootmem(phys, len); |
| 662 | #endif |
Mel Gorman | 0e0b864 | 2006-09-27 01:49:56 -0700 | [diff] [blame] | 663 | if (phys+len <= MAX_DMA_PFN*PAGE_SIZE) { |
Andi Kleen | e18c687 | 2005-11-05 17:25:53 +0100 | [diff] [blame] | 664 | dma_reserve += len / PAGE_SIZE; |
Mel Gorman | 0e0b864 | 2006-09-27 01:49:56 -0700 | [diff] [blame] | 665 | set_dma_reserve(dma_reserve); |
| 666 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 667 | } |
| 668 | |
| 669 | int kern_addr_valid(unsigned long addr) |
| 670 | { |
| 671 | unsigned long above = ((long)addr) >> __VIRTUAL_MASK_SHIFT; |
| 672 | pgd_t *pgd; |
| 673 | pud_t *pud; |
| 674 | pmd_t *pmd; |
| 675 | pte_t *pte; |
| 676 | |
| 677 | if (above != 0 && above != -1UL) |
| 678 | return 0; |
| 679 | |
| 680 | pgd = pgd_offset_k(addr); |
| 681 | if (pgd_none(*pgd)) |
| 682 | return 0; |
| 683 | |
| 684 | pud = pud_offset(pgd, addr); |
| 685 | if (pud_none(*pud)) |
| 686 | return 0; |
| 687 | |
| 688 | pmd = pmd_offset(pud, addr); |
| 689 | if (pmd_none(*pmd)) |
| 690 | return 0; |
| 691 | if (pmd_large(*pmd)) |
| 692 | return pfn_valid(pmd_pfn(*pmd)); |
| 693 | |
| 694 | pte = pte_offset_kernel(pmd, addr); |
| 695 | if (pte_none(*pte)) |
| 696 | return 0; |
| 697 | return pfn_valid(pte_pfn(*pte)); |
| 698 | } |
| 699 | |
Ernie Petrides | 103efcd | 2006-12-07 02:14:09 +0100 | [diff] [blame] | 700 | /* A pseudo VMA to allow ptrace access for the vsyscall page. This only |
Andi Kleen | 1e01441 | 2005-04-16 15:24:55 -0700 | [diff] [blame] | 701 | covers the 64bit vsyscall page now. 32bit has a real VMA now and does |
| 702 | not need special handling anymore. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 703 | |
| 704 | static struct vm_area_struct gate_vma = { |
| 705 | .vm_start = VSYSCALL_START, |
Ernie Petrides | 103efcd | 2006-12-07 02:14:09 +0100 | [diff] [blame] | 706 | .vm_end = VSYSCALL_START + (VSYSCALL_MAPPED_PAGES << PAGE_SHIFT), |
| 707 | .vm_page_prot = PAGE_READONLY_EXEC, |
| 708 | .vm_flags = VM_READ | VM_EXEC |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 709 | }; |
| 710 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 711 | struct vm_area_struct *get_gate_vma(struct task_struct *tsk) |
| 712 | { |
| 713 | #ifdef CONFIG_IA32_EMULATION |
Andi Kleen | 1e01441 | 2005-04-16 15:24:55 -0700 | [diff] [blame] | 714 | if (test_tsk_thread_flag(tsk, TIF_IA32)) |
| 715 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 716 | #endif |
| 717 | return &gate_vma; |
| 718 | } |
| 719 | |
| 720 | int in_gate_area(struct task_struct *task, unsigned long addr) |
| 721 | { |
| 722 | struct vm_area_struct *vma = get_gate_vma(task); |
Andi Kleen | 1e01441 | 2005-04-16 15:24:55 -0700 | [diff] [blame] | 723 | if (!vma) |
| 724 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 725 | return (addr >= vma->vm_start) && (addr < vma->vm_end); |
| 726 | } |
| 727 | |
| 728 | /* Use this when you have no reliable task/vma, typically from interrupt |
| 729 | * context. It is less reliable than using the task's vma and may give |
| 730 | * false positives. |
| 731 | */ |
| 732 | int in_gate_area_no_task(unsigned long addr) |
| 733 | { |
Andi Kleen | 1e01441 | 2005-04-16 15:24:55 -0700 | [diff] [blame] | 734 | return (addr >= VSYSCALL_START) && (addr < VSYSCALL_END); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 735 | } |
Zou Nan hai | 2e1c49d | 2007-06-01 00:46:28 -0700 | [diff] [blame] | 736 | |
| 737 | void *alloc_bootmem_high_node(pg_data_t *pgdat, unsigned long size) |
| 738 | { |
| 739 | return __alloc_bootmem_core(pgdat->bdata, size, |
| 740 | SMP_CACHE_BYTES, (4UL*1024*1024*1024), 0); |
| 741 | } |
Andi Kleen | 2aae950 | 2007-07-21 17:10:01 +0200 | [diff] [blame] | 742 | |
| 743 | const char *arch_vma_name(struct vm_area_struct *vma) |
| 744 | { |
| 745 | if (vma->vm_mm && vma->vm_start == (long)vma->vm_mm->context.vdso) |
| 746 | return "[vdso]"; |
| 747 | if (vma == &gate_vma) |
| 748 | return "[vsyscall]"; |
| 749 | return NULL; |
| 750 | } |