init_64.c 19.2 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/*
 *  linux/arch/x86_64/mm/init.c
 *
 *  Copyright (C) 1995  Linus Torvalds
 *  Copyright (C) 2000  Pavel Machek <pavel@suse.cz>
 *  Copyright (C) 2002,2003 Andi Kleen <ak@suse.de>
 */

#include <linux/signal.h>
#include <linux/sched.h>
#include <linux/kernel.h>
#include <linux/errno.h>
#include <linux/string.h>
#include <linux/types.h>
#include <linux/ptrace.h>
#include <linux/mman.h>
#include <linux/mm.h>
#include <linux/swap.h>
#include <linux/smp.h>
#include <linux/init.h>
#include <linux/pagemap.h>
#include <linux/bootmem.h>
#include <linux/proc_fs.h>
24
#include <linux/pci.h>
25
#include <linux/pfn.h>
26
#include <linux/poison.h>
27
#include <linux/dma-mapping.h>
28 29
#include <linux/module.h>
#include <linux/memory_hotplug.h>
30
#include <linux/nmi.h>
L
Linus Torvalds 已提交
31 32 33 34 35 36 37 38 39 40 41 42 43 44

#include <asm/processor.h>
#include <asm/system.h>
#include <asm/uaccess.h>
#include <asm/pgtable.h>
#include <asm/pgalloc.h>
#include <asm/dma.h>
#include <asm/fixmap.h>
#include <asm/e820.h>
#include <asm/apic.h>
#include <asm/tlb.h>
#include <asm/mmu_context.h>
#include <asm/proto.h>
#include <asm/smp.h>
45
#include <asm/sections.h>
46
#include <asm/kdebug.h>
47
#include <asm/numa.h>
L
Linus Torvalds 已提交
48

T
Thomas Gleixner 已提交
49
const struct dma_mapping_ops *dma_ops;
50 51
EXPORT_SYMBOL(dma_ops);

52 53
static unsigned long dma_reserve __initdata;

L
Linus Torvalds 已提交
54 55 56 57 58 59 60 61 62 63
DEFINE_PER_CPU(struct mmu_gather, mmu_gathers);

/*
 * NOTE: pagetable_init alloc all the fixmap pagetables contiguous on the
 * physical space so we can cache the place of the first one and move
 * around without checking the pgd every time.
 */

void show_mem(void)
{
64 65
	long i, total = 0, reserved = 0;
	long shared = 0, cached = 0;
L
Linus Torvalds 已提交
66
	struct page *page;
T
Thomas Gleixner 已提交
67
	pg_data_t *pgdat;
L
Linus Torvalds 已提交
68

69
	printk(KERN_INFO "Mem-info:\n");
L
Linus Torvalds 已提交
70
	show_free_areas();
T
Thomas Gleixner 已提交
71 72
	printk(KERN_INFO "Free swap:       %6ldkB\n",
		nr_swap_pages << (PAGE_SHIFT-10));
L
Linus Torvalds 已提交
73

74
	for_each_online_pgdat(pgdat) {
T
Thomas Gleixner 已提交
75 76 77 78 79 80
		for (i = 0; i < pgdat->node_spanned_pages; ++i) {
			/*
			 * This loop can take a while with 256 GB and
			 * 4k pages so defer the NMI watchdog:
			 */
			if (unlikely(i % MAX_ORDER_NR_PAGES == 0))
81
				touch_nmi_watchdog();
T
Thomas Gleixner 已提交
82

B
Bob Picco 已提交
83 84
			if (!pfn_valid(pgdat->node_start_pfn + i))
				continue;
T
Thomas Gleixner 已提交
85

L
Linus Torvalds 已提交
86 87
			page = pfn_to_page(pgdat->node_start_pfn + i);
			total++;
88 89 90 91 92 93
			if (PageReserved(page))
				reserved++;
			else if (PageSwapCache(page))
				cached++;
			else if (page_count(page))
				shared += page_count(page) - 1;
T
Thomas Gleixner 已提交
94
		}
L
Linus Torvalds 已提交
95
	}
T
Thomas Gleixner 已提交
96 97 98 99
	printk(KERN_INFO "%lu pages of RAM\n",		total);
	printk(KERN_INFO "%lu reserved pages\n",	reserved);
	printk(KERN_INFO "%lu pages shared\n",		shared);
	printk(KERN_INFO "%lu pages swap cached\n",	cached);
L
Linus Torvalds 已提交
100 101 102 103
}

int after_bootmem;

104
static __init void *spp_getpage(void)
T
Thomas Gleixner 已提交
105
{
L
Linus Torvalds 已提交
106
	void *ptr;
T
Thomas Gleixner 已提交
107

L
Linus Torvalds 已提交
108
	if (after_bootmem)
T
Thomas Gleixner 已提交
109
		ptr = (void *) get_zeroed_page(GFP_ATOMIC);
L
Linus Torvalds 已提交
110 111
	else
		ptr = alloc_bootmem_pages(PAGE_SIZE);
T
Thomas Gleixner 已提交
112 113 114 115 116

	if (!ptr || ((unsigned long)ptr & ~PAGE_MASK)) {
		panic("set_pte_phys: cannot allocate page data %s\n",
			after_bootmem ? "after bootmem" : "");
	}
L
Linus Torvalds 已提交
117

118
	pr_debug("spp_getpage %p\n", ptr);
T
Thomas Gleixner 已提交
119

L
Linus Torvalds 已提交
120
	return ptr;
T
Thomas Gleixner 已提交
121
}
L
Linus Torvalds 已提交
122

T
Thomas Gleixner 已提交
123 124
static __init void
set_pte_phys(unsigned long vaddr, unsigned long phys, pgprot_t prot)
L
Linus Torvalds 已提交
125 126 127 128 129 130
{
	pgd_t *pgd;
	pud_t *pud;
	pmd_t *pmd;
	pte_t *pte, new_pte;

131
	pr_debug("set_pte_phys %lx to %lx\n", vaddr, phys);
L
Linus Torvalds 已提交
132 133 134

	pgd = pgd_offset_k(vaddr);
	if (pgd_none(*pgd)) {
135 136
		printk(KERN_ERR
			"PGD FIXMAP MISSING, it should be setup in head.S!\n");
L
Linus Torvalds 已提交
137 138 139 140
		return;
	}
	pud = pud_offset(pgd, vaddr);
	if (pud_none(*pud)) {
T
Thomas Gleixner 已提交
141
		pmd = (pmd_t *) spp_getpage();
L
Linus Torvalds 已提交
142 143
		set_pud(pud, __pud(__pa(pmd) | _KERNPG_TABLE | _PAGE_USER));
		if (pmd != pmd_offset(pud, 0)) {
144
			printk(KERN_ERR "PAGETABLE BUG #01! %p <-> %p\n",
T
Thomas Gleixner 已提交
145
				pmd, pmd_offset(pud, 0));
L
Linus Torvalds 已提交
146 147 148 149 150 151 152 153
			return;
		}
	}
	pmd = pmd_offset(pud, vaddr);
	if (pmd_none(*pmd)) {
		pte = (pte_t *) spp_getpage();
		set_pmd(pmd, __pmd(__pa(pte) | _KERNPG_TABLE | _PAGE_USER));
		if (pte != pte_offset_kernel(pmd, 0)) {
154
			printk(KERN_ERR "PAGETABLE BUG #02!\n");
L
Linus Torvalds 已提交
155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173
			return;
		}
	}
	new_pte = pfn_pte(phys >> PAGE_SHIFT, prot);

	pte = pte_offset_kernel(pmd, vaddr);
	if (!pte_none(*pte) &&
	    pte_val(*pte) != (pte_val(new_pte) & __supported_pte_mask))
		pte_ERROR(*pte);
	set_pte(pte, new_pte);

	/*
	 * It's enough to flush this one mapping.
	 * (PGE mappings get flushed as well)
	 */
	__flush_tlb_one(vaddr);
}

/* NOTE: this is meant to be run only at boot */
T
Thomas Gleixner 已提交
174 175
void __init
__set_fixmap(enum fixed_addresses idx, unsigned long phys, pgprot_t prot)
L
Linus Torvalds 已提交
176 177 178 179
{
	unsigned long address = __fix_to_virt(idx);

	if (idx >= __end_of_fixed_addresses) {
180
		printk(KERN_ERR "Invalid __set_fixmap\n");
L
Linus Torvalds 已提交
181 182 183 184 185
		return;
	}
	set_pte_phys(address, phys, prot);
}

186 187
static unsigned long __initdata table_start;
static unsigned long __meminitdata table_end;
L
Linus Torvalds 已提交
188

189
static __meminit void *alloc_low_page(unsigned long *phys)
T
Thomas Gleixner 已提交
190
{
191
	unsigned long pfn = table_end++;
L
Linus Torvalds 已提交
192 193
	void *adr;

194 195 196
	if (after_bootmem) {
		adr = (void *)get_zeroed_page(GFP_ATOMIC);
		*phys = __pa(adr);
T
Thomas Gleixner 已提交
197

198 199 200
		return adr;
	}

T
Thomas Gleixner 已提交
201 202
	if (pfn >= end_pfn)
		panic("alloc_low_page: ran out of memory");
203 204

	adr = early_ioremap(pfn * PAGE_SIZE, PAGE_SIZE);
205
	memset(adr, 0, PAGE_SIZE);
206 207 208
	*phys  = pfn * PAGE_SIZE;
	return adr;
}
L
Linus Torvalds 已提交
209

210
static __meminit void unmap_low_page(void *adr)
T
Thomas Gleixner 已提交
211
{
212 213 214
	if (after_bootmem)
		return;

215
	early_iounmap(adr, PAGE_SIZE);
T
Thomas Gleixner 已提交
216
}
L
Linus Torvalds 已提交
217

218
/* Must run before zap_low_mappings */
219
__meminit void *early_ioremap(unsigned long addr, unsigned long size)
220
{
221
	pmd_t *pmd, *last_pmd;
T
Thomas Gleixner 已提交
222
	unsigned long vaddr;
223 224 225 226 227 228
	int i, pmds;

	pmds = ((addr & ~PMD_MASK) + size + ~PMD_MASK) / PMD_SIZE;
	vaddr = __START_KERNEL_map;
	pmd = level2_kernel_pgt;
	last_pmd = level2_kernel_pgt + PTRS_PER_PMD - 1;
T
Thomas Gleixner 已提交
229

230 231 232
	for (; pmd <= last_pmd; pmd++, vaddr += PMD_SIZE) {
		for (i = 0; i < pmds; i++) {
			if (pmd_present(pmd[i]))
T
Thomas Gleixner 已提交
233
				goto continue_outer_loop;
234 235 236
		}
		vaddr += addr & ~PMD_MASK;
		addr &= PMD_MASK;
T
Thomas Gleixner 已提交
237

238
		for (i = 0; i < pmds; i++, addr += PMD_SIZE)
239
			set_pmd(pmd+i, __pmd(addr | __PAGE_KERNEL_LARGE_EXEC));
A
Andi Kleen 已提交
240
		__flush_tlb_all();
T
Thomas Gleixner 已提交
241

242
		return (void *)vaddr;
T
Thomas Gleixner 已提交
243
continue_outer_loop:
244
		;
245
	}
246
	printk(KERN_ERR "early_ioremap(0x%lx, %lu) failed\n", addr, size);
T
Thomas Gleixner 已提交
247

248
	return NULL;
249 250
}

T
Thomas Gleixner 已提交
251 252 253
/*
 * To avoid virtual aliases later:
 */
254
__meminit void early_iounmap(void *addr, unsigned long size)
255
{
256 257 258 259 260 261 262
	unsigned long vaddr;
	pmd_t *pmd;
	int i, pmds;

	vaddr = (unsigned long)addr;
	pmds = ((vaddr & ~PMD_MASK) + size + ~PMD_MASK) / PMD_SIZE;
	pmd = level2_kernel_pgt + pmd_index(vaddr);
T
Thomas Gleixner 已提交
263

264 265
	for (i = 0; i < pmds; i++)
		pmd_clear(pmd + i);
T
Thomas Gleixner 已提交
266

A
Andi Kleen 已提交
267
	__flush_tlb_all();
268 269
}

270
static void __meminit
271
phys_pmd_init(pmd_t *pmd_page, unsigned long address, unsigned long end)
272
{
273
	int i = pmd_index(address);
274

275
	for (; i < PTRS_PER_PMD; i++, address += PMD_SIZE) {
276
		unsigned long entry;
277
		pmd_t *pmd = pmd_page + pmd_index(address);
278

279
		if (address >= end) {
T
Thomas Gleixner 已提交
280
			if (!after_bootmem) {
281 282
				for (; i < PTRS_PER_PMD; i++, pmd++)
					set_pmd(pmd, __pmd(0));
T
Thomas Gleixner 已提交
283
			}
284 285
			break;
		}
286 287 288 289

		if (pmd_val(*pmd))
			continue;

290
		entry = __PAGE_KERNEL_LARGE|_PAGE_GLOBAL|address;
291 292 293 294 295 296 297 298
		entry &= __supported_pte_mask;
		set_pmd(pmd, __pmd(entry));
	}
}

static void __meminit
phys_pmd_update(pud_t *pud, unsigned long address, unsigned long end)
{
T
Thomas Gleixner 已提交
299
	pmd_t *pmd = pmd_offset(pud, 0);
300 301 302 303
	spin_lock(&init_mm.page_table_lock);
	phys_pmd_init(pmd, address, end);
	spin_unlock(&init_mm.page_table_lock);
	__flush_tlb_all();
304 305
}

T
Thomas Gleixner 已提交
306 307 308
static void __meminit
phys_pud_init(pud_t *pud_page, unsigned long addr, unsigned long end)
{
309
	int i = pud_index(addr);
310

T
Thomas Gleixner 已提交
311
	for (; i < PTRS_PER_PUD; i++, addr = (addr & PUD_MASK) + PUD_SIZE) {
312 313
		unsigned long pmd_phys;
		pud_t *pud = pud_page + pud_index(addr);
L
Linus Torvalds 已提交
314 315
		pmd_t *pmd;

316
		if (addr >= end)
L
Linus Torvalds 已提交
317 318
			break;

T
Thomas Gleixner 已提交
319 320 321
		if (!after_bootmem &&
				!e820_any_mapped(addr, addr+PUD_SIZE, 0)) {
			set_pud(pud, __pud(0));
L
Linus Torvalds 已提交
322
			continue;
T
Thomas Gleixner 已提交
323
		}
L
Linus Torvalds 已提交
324

325 326 327 328 329
		if (pud_val(*pud)) {
			phys_pmd_update(pud, addr, end);
			continue;
		}

330
		pmd = alloc_low_page(&pmd_phys);
T
Thomas Gleixner 已提交
331

332
		spin_lock(&init_mm.page_table_lock);
L
Linus Torvalds 已提交
333
		set_pud(pud, __pud(pmd_phys | _KERNPG_TABLE));
334
		phys_pmd_init(pmd, addr, end);
335
		spin_unlock(&init_mm.page_table_lock);
T
Thomas Gleixner 已提交
336

337
		unmap_low_page(pmd);
L
Linus Torvalds 已提交
338
	}
A
Andi Kleen 已提交
339
	__flush_tlb_all();
T
Thomas Gleixner 已提交
340
}
L
Linus Torvalds 已提交
341 342 343

static void __init find_early_table_space(unsigned long end)
{
344
	unsigned long puds, pmds, tables, start;
L
Linus Torvalds 已提交
345 346 347 348 349 350

	puds = (end + PUD_SIZE - 1) >> PUD_SHIFT;
	pmds = (end + PMD_SIZE - 1) >> PMD_SHIFT;
	tables = round_up(puds * sizeof(pud_t), PAGE_SIZE) +
		 round_up(pmds * sizeof(pmd_t), PAGE_SIZE);

T
Thomas Gleixner 已提交
351 352 353 354 355 356 357
	/*
	 * RED-PEN putting page tables only on node 0 could
	 * cause a hotspot and fill up ZONE_DMA. The page tables
	 * need roughly 0.5KB per GB.
	 */
	start = 0x8000;
	table_start = find_e820_area(start, end, tables);
L
Linus Torvalds 已提交
358 359 360
	if (table_start == -1UL)
		panic("Cannot find space for the kernel page tables");

361 362 363 364 365 366 367
	/*
	 * When you have a lot of RAM like 256GB, early_table will not fit
	 * into 0x8000 range, find_e820_area() will find area after kernel
	 * bss but the table_start is not page aligned, so need to round it
	 * up to avoid overlap with bss:
	 */
	table_start = round_up(table_start, PAGE_SIZE);
L
Linus Torvalds 已提交
368 369
	table_start >>= PAGE_SHIFT;
	table_end = table_start;
370 371

	early_printk("kernel direct mapping tables up to %lx @ %lx-%lx\n",
372 373
		end, table_start << PAGE_SHIFT,
		(table_start << PAGE_SHIFT) + tables);
L
Linus Torvalds 已提交
374 375
}

T
Thomas Gleixner 已提交
376 377 378 379 380
/*
 * Setup the direct mapping of the physical memory at PAGE_OFFSET.
 * This runs before bootmem is initialized and gets pages directly from
 * the physical memory. To access them they are temporarily mapped.
 */
381
void __init_refok init_memory_mapping(unsigned long start, unsigned long end)
T
Thomas Gleixner 已提交
382 383
{
	unsigned long next;
L
Linus Torvalds 已提交
384

385
	pr_debug("init_memory_mapping\n");
L
Linus Torvalds 已提交
386

T
Thomas Gleixner 已提交
387
	/*
L
Linus Torvalds 已提交
388
	 * Find space for the kernel direct mapping tables.
T
Thomas Gleixner 已提交
389 390 391 392
	 *
	 * Later we should allocate these tables in the local node of the
	 * memory mapped. Unfortunately this is done currently before the
	 * nodes are discovered.
L
Linus Torvalds 已提交
393
	 */
394 395
	if (!after_bootmem)
		find_early_table_space(end);
L
Linus Torvalds 已提交
396 397 398 399 400

	start = (unsigned long)__va(start);
	end = (unsigned long)__va(end);

	for (; start < end; start = next) {
401
		pgd_t *pgd = pgd_offset_k(start);
T
Thomas Gleixner 已提交
402
		unsigned long pud_phys;
403 404 405
		pud_t *pud;

		if (after_bootmem)
406
			pud = pud_offset(pgd, start & PGDIR_MASK);
407
		else
408
			pud = alloc_low_page(&pud_phys);
409

L
Linus Torvalds 已提交
410
		next = start + PGDIR_SIZE;
T
Thomas Gleixner 已提交
411 412
		if (next > end)
			next = end;
L
Linus Torvalds 已提交
413
		phys_pud_init(pud, __pa(start), __pa(next));
414 415
		if (!after_bootmem)
			set_pgd(pgd_offset_k(start), mk_kernel_pgd(pud_phys));
416
		unmap_low_page(pud);
T
Thomas Gleixner 已提交
417
	}
L
Linus Torvalds 已提交
418

419
	if (!after_bootmem)
420
		mmu_cr4_features = read_cr4();
L
Linus Torvalds 已提交
421
	__flush_tlb_all();
422 423

	reserve_early(table_start << PAGE_SHIFT, table_end << PAGE_SHIFT);
L
Linus Torvalds 已提交
424 425
}

426
#ifndef CONFIG_NUMA
L
Linus Torvalds 已提交
427 428
void __init paging_init(void)
{
429
	unsigned long max_zone_pfns[MAX_NR_ZONES];
T
Thomas Gleixner 已提交
430

431 432 433 434 435
	memset(max_zone_pfns, 0, sizeof(max_zone_pfns));
	max_zone_pfns[ZONE_DMA] = MAX_DMA_PFN;
	max_zone_pfns[ZONE_DMA32] = MAX_DMA32_PFN;
	max_zone_pfns[ZONE_NORMAL] = end_pfn;

436 437
	memory_present(0, 0, end_pfn);
	sparse_init();
438
	free_area_init_nodes(max_zone_pfns);
L
Linus Torvalds 已提交
439 440 441
}
#endif

T
Thomas Gleixner 已提交
442 443 444 445 446 447 448
/*
 * Unmap a kernel mapping if it exists. This is useful to avoid
 * prefetches from the CPU leading to inconsistent cache lines.
 * address and size must be aligned to 2MB boundaries.
 * Does nothing when the mapping doesn't exist.
 */
void __init clear_kernel_mapping(unsigned long address, unsigned long size)
L
Linus Torvalds 已提交
449 450 451 452
{
	unsigned long end = address + size;

	BUG_ON(address & ~LARGE_PAGE_MASK);
T
Thomas Gleixner 已提交
453 454 455
	BUG_ON(size & ~LARGE_PAGE_MASK);

	for (; address < end; address += LARGE_PAGE_SIZE) {
L
Linus Torvalds 已提交
456 457 458
		pgd_t *pgd = pgd_offset_k(address);
		pud_t *pud;
		pmd_t *pmd;
T
Thomas Gleixner 已提交
459

L
Linus Torvalds 已提交
460 461
		if (pgd_none(*pgd))
			continue;
T
Thomas Gleixner 已提交
462

L
Linus Torvalds 已提交
463 464
		pud = pud_offset(pgd, address);
		if (pud_none(*pud))
T
Thomas Gleixner 已提交
465 466
			continue;

L
Linus Torvalds 已提交
467 468
		pmd = pmd_offset(pud, address);
		if (!pmd || pmd_none(*pmd))
T
Thomas Gleixner 已提交
469 470 471 472 473 474 475 476 477 478
			continue;

		if (!(pmd_val(*pmd) & _PAGE_PSE)) {
			/*
			 * Could handle this, but it should not happen
			 * currently:
			 */
			printk(KERN_ERR "clear_kernel_mapping: "
				"mapping has been split. will leak memory\n");
			pmd_ERROR(*pmd);
L
Linus Torvalds 已提交
479
		}
T
Thomas Gleixner 已提交
480
		set_pmd(pmd, __pmd(0));
L
Linus Torvalds 已提交
481 482
	}
	__flush_tlb_all();
T
Thomas Gleixner 已提交
483
}
L
Linus Torvalds 已提交
484

485 486 487 488 489 490
/*
 * Memory hotplug specific functions
 */
void online_page(struct page *page)
{
	ClearPageReserved(page);
491
	init_page_count(page);
492 493 494 495 496
	__free_page(page);
	totalram_pages++;
	num_physpages++;
}

497
#ifdef CONFIG_MEMORY_HOTPLUG
498 499 500 501
/*
 * Memory is added always to NORMAL zone. This means you will never get
 * additional DMA/DMA32 memory.
 */
502
int arch_add_memory(int nid, u64 start, u64 size)
503
{
504
	struct pglist_data *pgdat = NODE_DATA(nid);
505
	struct zone *zone = pgdat->node_zones + ZONE_NORMAL;
506 507 508 509
	unsigned long start_pfn = start >> PAGE_SHIFT;
	unsigned long nr_pages = size >> PAGE_SHIFT;
	int ret;

T
Thomas Gleixner 已提交
510
	init_memory_mapping(start, start + size-1);
511

512
	ret = __add_pages(zone, start_pfn, nr_pages);
513
	WARN_ON(1);
514 515 516

	return ret;
}
517
EXPORT_SYMBOL_GPL(arch_add_memory);
518

519
#if !defined(CONFIG_ACPI_NUMA) && defined(CONFIG_NUMA)
520 521 522 523
int memory_add_physaddr_to_nid(u64 start)
{
	return 0;
}
524
EXPORT_SYMBOL_GPL(memory_add_physaddr_to_nid);
525 526
#endif

527 528
#endif /* CONFIG_MEMORY_HOTPLUG */

T
Thomas Gleixner 已提交
529 530
static struct kcore_list kcore_mem, kcore_vmalloc, kcore_kernel,
			 kcore_modules, kcore_vsyscall;
L
Linus Torvalds 已提交
531 532 533

void __init mem_init(void)
{
534
	long codesize, reservedpages, datasize, initsize;
L
Linus Torvalds 已提交
535

536
	pci_iommu_alloc();
L
Linus Torvalds 已提交
537

538
	/* clear_bss() already clear the empty_zero_page */
L
Linus Torvalds 已提交
539

540 541 542 543 544 545 546 547
	/* temporary debugging - double check it's true: */
	{
		int i;

		for (i = 0; i < 1024; i++)
			WARN_ON_ONCE(empty_zero_page[i]);
	}

L
Linus Torvalds 已提交
548 549 550
	reservedpages = 0;

	/* this will put all low memory onto the freelists */
551
#ifdef CONFIG_NUMA
552
	totalram_pages = numa_free_all_bootmem();
L
Linus Torvalds 已提交
553
#else
554
	totalram_pages = free_all_bootmem();
L
Linus Torvalds 已提交
555
#endif
556 557
	reservedpages = end_pfn - totalram_pages -
					absent_pages_in_range(0, end_pfn);
L
Linus Torvalds 已提交
558 559 560 561 562 563 564
	after_bootmem = 1;

	codesize =  (unsigned long) &_etext - (unsigned long) &_text;
	datasize =  (unsigned long) &_edata - (unsigned long) &_etext;
	initsize =  (unsigned long) &__init_end - (unsigned long) &__init_begin;

	/* Register memory areas for /proc/kcore */
T
Thomas Gleixner 已提交
565 566
	kclist_add(&kcore_mem, __va(0), max_low_pfn << PAGE_SHIFT);
	kclist_add(&kcore_vmalloc, (void *)VMALLOC_START,
L
Linus Torvalds 已提交
567 568 569
		   VMALLOC_END-VMALLOC_START);
	kclist_add(&kcore_kernel, &_stext, _end - _stext);
	kclist_add(&kcore_modules, (void *)MODULES_VADDR, MODULES_LEN);
T
Thomas Gleixner 已提交
570
	kclist_add(&kcore_vsyscall, (void *)VSYSCALL_START,
L
Linus Torvalds 已提交
571 572
				 VSYSCALL_END - VSYSCALL_START);

573
	printk(KERN_INFO "Memory: %luk/%luk available (%ldk kernel code, "
T
Thomas Gleixner 已提交
574
				"%ldk reserved, %ldk data, %ldk init)\n",
L
Linus Torvalds 已提交
575 576 577 578 579 580 581 582
		(unsigned long) nr_free_pages() << (PAGE_SHIFT-10),
		end_pfn << (PAGE_SHIFT-10),
		codesize >> 10,
		reservedpages << (PAGE_SHIFT-10),
		datasize >> 10,
		initsize >> 10);
}

583
void free_init_pages(char *what, unsigned long begin, unsigned long end)
L
Linus Torvalds 已提交
584 585 586
{
	unsigned long addr;

587 588 589
	if (begin >= end)
		return;

I
Ingo Molnar 已提交
590 591 592 593 594 595 596 597 598 599
	/*
	 * If debugging page accesses then do not free this memory but
	 * mark them not present - any buggy init-section access will
	 * create a kernel page fault:
	 */
#ifdef CONFIG_DEBUG_PAGEALLOC
	printk(KERN_INFO "debug: unmapping init memory %08lx..%08lx\n",
		begin, PAGE_ALIGN(end));
	set_memory_np(begin, (end - begin) >> PAGE_SHIFT);
#else
600
	printk(KERN_INFO "Freeing %s: %luk freed\n", what, (end - begin) >> 10);
T
Thomas Gleixner 已提交
601

602
	for (addr = begin; addr < end; addr += PAGE_SIZE) {
603 604 605 606 607
		ClearPageReserved(virt_to_page(addr));
		init_page_count(virt_to_page(addr));
		memset((void *)(addr & ~(PAGE_SIZE-1)),
			POISON_FREE_INITMEM, PAGE_SIZE);
		free_page(addr);
L
Linus Torvalds 已提交
608 609
		totalram_pages++;
	}
I
Ingo Molnar 已提交
610
#endif
611 612 613 614 615
}

void free_initmem(void)
{
	free_init_pages("unused kernel memory",
616 617
			(unsigned long)(&__init_begin),
			(unsigned long)(&__init_end));
L
Linus Torvalds 已提交
618 619
}

620
#ifdef CONFIG_DEBUG_RODATA
621 622
const int rodata_test_data = 0xC3;
EXPORT_SYMBOL_GPL(rodata_test_data);
623 624 625

void mark_rodata_ro(void)
{
626
	unsigned long start = (unsigned long)_stext, end;
627

628 629 630 631 632 633 634 635 636
#ifdef CONFIG_HOTPLUG_CPU
	/* It must still be possible to apply SMP alternatives. */
	if (num_possible_cpus() > 1)
		start = (unsigned long)_etext;
#endif

#ifdef CONFIG_KPROBES
	start = (unsigned long)__start_rodata;
#endif
T
Thomas Gleixner 已提交
637

638 639 640 641 642 643
	end = (unsigned long)__end_rodata;
	start = (start + PAGE_SIZE - 1) & PAGE_MASK;
	end &= PAGE_MASK;
	if (end <= start)
		return;

644
	set_memory_ro(start, (end - start) >> PAGE_SHIFT);
645

646
	printk(KERN_INFO "Write protecting the kernel read-only data: %luk\n",
647
	       (end - start) >> 10);
648

649 650
	rodata_test();

651
#ifdef CONFIG_CPA_DEBUG
652
	printk(KERN_INFO "Testing CPA: undo %lx-%lx\n", start, end);
653
	set_memory_rw(start, (end-start) >> PAGE_SHIFT);
654

655
	printk(KERN_INFO "Testing CPA: again\n");
656
	set_memory_ro(start, (end-start) >> PAGE_SHIFT);
657
#endif
658 659 660
}
#endif

L
Linus Torvalds 已提交
661 662 663
#ifdef CONFIG_BLK_DEV_INITRD
void free_initrd_mem(unsigned long start, unsigned long end)
{
664
	free_init_pages("initrd memory", start, end);
L
Linus Torvalds 已提交
665 666 667
}
#endif

T
Thomas Gleixner 已提交
668 669
void __init reserve_bootmem_generic(unsigned long phys, unsigned len)
{
670
#ifdef CONFIG_NUMA
L
Linus Torvalds 已提交
671
	int nid = phys_to_nid(phys);
672 673
#endif
	unsigned long pfn = phys >> PAGE_SHIFT;
T
Thomas Gleixner 已提交
674

675
	if (pfn >= end_pfn) {
T
Thomas Gleixner 已提交
676 677 678 679
		/*
		 * This can happen with kdump kernels when accessing
		 * firmware tables:
		 */
680 681
		if (pfn < end_pfn_map)
			return;
T
Thomas Gleixner 已提交
682

683 684 685 686 687 688 689
		printk(KERN_ERR "reserve_bootmem: illegal reserve %lx %u\n",
				phys, len);
		return;
	}

	/* Should check here against the e820 map to avoid double free */
#ifdef CONFIG_NUMA
T
Thomas Gleixner 已提交
690 691 692
	reserve_bootmem_node(NODE_DATA(nid), phys, len);
#else
	reserve_bootmem(phys, len);
L
Linus Torvalds 已提交
693
#endif
694
	if (phys+len <= MAX_DMA_PFN*PAGE_SIZE) {
695
		dma_reserve += len / PAGE_SIZE;
696 697
		set_dma_reserve(dma_reserve);
	}
L
Linus Torvalds 已提交
698 699
}

T
Thomas Gleixner 已提交
700 701
int kern_addr_valid(unsigned long addr)
{
L
Linus Torvalds 已提交
702
	unsigned long above = ((long)addr) >> __VIRTUAL_MASK_SHIFT;
T
Thomas Gleixner 已提交
703 704 705 706
	pgd_t *pgd;
	pud_t *pud;
	pmd_t *pmd;
	pte_t *pte;
L
Linus Torvalds 已提交
707 708

	if (above != 0 && above != -1UL)
T
Thomas Gleixner 已提交
709 710
		return 0;

L
Linus Torvalds 已提交
711 712 713 714 715 716
	pgd = pgd_offset_k(addr);
	if (pgd_none(*pgd))
		return 0;

	pud = pud_offset(pgd, addr);
	if (pud_none(*pud))
T
Thomas Gleixner 已提交
717
		return 0;
L
Linus Torvalds 已提交
718 719 720 721

	pmd = pmd_offset(pud, addr);
	if (pmd_none(*pmd))
		return 0;
T
Thomas Gleixner 已提交
722

L
Linus Torvalds 已提交
723 724 725 726 727 728
	if (pmd_large(*pmd))
		return pfn_valid(pmd_pfn(*pmd));

	pte = pte_offset_kernel(pmd, addr);
	if (pte_none(*pte))
		return 0;
T
Thomas Gleixner 已提交
729

L
Linus Torvalds 已提交
730 731 732
	return pfn_valid(pte_pfn(*pte));
}

T
Thomas Gleixner 已提交
733 734 735 736 737
/*
 * A pseudo VMA to allow ptrace access for the vsyscall page.  This only
 * covers the 64bit vsyscall page now. 32bit has a real VMA now and does
 * not need special handling anymore:
 */
L
Linus Torvalds 已提交
738
static struct vm_area_struct gate_vma = {
T
Thomas Gleixner 已提交
739 740 741 742
	.vm_start	= VSYSCALL_START,
	.vm_end		= VSYSCALL_START + (VSYSCALL_MAPPED_PAGES * PAGE_SIZE),
	.vm_page_prot	= PAGE_READONLY_EXEC,
	.vm_flags	= VM_READ | VM_EXEC
L
Linus Torvalds 已提交
743 744 745 746 747
};

struct vm_area_struct *get_gate_vma(struct task_struct *tsk)
{
#ifdef CONFIG_IA32_EMULATION
748 749
	if (test_tsk_thread_flag(tsk, TIF_IA32))
		return NULL;
L
Linus Torvalds 已提交
750 751 752 753 754 755 756
#endif
	return &gate_vma;
}

int in_gate_area(struct task_struct *task, unsigned long addr)
{
	struct vm_area_struct *vma = get_gate_vma(task);
T
Thomas Gleixner 已提交
757

758 759
	if (!vma)
		return 0;
T
Thomas Gleixner 已提交
760

L
Linus Torvalds 已提交
761 762 763
	return (addr >= vma->vm_start) && (addr < vma->vm_end);
}

T
Thomas Gleixner 已提交
764 765 766 767
/*
 * Use this when you have no reliable task/vma, typically from interrupt
 * context. It is less reliable than using the task's vma and may give
 * false positives:
L
Linus Torvalds 已提交
768 769 770
 */
int in_gate_area_no_task(unsigned long addr)
{
771
	return (addr >= VSYSCALL_START) && (addr < VSYSCALL_END);
L
Linus Torvalds 已提交
772
}
773

774 775 776 777 778 779 780 781
const char *arch_vma_name(struct vm_area_struct *vma)
{
	if (vma->vm_mm && vma->vm_start == (long)vma->vm_mm->context.vdso)
		return "[vdso]";
	if (vma == &gate_vma)
		return "[vsyscall]";
	return NULL;
}
782 783 784 785 786

#ifdef CONFIG_SPARSEMEM_VMEMMAP
/*
 * Initialise the sparsemem vmemmap using huge-pages at the PMD level.
 */
T
Thomas Gleixner 已提交
787 788
int __meminit
vmemmap_populate(struct page *start_page, unsigned long size, int node)
789 790 791 792 793 794 795 796 797 798 799 800 801 802
{
	unsigned long addr = (unsigned long)start_page;
	unsigned long end = (unsigned long)(start_page + size);
	unsigned long next;
	pgd_t *pgd;
	pud_t *pud;
	pmd_t *pmd;

	for (; addr < end; addr = next) {
		next = pmd_addr_end(addr, end);

		pgd = vmemmap_pgd_populate(addr, node);
		if (!pgd)
			return -ENOMEM;
T
Thomas Gleixner 已提交
803

804 805 806 807 808 809 810
		pud = vmemmap_pud_populate(pgd, addr, node);
		if (!pud)
			return -ENOMEM;

		pmd = pmd_offset(pud, addr);
		if (pmd_none(*pmd)) {
			pte_t entry;
T
Thomas Gleixner 已提交
811 812 813
			void *p;

			p = vmemmap_alloc_block(PMD_SIZE, node);
814 815 816
			if (!p)
				return -ENOMEM;

T
Thomas Gleixner 已提交
817 818
			entry = pfn_pte(__pa(p) >> PAGE_SHIFT,
							PAGE_KERNEL_LARGE);
819 820 821 822
			set_pmd(pmd, __pmd(pte_val(entry)));

			printk(KERN_DEBUG " [%lx-%lx] PMD ->%p on node %d\n",
				addr, addr + PMD_SIZE - 1, p, node);
T
Thomas Gleixner 已提交
823
		} else {
824
			vmemmap_verify((pte_t *)pmd, node, addr, next);
T
Thomas Gleixner 已提交
825
		}
826 827 828 829
	}
	return 0;
}
#endif