blob: a1d228f5e4e6b4282ac10558ad6fc801a209e4cf [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/h8300/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/m68knommu/mm/init.c
11 * linux/arch/m68k/mm/init.c
12 *
13 * Copyright (C) 1995 Hamish Macdonald
14 *
15 * JAN/1999 -- hacked to support ColdFire (gerg@snapgear.com)
16 * DEC/2000 -- linux 2.4 support <davidm@snapgear.com>
17 */
18
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/signal.h>
20#include <linux/sched.h>
21#include <linux/kernel.h>
22#include <linux/errno.h>
23#include <linux/string.h>
24#include <linux/types.h>
25#include <linux/ptrace.h>
26#include <linux/mman.h>
27#include <linux/mm.h>
28#include <linux/swap.h>
29#include <linux/init.h>
30#include <linux/highmem.h>
31#include <linux/pagemap.h>
32#include <linux/bootmem.h>
33#include <linux/slab.h>
34
35#include <asm/setup.h>
36#include <asm/segment.h>
37#include <asm/page.h>
38#include <asm/pgtable.h>
39#include <asm/system.h>
40
41#undef DEBUG
42
43extern void die_if_kernel(char *,struct pt_regs *,long);
44extern void free_initmem(void);
45
46/*
47 * BAD_PAGE is the page that is used for page faults when linux
48 * is out-of-memory. Older versions of linux just did a
49 * do_exit(), but using this instead means there is less risk
50 * for a process dying in kernel mode, possibly leaving a inode
51 * unused etc..
52 *
53 * BAD_PAGETABLE is the accompanying page-table: it is initialized
54 * to point to BAD_PAGE entries.
55 *
56 * ZERO_PAGE is a special page that is used for zero-initialized
57 * data and COW.
58 */
59static unsigned long empty_bad_page_table;
60
61static unsigned long empty_bad_page;
62
63unsigned long empty_zero_page;
64
65extern unsigned long rom_length;
66
Linus Torvalds1da177e2005-04-16 15:20:36 -070067extern unsigned long memory_start;
68extern unsigned long memory_end;
69
70/*
71 * paging_init() continues the virtual memory environment setup which
72 * was begun by the code in arch/head.S.
73 * The parameters are pointers to where to stick the starting and ending
74 * addresses of available kernel virtual memory.
75 */
76void paging_init(void)
77{
78 /*
79 * Make sure start_mem is page aligned, otherwise bootmem and
80 * page_alloc get different views og the world.
81 */
82#ifdef DEBUG
83 unsigned long start_mem = PAGE_ALIGN(memory_start);
84#endif
85 unsigned long end_mem = memory_end & PAGE_MASK;
86
87#ifdef DEBUG
88 printk ("start_mem is %#lx\nvirtual_end is %#lx\n",
89 start_mem, end_mem);
90#endif
91
92 /*
93 * Initialize the bad page table and bad page to point
94 * to a couple of allocated pages.
95 */
96 empty_bad_page_table = (unsigned long)alloc_bootmem_pages(PAGE_SIZE);
97 empty_bad_page = (unsigned long)alloc_bootmem_pages(PAGE_SIZE);
98 empty_zero_page = (unsigned long)alloc_bootmem_pages(PAGE_SIZE);
99 memset((void *)empty_zero_page, 0, PAGE_SIZE);
100
101 /*
102 * Set up SFC/DFC registers (user data space).
103 */
104 set_fs (USER_DS);
105
106#ifdef DEBUG
107 printk ("before free_area_init\n");
108
109 printk ("free_area_init -> start_mem is %#lx\nvirtual_end is %#lx\n",
110 start_mem, end_mem);
111#endif
112
113 {
Christoph Lameterf06a9682006-09-25 23:31:10 -0700114 unsigned long zones_size[MAX_NR_ZONES] = {0, };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
116 zones_size[ZONE_DMA] = 0 >> PAGE_SHIFT;
117 zones_size[ZONE_NORMAL] = (end_mem - PAGE_OFFSET) >> PAGE_SHIFT;
118#ifdef CONFIG_HIGHMEM
119 zones_size[ZONE_HIGHMEM] = 0;
120#endif
121 free_area_init(zones_size);
122 }
123}
124
125void mem_init(void)
126{
127 int codek = 0, datak = 0, initk = 0;
128 /* DAVIDM look at setup memory map generically with reserved area */
129 unsigned long tmp;
130 extern char _etext, _stext, _sdata, _ebss, __init_begin, __init_end;
131 extern unsigned long _ramend, _ramstart;
132 unsigned long len = &_ramend - &_ramstart;
133 unsigned long start_mem = memory_start; /* DAVIDM - these must start at end of kernel */
134 unsigned long end_mem = memory_end; /* DAVIDM - this must not include kernel stack at top */
135
136#ifdef DEBUG
137 printk(KERN_DEBUG "Mem_init: start=%lx, end=%lx\n", start_mem, end_mem);
138#endif
139
140 end_mem &= PAGE_MASK;
141 high_memory = (void *) end_mem;
142
143 start_mem = PAGE_ALIGN(start_mem);
144 max_mapnr = num_physpages = MAP_NR(high_memory);
145
146 /* this will put all memory onto the freelists */
147 totalram_pages = free_all_bootmem();
148
149 codek = (&_etext - &_stext) >> 10;
150 datak = (&_ebss - &_sdata) >> 10;
151 initk = (&__init_begin - &__init_end) >> 10;
152
153 tmp = nr_free_pages() << PAGE_SHIFT;
154 printk(KERN_INFO "Memory available: %luk/%luk RAM, %luk/%luk ROM (%dk kernel code, %dk data)\n",
155 tmp >> 10,
156 len >> 10,
157 (rom_length > 0) ? ((rom_length >> 10) - codek) : 0,
158 rom_length >> 10,
159 codek,
160 datak
161 );
162}
163
164
165#ifdef CONFIG_BLK_DEV_INITRD
166void free_initrd_mem(unsigned long start, unsigned long end)
167{
168 int pages = 0;
169 for (; start < end; start += PAGE_SIZE) {
170 ClearPageReserved(virt_to_page(start));
Nick Piggin7835e982006-03-22 00:08:40 -0800171 init_page_count(virt_to_page(start));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 free_page(start);
173 totalram_pages++;
174 pages++;
175 }
176 printk ("Freeing initrd memory: %dk freed\n", pages);
177}
178#endif
179
180void
181free_initmem()
182{
183#ifdef CONFIG_RAMKERNEL
184 unsigned long addr;
185 extern char __init_begin, __init_end;
186/*
187 * the following code should be cool even if these sections
188 * are not page aligned.
189 */
190 addr = PAGE_ALIGN((unsigned long)(&__init_begin));
191 /* next to check that the page we free is not a partial page */
192 for (; addr + PAGE_SIZE < (unsigned long)(&__init_end); addr +=PAGE_SIZE) {
193 ClearPageReserved(virt_to_page(addr));
Nick Piggin7835e982006-03-22 00:08:40 -0800194 init_page_count(virt_to_page(addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 free_page(addr);
196 totalram_pages++;
197 }
198 printk(KERN_INFO "Freeing unused kernel memory: %ldk freed (0x%x - 0x%x)\n",
199 (addr - PAGE_ALIGN((long) &__init_begin)) >> 10,
200 (int)(PAGE_ALIGN((unsigned long)(&__init_begin))),
201 (int)(addr - PAGE_SIZE));
202#endif
203}
204