blob: af87fd71a83e26c3f7bc97c0c6672d68ec0ed93b [file] [log] [blame]
Michal Simeka95d0e12009-03-27 14:25:29 +01001/*
2 * Copyright (C) 2007-2008 Michal Simek <monstr@monstr.eu>
3 * Copyright (C) 2006 Atmark Techno, Inc.
4 *
5 * This file is subject to the terms and conditions of the GNU General Public
6 * License. See the file "COPYING" in the main directory of this archive
7 * for more details.
8 */
9
10#include <linux/bootmem.h>
11#include <linux/init.h>
12#include <linux/kernel.h>
Yinghai Lu95f72d12010-07-12 14:36:09 +100013#include <linux/memblock.h>
Michal Simeka95d0e12009-03-27 14:25:29 +010014#include <linux/mm.h> /* mem_init */
15#include <linux/initrd.h>
16#include <linux/pagemap.h>
17#include <linux/pfn.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090018#include <linux/slab.h>
Michal Simeka95d0e12009-03-27 14:25:29 +010019#include <linux/swap.h>
Paul Gortmaker66421a62011-09-22 11:22:55 -040020#include <linux/export.h>
Michal Simeka95d0e12009-03-27 14:25:29 +010021
22#include <asm/page.h>
23#include <asm/mmu_context.h>
24#include <asm/pgalloc.h>
25#include <asm/sections.h>
26#include <asm/tlb.h>
Michal Simek41938762011-12-15 14:33:32 +010027#include <asm/fixmap.h>
Michal Simeka95d0e12009-03-27 14:25:29 +010028
Michal Simek79bf3a12010-01-20 15:17:08 +010029/* Use for MMU and noMMU because of PCI generic code */
30int mem_init_done;
31
Michal Simek4dc60832009-05-26 16:30:12 +020032#ifndef CONFIG_MMU
Michal Simeka95d0e12009-03-27 14:25:29 +010033unsigned int __page_offset;
Arnd Bergmann5af7fa62009-05-01 21:48:15 +000034EXPORT_SYMBOL(__page_offset);
Michal Simeka95d0e12009-03-27 14:25:29 +010035
Michal Simek4dc60832009-05-26 16:30:12 +020036#else
Michal Simek4dc60832009-05-26 16:30:12 +020037static int init_bootmem_done;
38#endif /* CONFIG_MMU */
39
Michal Simeka95d0e12009-03-27 14:25:29 +010040char *klimit = _end;
41
42/*
43 * Initialize the bootmem system and give it all the memory we
44 * have available.
45 */
Michal Simek4dc60832009-05-26 16:30:12 +020046unsigned long memory_start;
Michal Simekfd6ed512009-07-23 08:23:53 +020047EXPORT_SYMBOL(memory_start);
Michal Simek4dc60832009-05-26 16:30:12 +020048unsigned long memory_size;
Michal Simekee4bcdf2010-05-13 12:11:42 +020049EXPORT_SYMBOL(memory_size);
Michal Simek83a92522011-12-19 13:46:35 +010050unsigned long lowmem_size;
Michal Simeka95d0e12009-03-27 14:25:29 +010051
52/*
53 * paging_init() sets up the page tables - in fact we've already done this.
54 */
55static void __init paging_init(void)
56{
Michal Simeka95d0e12009-03-27 14:25:29 +010057 unsigned long zones_size[MAX_NR_ZONES];
Michal Simek41938762011-12-15 14:33:32 +010058#ifdef CONFIG_MMU
59 int idx;
60
61 /* Setup fixmaps */
62 for (idx = 0; idx < __end_of_fixed_addresses; idx++)
63 clear_fixmap(idx);
64#endif
Michal Simeka95d0e12009-03-27 14:25:29 +010065
Steve Magnani5af90432009-05-18 03:22:40 +020066 /* Clean every zones */
67 memset(zones_size, 0, sizeof(zones_size));
68
Michal Simek83a92522011-12-19 13:46:35 +010069 zones_size[ZONE_DMA] = max_pfn;
Michal Simeka95d0e12009-03-27 14:25:29 +010070
Michal Simeka95d0e12009-03-27 14:25:29 +010071 free_area_init(zones_size);
72}
73
74void __init setup_memory(void)
75{
Michal Simeka95d0e12009-03-27 14:25:29 +010076 unsigned long map_size;
Benjamin Herrenschmidt76bfcc82010-08-04 14:13:06 +100077 struct memblock_region *reg;
78
Michal Simek4dc60832009-05-26 16:30:12 +020079#ifndef CONFIG_MMU
Michal Simeka95d0e12009-03-27 14:25:29 +010080 u32 kernel_align_start, kernel_align_size;
81
82 /* Find main memory where is the kernel */
Benjamin Herrenschmidt76bfcc82010-08-04 14:13:06 +100083 for_each_memblock(memory, reg) {
84 memory_start = (u32)reg->base;
Michal Simek83a92522011-12-19 13:46:35 +010085 lowmem_size = reg->size;
Michal Simeka95d0e12009-03-27 14:25:29 +010086 if ((memory_start <= (u32)_text) &&
Michal Simek83a92522011-12-19 13:46:35 +010087 ((u32)_text <= (memory_start + lowmem_size - 1))) {
88 memory_size = lowmem_size;
Michal Simeka95d0e12009-03-27 14:25:29 +010089 PAGE_OFFSET = memory_start;
Michal Simek83a92522011-12-19 13:46:35 +010090 printk(KERN_INFO "%s: Main mem: 0x%x, "
Michal Simekdb6e3f92009-07-06 08:21:09 +020091 "size 0x%08x\n", __func__, (u32) memory_start,
Michal Simek83a92522011-12-19 13:46:35 +010092 (u32) memory_size);
Michal Simeka95d0e12009-03-27 14:25:29 +010093 break;
94 }
95 }
96
Michal Simek83a92522011-12-19 13:46:35 +010097 if (!memory_start || !memory_size) {
98 panic("%s: Missing memory setting 0x%08x, size=0x%08x\n",
99 __func__, (u32) memory_start, (u32) memory_size);
Michal Simeka95d0e12009-03-27 14:25:29 +0100100 }
101
102 /* reservation of region where is the kernel */
103 kernel_align_start = PAGE_DOWN((u32)_text);
104 /* ALIGN can be remove because _end in vmlinux.lds.S is align */
105 kernel_align_size = PAGE_UP((u32)klimit) - kernel_align_start;
Michal Simek83a92522011-12-19 13:46:35 +0100106 printk(KERN_INFO "%s: kernel addr:0x%08x-0x%08x size=0x%08x\n",
Michal Simeka95d0e12009-03-27 14:25:29 +0100107 __func__, kernel_align_start, kernel_align_start
108 + kernel_align_size, kernel_align_size);
Michal Simek83a92522011-12-19 13:46:35 +0100109 memblock_reserve(kernel_align_start, kernel_align_size);
Michal Simek4dc60832009-05-26 16:30:12 +0200110#endif
Michal Simeka95d0e12009-03-27 14:25:29 +0100111 /*
112 * Kernel:
113 * start: base phys address of kernel - page align
114 * end: base phys address of kernel - page align
115 *
116 * min_low_pfn - the first page (mm/bootmem.c - node_boot_start)
117 * max_low_pfn
118 * max_mapnr - the first unused page (mm/bootmem.c - node_low_pfn)
119 * num_physpages - number of all pages
120 */
121
122 /* memory start is from the kernel end (aligned) to higher addr */
123 min_low_pfn = memory_start >> PAGE_SHIFT; /* minimum for allocation */
124 /* RAM is assumed contiguous */
125 num_physpages = max_mapnr = memory_size >> PAGE_SHIFT;
Michal Simek83a92522011-12-19 13:46:35 +0100126 max_low_pfn = ((u64)memory_start + (u64)lowmem_size) >> PAGE_SHIFT;
127 max_pfn = ((u64)memory_start + (u64)memory_size) >> PAGE_SHIFT;
Michal Simeka95d0e12009-03-27 14:25:29 +0100128
129 printk(KERN_INFO "%s: max_mapnr: %#lx\n", __func__, max_mapnr);
130 printk(KERN_INFO "%s: min_low_pfn: %#lx\n", __func__, min_low_pfn);
131 printk(KERN_INFO "%s: max_low_pfn: %#lx\n", __func__, max_low_pfn);
Michal Simek83a92522011-12-19 13:46:35 +0100132 printk(KERN_INFO "%s: max_pfn: %#lx\n", __func__, max_pfn);
Michal Simeka95d0e12009-03-27 14:25:29 +0100133
134 /*
135 * Find an area to use for the bootmem bitmap.
136 * We look for the first area which is at least
137 * 128kB in length (128kB is enough for a bitmap
138 * for 4GB of memory, using 4kB pages), plus 1 page
139 * (in case the address isn't page-aligned).
140 */
Michal Simeke0581662010-05-27 11:17:35 +0200141 map_size = init_bootmem_node(NODE_DATA(0),
Michal Simek8f37b6c2009-08-11 12:36:12 +0200142 PFN_UP(TOPHYS((u32)klimit)), min_low_pfn, max_low_pfn);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000143 memblock_reserve(PFN_UP(TOPHYS((u32)klimit)) << PAGE_SHIFT, map_size);
Michal Simeka95d0e12009-03-27 14:25:29 +0100144
145 /* free bootmem is whole main memory */
Michal Simek83a92522011-12-19 13:46:35 +0100146 free_bootmem(memory_start, lowmem_size);
Michal Simeka95d0e12009-03-27 14:25:29 +0100147
148 /* reserve allocate blocks */
Benjamin Herrenschmidt76bfcc82010-08-04 14:13:06 +1000149 for_each_memblock(reserved, reg) {
Michal Simek83a92522011-12-19 13:46:35 +0100150 unsigned long top = reg->base + reg->size - 1;
151
152 pr_debug("reserved - 0x%08x-0x%08x, %lx, %lx\n",
153 (u32) reg->base, (u32) reg->size, top,
154 memory_start + lowmem_size - 1);
155
156 if (top <= (memory_start + lowmem_size - 1)) {
157 reserve_bootmem(reg->base, reg->size, BOOTMEM_DEFAULT);
158 } else if (reg->base < (memory_start + lowmem_size - 1)) {
159 unsigned long trunc_size = memory_start + lowmem_size -
160 reg->base;
161 reserve_bootmem(reg->base, trunc_size, BOOTMEM_DEFAULT);
162 }
Michal Simeka95d0e12009-03-27 14:25:29 +0100163 }
Michal Simek83a92522011-12-19 13:46:35 +0100164
Michal Simek4dc60832009-05-26 16:30:12 +0200165#ifdef CONFIG_MMU
166 init_bootmem_done = 1;
167#endif
Michal Simeka95d0e12009-03-27 14:25:29 +0100168 paging_init();
169}
170
171void free_init_pages(char *what, unsigned long begin, unsigned long end)
172{
173 unsigned long addr;
174
175 for (addr = begin; addr < end; addr += PAGE_SIZE) {
176 ClearPageReserved(virt_to_page(addr));
177 init_page_count(virt_to_page(addr));
Michal Simeka95d0e12009-03-27 14:25:29 +0100178 free_page(addr);
179 totalram_pages++;
180 }
181 printk(KERN_INFO "Freeing %s: %ldk freed\n", what, (end - begin) >> 10);
182}
183
184#ifdef CONFIG_BLK_DEV_INITRD
185void free_initrd_mem(unsigned long start, unsigned long end)
186{
187 int pages = 0;
188 for (; start < end; start += PAGE_SIZE) {
189 ClearPageReserved(virt_to_page(start));
190 init_page_count(virt_to_page(start));
191 free_page(start);
192 totalram_pages++;
193 pages++;
194 }
Lennart Sorensend6f61772009-09-17 11:47:06 -0400195 printk(KERN_NOTICE "Freeing initrd memory: %dk freed\n",
196 (int)(pages * (PAGE_SIZE / 1024)));
Michal Simeka95d0e12009-03-27 14:25:29 +0100197}
198#endif
199
200void free_initmem(void)
201{
202 free_init_pages("unused kernel memory",
203 (unsigned long)(&__init_begin),
204 (unsigned long)(&__init_end));
205}
206
Michal Simeka95d0e12009-03-27 14:25:29 +0100207void __init mem_init(void)
208{
Michal Simek83a92522011-12-19 13:46:35 +0100209 high_memory = (void *)__va(memory_start + lowmem_size - 1);
210
Michal Simeka95d0e12009-03-27 14:25:29 +0100211 /* this will put all memory onto the freelists */
212 totalram_pages += free_all_bootmem();
213
214 printk(KERN_INFO "Memory: %luk/%luk available\n",
Geert Uytterhoevencc013a82009-09-21 17:02:36 -0700215 nr_free_pages() << (PAGE_SHIFT-10),
Michal Simeka95d0e12009-03-27 14:25:29 +0100216 num_physpages << (PAGE_SHIFT-10));
Michal Simek4dc60832009-05-26 16:30:12 +0200217 mem_init_done = 1;
Michal Simeka95d0e12009-03-27 14:25:29 +0100218}
219
Michal Simek4dc60832009-05-26 16:30:12 +0200220#ifndef CONFIG_MMU
Michal Simek79bf3a12010-01-20 15:17:08 +0100221int page_is_ram(unsigned long pfn)
222{
223 return __range_ok(pfn, 0);
224}
Michal Simek4dc60832009-05-26 16:30:12 +0200225#else
226int page_is_ram(unsigned long pfn)
227{
228 return pfn < max_low_pfn;
229}
230
231/*
232 * Check for command-line options that affect what MMU_init will do.
233 */
234static void mm_cmdline_setup(void)
235{
236 unsigned long maxmem = 0;
237 char *p = cmd_line;
238
239 /* Look for mem= option on command line */
240 p = strstr(cmd_line, "mem=");
241 if (p) {
242 p += 4;
243 maxmem = memparse(p, &p);
244 if (maxmem && memory_size > maxmem) {
245 memory_size = maxmem;
Michal Simekda5ab112010-09-11 00:07:06 -0700246 memblock.memory.regions[0].size = memory_size;
Michal Simek4dc60832009-05-26 16:30:12 +0200247 }
248 }
249}
250
251/*
252 * MMU_init_hw does the chip-specific initialization of the MMU hardware.
253 */
254static void __init mmu_init_hw(void)
255{
256 /*
257 * The Zone Protection Register (ZPR) defines how protection will
258 * be applied to every page which is a member of a given zone. At
259 * present, we utilize only two of the zones.
260 * The zone index bits (of ZSEL) in the PTE are used for software
261 * indicators, except the LSB. For user access, zone 1 is used,
262 * for kernel access, zone 0 is used. We set all but zone 1
263 * to zero, allowing only kernel access as indicated in the PTE.
264 * For zone 1, we set a 01 binary (a value of 10 will not work)
265 * to allow user access as indicated in the PTE. This also allows
266 * kernel access as indicated in the PTE.
267 */
268 __asm__ __volatile__ ("ori r11, r0, 0x10000000;" \
269 "mts rzpr, r11;"
270 : : : "r11");
271}
272
273/*
274 * MMU_init sets up the basic memory mappings for the kernel,
275 * including both RAM and possibly some I/O regions,
276 * and sets up the page tables and the MMU hardware ready to go.
277 */
278
279/* called from head.S */
280asmlinkage void __init mmu_init(void)
281{
282 unsigned int kstart, ksize;
283
Yinghai Lu95f72d12010-07-12 14:36:09 +1000284 if (!memblock.reserved.cnt) {
Michal Simek4dc60832009-05-26 16:30:12 +0200285 printk(KERN_EMERG "Error memory count\n");
286 machine_restart(NULL);
287 }
288
Michal Simekda5ab112010-09-11 00:07:06 -0700289 if ((u32) memblock.memory.regions[0].size < 0x1000000) {
Michal Simek4dc60832009-05-26 16:30:12 +0200290 printk(KERN_EMERG "Memory must be greater than 16MB\n");
291 machine_restart(NULL);
292 }
293 /* Find main memory where the kernel is */
Michal Simekda5ab112010-09-11 00:07:06 -0700294 memory_start = (u32) memblock.memory.regions[0].base;
Michal Simek83a92522011-12-19 13:46:35 +0100295 lowmem_size = memory_size = (u32) memblock.memory.regions[0].size;
296
297 if (lowmem_size > CONFIG_LOWMEM_SIZE) {
298 lowmem_size = CONFIG_LOWMEM_SIZE;
299 memory_size = lowmem_size;
300 }
Michal Simek4dc60832009-05-26 16:30:12 +0200301
302 mm_cmdline_setup(); /* FIXME parse args from command line - not used */
303
304 /*
305 * Map out the kernel text/data/bss from the available physical
306 * memory.
307 */
308 kstart = __pa(CONFIG_KERNEL_START); /* kernel start */
309 /* kernel size */
310 ksize = PAGE_ALIGN(((u32)_end - (u32)CONFIG_KERNEL_START));
Yinghai Lu95f72d12010-07-12 14:36:09 +1000311 memblock_reserve(kstart, ksize);
Michal Simek4dc60832009-05-26 16:30:12 +0200312
313#if defined(CONFIG_BLK_DEV_INITRD)
314 /* Remove the init RAM disk from the available memory. */
315/* if (initrd_start) {
316 mem_pieces_remove(&phys_avail, __pa(initrd_start),
317 initrd_end - initrd_start, 1);
318 }*/
319#endif /* CONFIG_BLK_DEV_INITRD */
320
321 /* Initialize the MMU hardware */
322 mmu_init_hw();
323
324 /* Map in all of RAM starting at CONFIG_KERNEL_START */
325 mapin_ram();
326
Michal Simek41938762011-12-15 14:33:32 +0100327 /* Extend vmalloc and ioremap area as big as possible */
328 ioremap_base = ioremap_bot = FIXADDR_START;
329
Michal Simek4dc60832009-05-26 16:30:12 +0200330 /* Initialize the context management stuff */
331 mmu_context_init();
Michal Simek83a92522011-12-19 13:46:35 +0100332
333 /* Shortly after that, the entire linear mapping will be available */
334 /* This will also cause that unflatten device tree will be allocated
335 * inside 768MB limit */
336 memblock_set_current_limit(memory_start + lowmem_size - 1);
Michal Simek4dc60832009-05-26 16:30:12 +0200337}
338
339/* This is only called until mem_init is done. */
340void __init *early_get_page(void)
341{
342 void *p;
343 if (init_bootmem_done) {
344 p = alloc_bootmem_pages(PAGE_SIZE);
345 } else {
346 /*
347 * Mem start + 32MB -> here is limit
348 * because of mem mapping from head.S
349 */
Yinghai Lu95f72d12010-07-12 14:36:09 +1000350 p = __va(memblock_alloc_base(PAGE_SIZE, PAGE_SIZE,
Michal Simek4dc60832009-05-26 16:30:12 +0200351 memory_start + 0x2000000));
352 }
353 return p;
354}
Michal Simeka84642a2010-01-14 17:03:49 +0100355
Michal Simek79bf3a12010-01-20 15:17:08 +0100356#endif /* CONFIG_MMU */
357
Michal Simeka84642a2010-01-14 17:03:49 +0100358void * __init_refok alloc_maybe_bootmem(size_t size, gfp_t mask)
359{
360 if (mem_init_done)
361 return kmalloc(size, mask);
362 else
363 return alloc_bootmem(size);
364}
365
366void * __init_refok zalloc_maybe_bootmem(size_t size, gfp_t mask)
367{
368 void *p;
369
370 if (mem_init_done)
371 p = kzalloc(size, mask);
372 else {
373 p = alloc_bootmem(size);
374 if (p)
375 memset(p, 0, size);
376 }
377 return p;
378}