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