blob: 688e3664aea072ef2e2ee951b9991db2ab7abb78 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/m68knommu/mm/init.c
3 *
4 * Copyright (C) 1998 D. Jeff Dionne <jeff@lineo.ca>,
5 * Kenneth Albanowski <kjahds@kjahds.com>,
6 * Copyright (C) 2000 Lineo, Inc. (www.lineo.com)
7 *
8 * Based on:
9 *
10 * linux/arch/m68k/mm/init.c
11 *
12 * Copyright (C) 1995 Hamish Macdonald
13 *
14 * JAN/1999 -- hacked to support ColdFire (gerg@snapgear.com)
15 * DEC/2000 -- linux 2.4 support <davidm@snapgear.com>
16 */
17
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/signal.h>
19#include <linux/sched.h>
20#include <linux/kernel.h>
21#include <linux/errno.h>
22#include <linux/string.h>
23#include <linux/types.h>
24#include <linux/ptrace.h>
25#include <linux/mman.h>
26#include <linux/mm.h>
27#include <linux/swap.h>
28#include <linux/init.h>
29#include <linux/highmem.h>
30#include <linux/pagemap.h>
31#include <linux/bootmem.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090032#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34#include <asm/setup.h>
Greg Ungerer9da48c02011-08-23 14:59:42 +100035#include <asm/sections.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <asm/segment.h>
37#include <asm/page.h>
38#include <asm/pgtable.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <asm/machdep.h>
40
Linus Torvalds1da177e2005-04-16 15:20:36 -070041/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 * ZERO_PAGE is a special page that is used for zero-initialized
43 * data and COW.
44 */
Geert Uytterhoeven45d15642011-05-25 11:10:59 +020045void *empty_zero_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Linus Torvalds1da177e2005-04-16 15:20:36 -070047/*
48 * paging_init() continues the virtual memory environment setup which
49 * was begun by the code in arch/head.S.
50 * The parameters are pointers to where to stick the starting and ending
51 * addresses of available kernel virtual memory.
52 */
Greg Ungererf386c3c2007-10-24 12:03:46 +100053void __init paging_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070054{
55 /*
56 * Make sure start_mem is page aligned, otherwise bootmem and
57 * page_alloc get different views of the world.
58 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 unsigned long end_mem = memory_end & PAGE_MASK;
Greg Ungererb1ffa252011-03-29 13:39:47 +100060 unsigned long zones_size[MAX_NR_ZONES] = {0, };
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Geert Uytterhoeven45d15642011-05-25 11:10:59 +020062 empty_zero_page = alloc_bootmem_pages(PAGE_SIZE);
63 memset(empty_zero_page, 0, PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
65 /*
66 * Set up SFC/DFC registers (user data space).
67 */
68 set_fs (USER_DS);
69
Greg Ungererb1ffa252011-03-29 13:39:47 +100070 zones_size[ZONE_DMA] = (end_mem - PAGE_OFFSET) >> PAGE_SHIFT;
71 free_area_init(zones_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072}
73
Greg Ungererf386c3c2007-10-24 12:03:46 +100074void __init mem_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075{
76 int codek = 0, datak = 0, initk = 0;
77 unsigned long tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 unsigned long len = _ramend - _rambase;
79 unsigned long start_mem = memory_start; /* DAVIDM - these must start at end of kernel */
80 unsigned long end_mem = memory_end; /* DAVIDM - this must not include kernel stack at top */
81
Joe Perches308e6102009-05-15 10:59:37 -070082 pr_debug("Mem_init: start=%lx, end=%lx\n", start_mem, end_mem);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
84 end_mem &= PAGE_MASK;
85 high_memory = (void *) end_mem;
86
87 start_mem = PAGE_ALIGN(start_mem);
88 max_mapnr = num_physpages = (((unsigned long) high_memory) - PAGE_OFFSET) >> PAGE_SHIFT;
89
90 /* this will put all memory onto the freelists */
91 totalram_pages = free_all_bootmem();
92
Greg Ungerer9da48c02011-08-23 14:59:42 +100093 codek = (_etext - _stext) >> 10;
Geert Uytterhoevendc061052012-05-31 21:46:03 +020094 datak = (__bss_stop - _sdata) >> 10;
Greg Ungerer9da48c02011-08-23 14:59:42 +100095 initk = (__init_begin - __init_end) >> 10;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
97 tmp = nr_free_pages() << PAGE_SHIFT;
Greg Ungerer2082b472006-06-26 10:33:10 +100098 printk(KERN_INFO "Memory available: %luk/%luk RAM, (%dk kernel code, %dk data)\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 tmp >> 10,
100 len >> 10,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 codek,
102 datak
103 );
104}
105
106
107#ifdef CONFIG_BLK_DEV_INITRD
108void free_initrd_mem(unsigned long start, unsigned long end)
109{
110 int pages = 0;
111 for (; start < end; start += PAGE_SIZE) {
112 ClearPageReserved(virt_to_page(start));
Nick Piggin7835e982006-03-22 00:08:40 -0800113 init_page_count(virt_to_page(start));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 free_page(start);
115 totalram_pages++;
116 pages++;
117 }
Geert Uytterhoeven6617eaf2011-05-26 14:44:10 +1000118 pr_notice("Freeing initrd memory: %luk freed\n",
119 pages * (PAGE_SIZE / 1024));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120}
121#endif
122
Greg Ungererb1ffa252011-03-29 13:39:47 +1000123void free_initmem(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124{
125#ifdef CONFIG_RAMKERNEL
126 unsigned long addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 /*
128 * The following code should be cool even if these sections
129 * are not page aligned.
130 */
Greg Ungerer9da48c02011-08-23 14:59:42 +1000131 addr = PAGE_ALIGN((unsigned long) __init_begin);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 /* next to check that the page we free is not a partial page */
Greg Ungerer9da48c02011-08-23 14:59:42 +1000133 for (; addr + PAGE_SIZE < ((unsigned long) __init_end); addr += PAGE_SIZE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 ClearPageReserved(virt_to_page(addr));
Nick Piggin7835e982006-03-22 00:08:40 -0800135 init_page_count(virt_to_page(addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 free_page(addr);
137 totalram_pages++;
138 }
Geert Uytterhoeven6617eaf2011-05-26 14:44:10 +1000139 pr_notice("Freeing unused kernel memory: %luk freed (0x%x - 0x%x)\n",
Greg Ungerer9da48c02011-08-23 14:59:42 +1000140 (addr - PAGE_ALIGN((unsigned long) __init_begin)) >> 10,
141 (int)(PAGE_ALIGN((unsigned long) __init_begin)),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 (int)(addr - PAGE_SIZE));
143#endif
144}
145