Linux-2.6.12-rc2
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / h8300 / mm / init.c
blob1e0929ddc8c46b6c897cee48668779a1c989895c
1 /*
2 * linux/arch/h8300/mm/init.c
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)
8 * Based on:
10 * linux/arch/m68knommu/mm/init.c
11 * linux/arch/m68k/mm/init.c
13 * Copyright (C) 1995 Hamish Macdonald
15 * JAN/1999 -- hacked to support ColdFire (gerg@snapgear.com)
16 * DEC/2000 -- linux 2.4 support <davidm@snapgear.com>
19 #include <linux/config.h>
20 #include <linux/signal.h>
21 #include <linux/sched.h>
22 #include <linux/kernel.h>
23 #include <linux/errno.h>
24 #include <linux/string.h>
25 #include <linux/types.h>
26 #include <linux/ptrace.h>
27 #include <linux/mman.h>
28 #include <linux/mm.h>
29 #include <linux/swap.h>
30 #include <linux/init.h>
31 #include <linux/highmem.h>
32 #include <linux/pagemap.h>
33 #include <linux/bootmem.h>
34 #include <linux/slab.h>
36 #include <asm/setup.h>
37 #include <asm/segment.h>
38 #include <asm/page.h>
39 #include <asm/pgtable.h>
40 #include <asm/system.h>
42 #undef DEBUG
44 extern void die_if_kernel(char *,struct pt_regs *,long);
45 extern void free_initmem(void);
48 * BAD_PAGE is the page that is used for page faults when linux
49 * is out-of-memory. Older versions of linux just did a
50 * do_exit(), but using this instead means there is less risk
51 * for a process dying in kernel mode, possibly leaving a inode
52 * unused etc..
54 * BAD_PAGETABLE is the accompanying page-table: it is initialized
55 * to point to BAD_PAGE entries.
57 * ZERO_PAGE is a special page that is used for zero-initialized
58 * data and COW.
60 static unsigned long empty_bad_page_table;
62 static unsigned long empty_bad_page;
64 unsigned long empty_zero_page;
66 extern unsigned long rom_length;
68 void show_mem(void)
70 unsigned long i;
71 int free = 0, total = 0, reserved = 0, shared = 0;
72 int cached = 0;
74 printk("\nMem-info:\n");
75 show_free_areas();
76 i = max_mapnr;
77 while (i-- > 0) {
78 total++;
79 if (PageReserved(mem_map+i))
80 reserved++;
81 else if (PageSwapCache(mem_map+i))
82 cached++;
83 else if (!page_count(mem_map+i))
84 free++;
85 else
86 shared += page_count(mem_map+i) - 1;
88 printk("%d pages of RAM\n",total);
89 printk("%d free pages\n",free);
90 printk("%d reserved pages\n",reserved);
91 printk("%d pages shared\n",shared);
92 printk("%d pages swap cached\n",cached);
95 extern unsigned long memory_start;
96 extern unsigned long memory_end;
99 * paging_init() continues the virtual memory environment setup which
100 * was begun by the code in arch/head.S.
101 * The parameters are pointers to where to stick the starting and ending
102 * addresses of available kernel virtual memory.
104 void paging_init(void)
107 * Make sure start_mem is page aligned, otherwise bootmem and
108 * page_alloc get different views og the world.
110 #ifdef DEBUG
111 unsigned long start_mem = PAGE_ALIGN(memory_start);
112 #endif
113 unsigned long end_mem = memory_end & PAGE_MASK;
115 #ifdef DEBUG
116 printk ("start_mem is %#lx\nvirtual_end is %#lx\n",
117 start_mem, end_mem);
118 #endif
121 * Initialize the bad page table and bad page to point
122 * to a couple of allocated pages.
124 empty_bad_page_table = (unsigned long)alloc_bootmem_pages(PAGE_SIZE);
125 empty_bad_page = (unsigned long)alloc_bootmem_pages(PAGE_SIZE);
126 empty_zero_page = (unsigned long)alloc_bootmem_pages(PAGE_SIZE);
127 memset((void *)empty_zero_page, 0, PAGE_SIZE);
130 * Set up SFC/DFC registers (user data space).
132 set_fs (USER_DS);
134 #ifdef DEBUG
135 printk ("before free_area_init\n");
137 printk ("free_area_init -> start_mem is %#lx\nvirtual_end is %#lx\n",
138 start_mem, end_mem);
139 #endif
142 unsigned long zones_size[MAX_NR_ZONES] = {0, 0, 0};
144 zones_size[ZONE_DMA] = 0 >> PAGE_SHIFT;
145 zones_size[ZONE_NORMAL] = (end_mem - PAGE_OFFSET) >> PAGE_SHIFT;
146 #ifdef CONFIG_HIGHMEM
147 zones_size[ZONE_HIGHMEM] = 0;
148 #endif
149 free_area_init(zones_size);
153 void mem_init(void)
155 int codek = 0, datak = 0, initk = 0;
156 /* DAVIDM look at setup memory map generically with reserved area */
157 unsigned long tmp;
158 extern char _etext, _stext, _sdata, _ebss, __init_begin, __init_end;
159 extern unsigned long _ramend, _ramstart;
160 unsigned long len = &_ramend - &_ramstart;
161 unsigned long start_mem = memory_start; /* DAVIDM - these must start at end of kernel */
162 unsigned long end_mem = memory_end; /* DAVIDM - this must not include kernel stack at top */
164 #ifdef DEBUG
165 printk(KERN_DEBUG "Mem_init: start=%lx, end=%lx\n", start_mem, end_mem);
166 #endif
168 end_mem &= PAGE_MASK;
169 high_memory = (void *) end_mem;
171 start_mem = PAGE_ALIGN(start_mem);
172 max_mapnr = num_physpages = MAP_NR(high_memory);
174 /* this will put all memory onto the freelists */
175 totalram_pages = free_all_bootmem();
177 codek = (&_etext - &_stext) >> 10;
178 datak = (&_ebss - &_sdata) >> 10;
179 initk = (&__init_begin - &__init_end) >> 10;
181 tmp = nr_free_pages() << PAGE_SHIFT;
182 printk(KERN_INFO "Memory available: %luk/%luk RAM, %luk/%luk ROM (%dk kernel code, %dk data)\n",
183 tmp >> 10,
184 len >> 10,
185 (rom_length > 0) ? ((rom_length >> 10) - codek) : 0,
186 rom_length >> 10,
187 codek,
188 datak
193 #ifdef CONFIG_BLK_DEV_INITRD
194 void free_initrd_mem(unsigned long start, unsigned long end)
196 int pages = 0;
197 for (; start < end; start += PAGE_SIZE) {
198 ClearPageReserved(virt_to_page(start));
199 set_page_count(virt_to_page(start), 1);
200 free_page(start);
201 totalram_pages++;
202 pages++;
204 printk ("Freeing initrd memory: %dk freed\n", pages);
206 #endif
208 void
209 free_initmem()
211 #ifdef CONFIG_RAMKERNEL
212 unsigned long addr;
213 extern char __init_begin, __init_end;
215 * the following code should be cool even if these sections
216 * are not page aligned.
218 addr = PAGE_ALIGN((unsigned long)(&__init_begin));
219 /* next to check that the page we free is not a partial page */
220 for (; addr + PAGE_SIZE < (unsigned long)(&__init_end); addr +=PAGE_SIZE) {
221 ClearPageReserved(virt_to_page(addr));
222 set_page_count(virt_to_page(addr), 1);
223 free_page(addr);
224 totalram_pages++;
226 printk(KERN_INFO "Freeing unused kernel memory: %ldk freed (0x%x - 0x%x)\n",
227 (addr - PAGE_ALIGN((long) &__init_begin)) >> 10,
228 (int)(PAGE_ALIGN((unsigned long)(&__init_begin))),
229 (int)(addr - PAGE_SIZE));
230 #endif