init.c 3.0 KB
Newer Older
H
Haavard Skinnemoen 已提交
1 2 3 4 5 6 7 8 9
/*
 * Copyright (C) 2004-2006 Atmel Corporation
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */

#include <linux/kernel.h>
10
#include <linux/gfp.h>
H
Haavard Skinnemoen 已提交
11 12 13 14
#include <linux/mm.h>
#include <linux/swap.h>
#include <linux/init.h>
#include <linux/mmzone.h>
15
#include <linux/module.h>
H
Haavard Skinnemoen 已提交
16 17 18 19 20 21 22 23 24 25 26 27
#include <linux/bootmem.h>
#include <linux/pagemap.h>
#include <linux/nodemask.h>

#include <asm/page.h>
#include <asm/mmu_context.h>
#include <asm/tlb.h>
#include <asm/io.h>
#include <asm/dma.h>
#include <asm/setup.h>
#include <asm/sections.h>

28
pgd_t swapper_pg_dir[PTRS_PER_PGD] __page_aligned_data;
H
Haavard Skinnemoen 已提交
29 30

struct page *empty_zero_page;
31
EXPORT_SYMBOL(empty_zero_page);
H
Haavard Skinnemoen 已提交
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70

/*
 * Cache of MMU context last used.
 */
unsigned long mmu_context_cache = NO_CONTEXT;

/*
 * paging_init() sets up the page tables
 *
 * This routine 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)
{
	extern unsigned long _evba;
	void *zero_page;
	int nid;

	/*
	 * Make sure we can handle exceptions before enabling
	 * paging. Not that we should ever _get_ any exceptions this
	 * early, but you never know...
	 */
	printk("Exception vectors start at %p\n", &_evba);
	sysreg_write(EVBA, (unsigned long)&_evba);

	/*
	 * Since we are ready to handle exceptions now, we should let
	 * the CPU generate them...
	 */
	__asm__ __volatile__ ("csrf %0" : : "i"(SR_EM_BIT));

	/*
	 * Allocate the zero page. The allocator will panic if it
	 * can't satisfy the request, so no need to check.
	 */
	zero_page = alloc_bootmem_low_pages_node(NODE_DATA(0),
						 PAGE_SIZE);

71 72 73
	sysreg_write(PTBR, (unsigned long)swapper_pg_dir);
	enable_mmu();
	printk ("CPU: Paging enabled\n");
H
Haavard Skinnemoen 已提交
74 75 76 77 78 79

	for_each_online_node(nid) {
		pg_data_t *pgdat = NODE_DATA(nid);
		unsigned long zones_size[MAX_NR_ZONES];
		unsigned long low, start_pfn;

80
		start_pfn = pgdat->bdata->node_min_pfn;
H
Haavard Skinnemoen 已提交
81 82 83 84 85 86 87 88
		low = pgdat->bdata->node_low_pfn;

		memset(zones_size, 0, sizeof(zones_size));
		zones_size[ZONE_NORMAL] = low - start_pfn;

		printk("Node %u: start_pfn = 0x%lx, low = 0x%lx\n",
		       nid, start_pfn, low);

89
		free_area_init_node(nid, zones_size, start_pfn, NULL);
H
Haavard Skinnemoen 已提交
90 91 92 93 94 95 96 97 98 99 100 101 102

		printk("Node %u: mem_map starts at %p\n",
		       pgdat->node_id, pgdat->node_mem_map);
	}

	mem_map = NODE_DATA(0)->node_mem_map;

	empty_zero_page = virt_to_page(zero_page);
	flush_dcache_page(empty_zero_page);
}

void __init mem_init(void)
{
103
	pg_data_t *pgdat;
H
Haavard Skinnemoen 已提交
104 105

	high_memory = NULL;
106 107 108
	for_each_online_pgdat(pgdat)
		high_memory = max_t(void *, high_memory,
				    __va(pgdat_end_pfn(pgdat) << PAGE_SHIFT));
H
Haavard Skinnemoen 已提交
109

110 111
	set_max_mapnr(MAP_NR(high_memory));
	free_all_bootmem();
112
	mem_init_print_info(NULL);
H
Haavard Skinnemoen 已提交
113 114 115 116
}

void free_initmem(void)
{
117
	free_initmem_default(-1);
H
Haavard Skinnemoen 已提交
118 119 120 121 122
}

#ifdef CONFIG_BLK_DEV_INITRD
void free_initrd_mem(unsigned long start, unsigned long end)
{
123
	free_reserved_area((void *)start, (void *)end, -1, "initrd");
H
Haavard Skinnemoen 已提交
124 125
}
#endif