init.c 14.7 KB
Newer Older
Linus Torvalds's avatar
Linus Torvalds committed
1 2 3 4 5 6 7 8 9
/*
 *  linux/arch/i386/mm/init.c
 *
 *  Copyright (C) 1995  Linus Torvalds
 *
 *  Support of BIGMEM added by Gerhard Wichert, Siemens AG, July 1999
 */

#include <linux/config.h>
10
#include <linux/module.h>
Linus Torvalds's avatar
Linus Torvalds committed
11 12 13 14 15 16 17 18 19
#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>
20
#include <linux/hugetlb.h>
Linus Torvalds's avatar
Linus Torvalds committed
21 22 23 24 25 26
#include <linux/swap.h>
#include <linux/smp.h>
#include <linux/init.h>
#include <linux/highmem.h>
#include <linux/pagemap.h>
#include <linux/bootmem.h>
Linus Torvalds's avatar
Linus Torvalds committed
27
#include <linux/slab.h>
28
#include <linux/proc_fs.h>
Andrew Morton's avatar
Andrew Morton committed
29
#include <linux/efi.h>
Linus Torvalds's avatar
Linus Torvalds committed
30 31 32 33 34 35 36 37 38 39

#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>
Linus Torvalds's avatar
Linus Torvalds committed
40
#include <asm/tlb.h>
41
#include <asm/tlbflush.h>
Dan Aloni's avatar
Dan Aloni committed
42
#include <asm/sections.h>
Linus Torvalds's avatar
Linus Torvalds committed
43

44
DEFINE_PER_CPU(struct mmu_gather, mmu_gathers);
Linus Torvalds's avatar
Linus Torvalds committed
45 46
unsigned long highstart_pfn, highend_pfn;

47 48
static int do_test_wp_bit(void);

Linus Torvalds's avatar
Linus Torvalds committed
49
/*
Dan Aloni's avatar
Dan Aloni committed
50 51 52
 * Creates a middle page table and puts a pointer to it in the
 * given global directory entry. This only returns the gd entry
 * in non-PAE compilation mode, since the middle layer is folded.
Linus Torvalds's avatar
Linus Torvalds committed
53
 */
Dan Aloni's avatar
Dan Aloni committed
54 55 56 57
static pmd_t * __init one_md_table_init(pgd_t *pgd)
{
	pmd_t *pmd_table;
		
58
#ifdef CONFIG_X86_PAE
Dan Aloni's avatar
Dan Aloni committed
59
	pmd_table = (pmd_t *) alloc_bootmem_low_pages(PAGE_SIZE);
60
	set_pgd(pgd, __pgd(__pa(pmd_table) | _PAGE_PRESENT));
Dan Aloni's avatar
Dan Aloni committed
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
	if (pmd_table != pmd_offset(pgd, 0)) 
		BUG();
#else
	pmd_table = pmd_offset(pgd, 0);
#endif

	return pmd_table;
}

/*
 * Create a page table and place a pointer to it in a middle page
 * directory entry.
 */
static pte_t * __init one_page_table_init(pmd_t *pmd)
{
76 77 78 79 80
	if (pmd_none(*pmd)) {
		pte_t *page_table = (pte_t *) alloc_bootmem_low_pages(PAGE_SIZE);
		set_pmd(pmd, __pmd(__pa(page_table) | _PAGE_TABLE));
		if (page_table != pte_offset_kernel(pmd, 0))
			BUG();	
Dan Aloni's avatar
Dan Aloni committed
81

82 83 84 85
		return page_table;
	}
	
	return pte_offset_kernel(pmd, 0);
Dan Aloni's avatar
Dan Aloni committed
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
}

/*
 * This function initializes a certain range of kernel virtual memory 
 * with new bootmem page tables, everywhere page tables are missing in
 * the given range.
 */

/*
 * NOTE: The pagetables are allocated contiguous on the physical space 
 * so we can cache the place of the first one and move around without 
 * checking the pgd every time.
 */
static void __init page_table_range_init (unsigned long start, unsigned long end, pgd_t *pgd_base)
{
	pgd_t *pgd;
	pmd_t *pmd;
Andrew Morton's avatar
Andrew Morton committed
103
	int pgd_idx, pmd_idx;
Dan Aloni's avatar
Dan Aloni committed
104 105 106
	unsigned long vaddr;

	vaddr = start;
Andrew Morton's avatar
Andrew Morton committed
107
	pgd_idx = pgd_index(vaddr);
Andrew Morton's avatar
Andrew Morton committed
108
	pmd_idx = pmd_index(vaddr);
Andrew Morton's avatar
Andrew Morton committed
109
	pgd = pgd_base + pgd_idx;
Dan Aloni's avatar
Dan Aloni committed
110

Andrew Morton's avatar
Andrew Morton committed
111
	for ( ; (pgd_idx < PTRS_PER_PGD) && (vaddr != end); pgd++, pgd_idx++) {
Dan Aloni's avatar
Dan Aloni committed
112 113 114 115
		if (pgd_none(*pgd)) 
			one_md_table_init(pgd);

		pmd = pmd_offset(pgd, vaddr);
Andrew Morton's avatar
Andrew Morton committed
116
		for (; (pmd_idx < PTRS_PER_PMD) && (vaddr != end); pmd++, pmd_idx++) {
Dan Aloni's avatar
Dan Aloni committed
117 118 119 120 121
			if (pmd_none(*pmd)) 
				one_page_table_init(pmd);

			vaddr += PMD_SIZE;
		}
Andrew Morton's avatar
Andrew Morton committed
122
		pmd_idx = 0;
Dan Aloni's avatar
Dan Aloni committed
123 124 125 126 127 128 129 130 131 132 133 134 135 136
	}
}

/*
 * This maps the physical memory to kernel virtual address space, a total 
 * of max_low_pfn pages, by creating page tables starting from address 
 * PAGE_OFFSET.
 */
static void __init kernel_physical_mapping_init(pgd_t *pgd_base)
{
	unsigned long pfn;
	pgd_t *pgd;
	pmd_t *pmd;
	pte_t *pte;
Andrew Morton's avatar
Andrew Morton committed
137
	int pgd_idx, pmd_idx, pte_ofs;
Dan Aloni's avatar
Dan Aloni committed
138

Andrew Morton's avatar
Andrew Morton committed
139 140
	pgd_idx = pgd_index(PAGE_OFFSET);
	pgd = pgd_base + pgd_idx;
Dan Aloni's avatar
Dan Aloni committed
141 142
	pfn = 0;

Andrew Morton's avatar
Andrew Morton committed
143
	for (; pgd_idx < PTRS_PER_PGD; pgd++, pgd_idx++) {
Dan Aloni's avatar
Dan Aloni committed
144
		pmd = one_md_table_init(pgd);
145 146
		if (pfn >= max_low_pfn)
			continue;
Andrew Morton's avatar
Andrew Morton committed
147
		for (pmd_idx = 0; pmd_idx < PTRS_PER_PMD && pfn < max_low_pfn; pmd++, pmd_idx++) {
Dan Aloni's avatar
Dan Aloni committed
148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
			/* Map with big pages if possible, otherwise create normal page tables. */
			if (cpu_has_pse) {
				set_pmd(pmd, pfn_pmd(pfn, PAGE_KERNEL_LARGE));
				pfn += PTRS_PER_PTE;
			} else {
				pte = one_page_table_init(pmd);

				for (pte_ofs = 0; pte_ofs < PTRS_PER_PTE && pfn < max_low_pfn; pte++, pfn++, pte_ofs++)
					set_pte(pte, pfn_pte(pfn, PAGE_KERNEL));
			}
		}
	}	
}

static inline int page_kills_ppro(unsigned long pagenr)
{
	if (pagenr >= 0x70000 && pagenr <= 0x7003F)
		return 1;
	return 0;
}

Andrew Morton's avatar
Andrew Morton committed
169 170
extern int is_available_memory(efi_memory_desc_t *);

Dan Aloni's avatar
Dan Aloni committed
171 172 173
static inline int page_is_ram(unsigned long pagenr)
{
	int i;
Andrew Morton's avatar
Andrew Morton committed
174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190
	unsigned long addr, end;

	if (efi_enabled) {
		efi_memory_desc_t *md;

		for (i = 0; i < memmap.nr_map; i++) {
			md = &memmap.map[i];
			if (!is_available_memory(md))
				continue;
			addr = (md->phys_addr+PAGE_SIZE-1) >> PAGE_SHIFT;
			end = (md->phys_addr + (md->num_pages << EFI_PAGE_SHIFT)) >> PAGE_SHIFT;

			if ((pagenr >= addr) && (pagenr < end))
				return 1;
		}
		return 0;
	}
Dan Aloni's avatar
Dan Aloni committed
191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207

	for (i = 0; i < e820.nr_map; i++) {

		if (e820.map[i].type != E820_RAM)	/* not usable memory */
			continue;
		/*
		 *	!!!FIXME!!! Some BIOSen report areas as RAM that
		 *	are not. Notably the 640->1Mb area. We need a sanity
		 *	check here.
		 */
		addr = (e820.map[i].addr+PAGE_SIZE-1) >> PAGE_SHIFT;
		end = (e820.map[i].addr+e820.map[i].size) >> PAGE_SHIFT;
		if  ((pagenr >= addr) && (pagenr < end))
			return 1;
	}
	return 0;
}
Linus Torvalds's avatar
Linus Torvalds committed
208

209
#ifdef CONFIG_HIGHMEM
Linus Torvalds's avatar
Linus Torvalds committed
210 211 212
pte_t *kmap_pte;
pgprot_t kmap_prot;

213 214 215
EXPORT_SYMBOL(kmap_prot);
EXPORT_SYMBOL(kmap_pte);

Linus Torvalds's avatar
Linus Torvalds committed
216
#define kmap_get_fixmap_pte(vaddr)					\
217
	pte_offset_kernel(pmd_offset(pgd_offset_k(vaddr), (vaddr)), (vaddr))
Linus Torvalds's avatar
Linus Torvalds committed
218 219 220 221 222 223 224 225 226 227 228 229

void __init kmap_init(void)
{
	unsigned long kmap_vstart;

	/* cache the first kmap pte */
	kmap_vstart = __fix_to_virt(FIX_KMAP_BEGIN);
	kmap_pte = kmap_get_fixmap_pte(kmap_vstart);

	kmap_prot = PAGE_KERNEL;
}

Dan Aloni's avatar
Dan Aloni committed
230
void __init permanent_kmaps_init(pgd_t *pgd_base)
Linus Torvalds's avatar
Linus Torvalds committed
231 232 233 234
{
	pgd_t *pgd;
	pmd_t *pmd;
	pte_t *pte;
Dan Aloni's avatar
Dan Aloni committed
235 236 237 238
	unsigned long vaddr;

	vaddr = PKMAP_BASE;
	page_table_range_init(vaddr, vaddr + PAGE_SIZE*LAST_PKMAP, pgd_base);
Linus Torvalds's avatar
Linus Torvalds committed
239

Andrew Morton's avatar
Andrew Morton committed
240
	pgd = swapper_pg_dir + pgd_index(vaddr);
Linus Torvalds's avatar
Linus Torvalds committed
241
	pmd = pmd_offset(pgd, vaddr);
242
	pte = pte_offset_kernel(pmd, vaddr);
Dan Aloni's avatar
Dan Aloni committed
243
	pkmap_page_table = pte;	
Linus Torvalds's avatar
Linus Torvalds committed
244 245
}

246 247
void __init one_highpage_init(struct page *page, int pfn, int bad_ppro)
{
248 249 250 251 252 253 254
	if (page_is_ram(pfn) && !(bad_ppro && page_kills_ppro(pfn))) {
		ClearPageReserved(page);
		set_bit(PG_highmem, &page->flags);
		set_page_count(page, 1);
		__free_page(page);
		totalhigh_pages++;
	} else
255 256 257
		SetPageReserved(page);
}

258
#ifndef CONFIG_DISCONTIGMEM
Dan Aloni's avatar
Dan Aloni committed
259
void __init set_highmem_pages_init(int bad_ppro) 
Linus Torvalds's avatar
Linus Torvalds committed
260
{
Dan Aloni's avatar
Dan Aloni committed
261
	int pfn;
262
	for (pfn = highstart_pfn; pfn < highend_pfn; pfn++)
263
		one_highpage_init(pfn_to_page(pfn), pfn, bad_ppro);
Dan Aloni's avatar
Dan Aloni committed
264
	totalram_pages += totalhigh_pages;
Linus Torvalds's avatar
Linus Torvalds committed
265
}
266 267 268
#else
extern void set_highmem_pages_init(int);
#endif /* !CONFIG_DISCONTIGMEM */
Linus Torvalds's avatar
Linus Torvalds committed
269

Dan Aloni's avatar
Dan Aloni committed
270 271 272 273 274 275
#else
#define kmap_init() do { } while (0)
#define permanent_kmaps_init(pgd_base) do { } while (0)
#define set_highmem_pages_init(bad_ppro) do { } while (0)
#endif /* CONFIG_HIGHMEM */

276 277
unsigned long __PAGE_KERNEL = _PAGE_KERNEL;

278 279 280 281 282 283
#ifndef CONFIG_DISCONTIGMEM
#define remap_numa_kva() do {} while (0)
#else
extern void __init remap_numa_kva(void);
#endif

Linus Torvalds's avatar
Linus Torvalds committed
284 285
static void __init pagetable_init (void)
{
Dan Aloni's avatar
Dan Aloni committed
286 287
	unsigned long vaddr;
	pgd_t *pgd_base = swapper_pg_dir;
Linus Torvalds's avatar
Linus Torvalds committed
288

289
#ifdef CONFIG_X86_PAE
290
	int i;
Dan Aloni's avatar
Dan Aloni committed
291
	/* Init entries of the first-level page table to the zero page */
Linus Torvalds's avatar
Linus Torvalds committed
292
	for (i = 0; i < PTRS_PER_PGD; i++)
293
		set_pgd(pgd_base + i, __pgd(__pa(empty_zero_page) | _PAGE_PRESENT));
Linus Torvalds's avatar
Linus Torvalds committed
294
#endif
Dan Aloni's avatar
Dan Aloni committed
295 296

	/* Enable PSE if available */
297 298 299
	if (cpu_has_pse) {
		set_in_cr4(X86_CR4_PSE);
	}
Dan Aloni's avatar
Dan Aloni committed
300 301

	/* Enable PGE if available */
302 303 304 305 306
	if (cpu_has_pge) {
		set_in_cr4(X86_CR4_PGE);
		__PAGE_KERNEL |= _PAGE_GLOBAL;
	}

Dan Aloni's avatar
Dan Aloni committed
307
	kernel_physical_mapping_init(pgd_base);
308
	remap_numa_kva();
Linus Torvalds's avatar
Linus Torvalds committed
309 310 311 312 313 314

	/*
	 * Fixed mappings, only the page table structure has to be
	 * created - mappings will be set by set_fixmap():
	 */
	vaddr = __fix_to_virt(__end_of_fixed_addresses - 1) & PMD_MASK;
Dan Aloni's avatar
Dan Aloni committed
315
	page_table_range_init(vaddr, 0, pgd_base);
Linus Torvalds's avatar
Linus Torvalds committed
316

Dan Aloni's avatar
Dan Aloni committed
317
	permanent_kmaps_init(pgd_base);
Linus Torvalds's avatar
Linus Torvalds committed
318

319
#ifdef CONFIG_X86_PAE
Linus Torvalds's avatar
Linus Torvalds committed
320 321 322 323 324 325 326 327 328 329 330
	/*
	 * Add low memory identity-mappings - SMP needs it when
	 * starting up on an AP from real-mode. In the non-PAE
	 * case we already have these mappings through head.S.
	 * All user-space mappings are explicitly cleared after
	 * SMP startup.
	 */
	pgd_base[0] = pgd_base[USER_PTRS_PER_PGD];
#endif
}

331
void zap_low_mappings (void)
Linus Torvalds's avatar
Linus Torvalds committed
332 333 334 335 336 337
{
	int i;
	/*
	 * Zap initial low-memory mappings.
	 *
	 * Note that "pgd_clear()" doesn't do it for
Linus Torvalds's avatar
Linus Torvalds committed
338
	 * us, because pgd_clear() is a no-op on i386.
Linus Torvalds's avatar
Linus Torvalds committed
339 340
	 */
	for (i = 0; i < USER_PTRS_PER_PGD; i++)
341
#ifdef CONFIG_X86_PAE
Linus Torvalds's avatar
Linus Torvalds committed
342
		set_pgd(swapper_pg_dir+i, __pgd(1 + __pa(empty_zero_page)));
Linus Torvalds's avatar
Linus Torvalds committed
343 344 345 346 347 348
#else
		set_pgd(swapper_pg_dir+i, __pgd(0));
#endif
	flush_tlb_all();
}

349
#ifndef CONFIG_DISCONTIGMEM
Dan Aloni's avatar
Dan Aloni committed
350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369
void __init zone_sizes_init(void)
{
	unsigned long zones_size[MAX_NR_ZONES] = {0, 0, 0};
	unsigned int max_dma, high, low;
	
	max_dma = virt_to_phys((char *)MAX_DMA_ADDRESS) >> PAGE_SHIFT;
	low = max_low_pfn;
	high = highend_pfn;
	
	if (low < max_dma)
		zones_size[ZONE_DMA] = low;
	else {
		zones_size[ZONE_DMA] = max_dma;
		zones_size[ZONE_NORMAL] = low - max_dma;
#ifdef CONFIG_HIGHMEM
		zones_size[ZONE_HIGHMEM] = high - low;
#endif
	}
	free_area_init(zones_size);	
}
370 371 372
#else
extern void zone_sizes_init(void);
#endif /* !CONFIG_DISCONTIGMEM */
Dan Aloni's avatar
Dan Aloni committed
373

Linus Torvalds's avatar
Linus Torvalds committed
374 375 376 377 378 379 380 381 382 383 384
/*
 * paging_init() sets up the page tables - note that the first 8MB are
 * already mapped by head.S.
 *
 * This routines also unmaps the page at virtual kernel address 0, so
 * that we can trap those pesky NULL-reference errors in the kernel.
 */
void __init paging_init(void)
{
	pagetable_init();

385
	load_cr3(swapper_pg_dir);
Linus Torvalds's avatar
Linus Torvalds committed
386

387
#ifdef CONFIG_X86_PAE
Linus Torvalds's avatar
Linus Torvalds committed
388
	/*
389
	 * We will bail out later - printk doesn't work right now so
Linus Torvalds's avatar
Linus Torvalds committed
390 391 392 393 394 395 396 397
	 * the user would just see a hanging kernel.
	 */
	if (cpu_has_pae)
		set_in_cr4(X86_CR4_PAE);
#endif
	__flush_tlb_all();

	kmap_init();
Dan Aloni's avatar
Dan Aloni committed
398
	zone_sizes_init();
Linus Torvalds's avatar
Linus Torvalds committed
399 400 401 402
}

/*
 * Test if the WP bit works in supervisor mode. It isn't supported on 386's
403 404 405
 * and also on some strange 486's (NexGen etc.). All 586+'s are OK. This
 * used to involve black magic jumps to work around some nasty CPU bugs,
 * but fortunately the switch to using exceptions got rid of all that.
Linus Torvalds's avatar
Linus Torvalds committed
406 407 408 409 410 411
 */

void __init test_wp_bit(void)
{
	printk("Checking if this processor honours the WP bit even in supervisor mode... ");

412 413 414 415
	/* Any page-aligned address will do, the test is non-destructive */
	__set_fixmap(FIX_WP_TEST, __pa(&swapper_pg_dir), PAGE_READONLY);
	boot_cpu_data.wp_works_ok = do_test_wp_bit();
	clear_fixmap(FIX_WP_TEST);
Linus Torvalds's avatar
Linus Torvalds committed
416 417 418 419 420 421 422 423 424 425

	if (!boot_cpu_data.wp_works_ok) {
		printk("No.\n");
#ifdef CONFIG_X86_WP_WORKS_OK
		panic("This kernel doesn't support CPU's with broken WP. Recompile it for a 386!");
#endif
	} else {
		printk("Ok.\n");
	}
}
426

427
#ifndef CONFIG_DISCONTIGMEM
428 429 430
static void __init set_max_mapnr_init(void)
{
#ifdef CONFIG_HIGHMEM
431
	highmem_start_page = pfn_to_page(highstart_pfn);
432 433 434 435 436
	max_mapnr = num_physpages = highend_pfn;
#else
	max_mapnr = num_physpages = max_low_pfn;
#endif
}
437 438 439 440 441
#define __free_all_bootmem() free_all_bootmem()
#else
#define __free_all_bootmem() free_all_bootmem_node(NODE_DATA(0))
extern void set_max_mapnr_init(void);
#endif /* !CONFIG_DISCONTIGMEM */
442

443 444
static struct kcore_list kcore_mem, kcore_vmalloc; 

Linus Torvalds's avatar
Linus Torvalds committed
445 446
void __init mem_init(void)
{
Linus Torvalds's avatar
Linus Torvalds committed
447
	extern int ppro_with_ram_bug(void);
Linus Torvalds's avatar
Linus Torvalds committed
448 449
	int codesize, reservedpages, datasize, initsize;
	int tmp;
Linus Torvalds's avatar
Linus Torvalds committed
450
	int bad_ppro;
Linus Torvalds's avatar
Linus Torvalds committed
451

452
#ifndef CONFIG_DISCONTIGMEM
Linus Torvalds's avatar
Linus Torvalds committed
453 454
	if (!mem_map)
		BUG();
455
#endif
Linus Torvalds's avatar
Linus Torvalds committed
456 457
	
	bad_ppro = ppro_with_ram_bug();
Linus Torvalds's avatar
Linus Torvalds committed
458

459 460 461 462 463 464 465 466 467 468
#ifdef CONFIG_HIGHMEM
	/* check that fixmap and pkmap do not overlap */
	if (PKMAP_BASE+LAST_PKMAP*PAGE_SIZE >= FIXADDR_START) {
		printk(KERN_ERR "fixmap and kmap areas overlap - this will crash\n");
		printk(KERN_ERR "pkstart: %lxh pkend: %lxh fixstart %lxh\n",
				PKMAP_BASE, PKMAP_BASE+LAST_PKMAP*PAGE_SIZE, FIXADDR_START);
		BUG();
	}
#endif
 
469 470
	set_max_mapnr_init();

471 472 473
#ifdef CONFIG_HIGHMEM
	high_memory = (void *) __va(highstart_pfn * PAGE_SIZE);
#else
Linus Torvalds's avatar
Linus Torvalds committed
474
	high_memory = (void *) __va(max_low_pfn * PAGE_SIZE);
475
#endif
Linus Torvalds's avatar
Linus Torvalds committed
476 477 478 479 480

	/* clear the zero-page */
	memset(empty_zero_page, 0, PAGE_SIZE);

	/* this will put all low memory onto the freelists */
481
	totalram_pages += __free_all_bootmem();
Linus Torvalds's avatar
Linus Torvalds committed
482 483 484 485 486 487

	reservedpages = 0;
	for (tmp = 0; tmp < max_low_pfn; tmp++)
		/*
		 * Only count reserved RAM pages
		 */
488
		if (page_is_ram(tmp) && PageReserved(pfn_to_page(tmp)))
Linus Torvalds's avatar
Linus Torvalds committed
489 490
			reservedpages++;

Dan Aloni's avatar
Dan Aloni committed
491 492
	set_highmem_pages_init(bad_ppro);

Linus Torvalds's avatar
Linus Torvalds committed
493 494 495 496
	codesize =  (unsigned long) &_etext - (unsigned long) &_text;
	datasize =  (unsigned long) &_edata - (unsigned long) &_etext;
	initsize =  (unsigned long) &__init_end - (unsigned long) &__init_begin;

497 498 499 500
	kclist_add(&kcore_mem, __va(0), max_low_pfn << PAGE_SHIFT); 
	kclist_add(&kcore_vmalloc, (void *)VMALLOC_START, 
		   VMALLOC_END-VMALLOC_START);

Dave Jones's avatar
Dave Jones committed
501
	printk(KERN_INFO "Memory: %luk/%luk available (%dk kernel code, %dk reserved, %dk data, %dk init, %ldk highmem)\n",
Linus Torvalds's avatar
Linus Torvalds committed
502
		(unsigned long) nr_free_pages() << (PAGE_SHIFT-10),
503
		num_physpages << (PAGE_SHIFT-10),
Linus Torvalds's avatar
Linus Torvalds committed
504 505 506 507 508 509 510
		codesize >> 10,
		reservedpages << (PAGE_SHIFT-10),
		datasize >> 10,
		initsize >> 10,
		(unsigned long) (totalhigh_pages << (PAGE_SHIFT-10))
	       );

511
#ifdef CONFIG_X86_PAE
Linus Torvalds's avatar
Linus Torvalds committed
512 513 514 515 516 517 518 519 520 521 522 523 524 525 526
	if (!cpu_has_pae)
		panic("cannot execute a PAE-enabled kernel on a PAE-less CPU!");
#endif
	if (boot_cpu_data.wp_works_ok < 0)
		test_wp_bit();

	/*
	 * Subtle. SMP is doing it's boot stuff late (because it has to
	 * fork idle threads) - but it also needs low mappings for the
	 * protected-mode entry to work. We zap these entries only after
	 * the WP-bit has been tested.
	 */
#ifndef CONFIG_SMP
	zap_low_mappings();
#endif
Dan Aloni's avatar
Dan Aloni committed
527 528
}

529 530
kmem_cache_t *pgd_cache;
kmem_cache_t *pmd_cache;
Linus Torvalds's avatar
Linus Torvalds committed
531

Dan Aloni's avatar
Dan Aloni committed
532 533
void __init pgtable_cache_init(void)
{
534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551
	if (PTRS_PER_PMD > 1) {
		pmd_cache = kmem_cache_create("pmd",
					PTRS_PER_PMD*sizeof(pmd_t),
					0,
					SLAB_HWCACHE_ALIGN | SLAB_MUST_HWCACHE_ALIGN,
					pmd_ctor,
					NULL);
		if (!pmd_cache)
			panic("pgtable_cache_init(): cannot create pmd cache");
	}
	pgd_cache = kmem_cache_create("pgd",
				PTRS_PER_PGD*sizeof(pgd_t),
				0,
				SLAB_HWCACHE_ALIGN | SLAB_MUST_HWCACHE_ALIGN,
				pgd_ctor,
				PTRS_PER_PMD == 1 ? pgd_dtor : NULL);
	if (!pgd_cache)
		panic("pgtable_cache_init(): Cannot create pgd cache");
Linus Torvalds's avatar
Linus Torvalds committed
552 553
}

554 555 556 557
/*
 * This function cannot be __init, since exceptions don't work in that
 * section.  Put this after the callers, so that it cannot be inlined.
 */
558
static int do_test_wp_bit(void)
Linus Torvalds's avatar
Linus Torvalds committed
559 560 561 562 563 564 565 566 567 568 569 570 571
{
	char tmp_reg;
	int flag;

	__asm__ __volatile__(
		"	movb %0,%1	\n"
		"1:	movb %1,%0	\n"
		"	xorl %2,%2	\n"
		"2:			\n"
		".section __ex_table,\"a\"\n"
		"	.align 4	\n"
		"	.long 1b,2b	\n"
		".previous		\n"
572
		:"=m" (*(char *)fix_to_virt(FIX_WP_TEST)),
Linus Torvalds's avatar
Linus Torvalds committed
573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591
		 "=q" (tmp_reg),
		 "=r" (flag)
		:"2" (1)
		:"memory");
	
	return flag;
}

void free_initmem(void)
{
	unsigned long addr;

	addr = (unsigned long)(&__init_begin);
	for (; addr < (unsigned long)(&__init_end); addr += PAGE_SIZE) {
		ClearPageReserved(virt_to_page(addr));
		set_page_count(virt_to_page(addr), 1);
		free_page(addr);
		totalram_pages++;
	}
592
	printk (KERN_INFO "Freeing unused kernel memory: %dk freed\n", (__init_end - __init_begin) >> 10);
Linus Torvalds's avatar
Linus Torvalds committed
593 594 595 596 597 598
}

#ifdef CONFIG_BLK_DEV_INITRD
void free_initrd_mem(unsigned long start, unsigned long end)
{
	if (start < end)
Dave Jones's avatar
Dave Jones committed
599
		printk (KERN_INFO "Freeing initrd memory: %ldk freed\n", (end - start) >> 10);
Linus Torvalds's avatar
Linus Torvalds committed
600 601 602 603 604 605 606 607
	for (; start < end; start += PAGE_SIZE) {
		ClearPageReserved(virt_to_page(start));
		set_page_count(virt_to_page(start), 1);
		free_page(start);
		totalram_pages++;
	}
}
#endif