blob: cbcdf24b1c891a3344cc59a1de640e4795b5c26c [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 Simek83299792011-12-19 13:47:03 +0100209 pg_data_t *pgdat;
210 unsigned long reservedpages = 0, codesize, initsize, datasize, bsssize;
211
Michal Simek83a92522011-12-19 13:46:35 +0100212 high_memory = (void *)__va(memory_start + lowmem_size - 1);
213
Michal Simeka95d0e12009-03-27 14:25:29 +0100214 /* this will put all memory onto the freelists */
215 totalram_pages += free_all_bootmem();
216
Michal Simek83299792011-12-19 13:47:03 +0100217 for_each_online_pgdat(pgdat) {
218 unsigned long i;
219 struct page *page;
220
221 for (i = 0; i < pgdat->node_spanned_pages; i++) {
222 if (!pfn_valid(pgdat->node_start_pfn + i))
223 continue;
224 page = pgdat_page_nr(pgdat, i);
225 if (PageReserved(page))
226 reservedpages++;
227 }
228 }
229
230 codesize = (unsigned long)&_sdata - (unsigned long)&_stext;
231 datasize = (unsigned long)&_edata - (unsigned long)&_sdata;
232 initsize = (unsigned long)&__init_end - (unsigned long)&__init_begin;
233 bsssize = (unsigned long)&__bss_stop - (unsigned long)&__bss_start;
234
235 pr_info("Memory: %luk/%luk available (%luk kernel code, "
236 "%luk reserved, %luk data, %luk bss, %luk init)\n",
237 nr_free_pages() << (PAGE_SHIFT-10),
238 num_physpages << (PAGE_SHIFT-10),
239 codesize >> 10,
240 reservedpages << (PAGE_SHIFT-10),
241 datasize >> 10,
242 bsssize >> 10,
243 initsize >> 10);
244
245#ifdef CONFIG_MMU
246 pr_info("Kernel virtual memory layout:\n");
247 pr_info(" * 0x%08lx..0x%08lx : fixmap\n", FIXADDR_START, FIXADDR_TOP);
248 pr_info(" * 0x%08lx..0x%08lx : early ioremap\n",
249 ioremap_bot, ioremap_base);
250 pr_info(" * 0x%08lx..0x%08lx : vmalloc & ioremap\n",
251 (unsigned long)VMALLOC_START, VMALLOC_END);
252#endif
Michal Simek4dc60832009-05-26 16:30:12 +0200253 mem_init_done = 1;
Michal Simeka95d0e12009-03-27 14:25:29 +0100254}
255
Michal Simek4dc60832009-05-26 16:30:12 +0200256#ifndef CONFIG_MMU
Michal Simek79bf3a12010-01-20 15:17:08 +0100257int page_is_ram(unsigned long pfn)
258{
259 return __range_ok(pfn, 0);
260}
Michal Simek4dc60832009-05-26 16:30:12 +0200261#else
262int page_is_ram(unsigned long pfn)
263{
264 return pfn < max_low_pfn;
265}
266
267/*
268 * Check for command-line options that affect what MMU_init will do.
269 */
270static void mm_cmdline_setup(void)
271{
272 unsigned long maxmem = 0;
273 char *p = cmd_line;
274
275 /* Look for mem= option on command line */
276 p = strstr(cmd_line, "mem=");
277 if (p) {
278 p += 4;
279 maxmem = memparse(p, &p);
280 if (maxmem && memory_size > maxmem) {
281 memory_size = maxmem;
Michal Simekda5ab112010-09-11 00:07:06 -0700282 memblock.memory.regions[0].size = memory_size;
Michal Simek4dc60832009-05-26 16:30:12 +0200283 }
284 }
285}
286
287/*
288 * MMU_init_hw does the chip-specific initialization of the MMU hardware.
289 */
290static void __init mmu_init_hw(void)
291{
292 /*
293 * The Zone Protection Register (ZPR) defines how protection will
294 * be applied to every page which is a member of a given zone. At
295 * present, we utilize only two of the zones.
296 * The zone index bits (of ZSEL) in the PTE are used for software
297 * indicators, except the LSB. For user access, zone 1 is used,
298 * for kernel access, zone 0 is used. We set all but zone 1
299 * to zero, allowing only kernel access as indicated in the PTE.
300 * For zone 1, we set a 01 binary (a value of 10 will not work)
301 * to allow user access as indicated in the PTE. This also allows
302 * kernel access as indicated in the PTE.
303 */
304 __asm__ __volatile__ ("ori r11, r0, 0x10000000;" \
305 "mts rzpr, r11;"
306 : : : "r11");
307}
308
309/*
310 * MMU_init sets up the basic memory mappings for the kernel,
311 * including both RAM and possibly some I/O regions,
312 * and sets up the page tables and the MMU hardware ready to go.
313 */
314
315/* called from head.S */
316asmlinkage void __init mmu_init(void)
317{
318 unsigned int kstart, ksize;
319
Yinghai Lu95f72d12010-07-12 14:36:09 +1000320 if (!memblock.reserved.cnt) {
Michal Simek4dc60832009-05-26 16:30:12 +0200321 printk(KERN_EMERG "Error memory count\n");
322 machine_restart(NULL);
323 }
324
Michal Simekda5ab112010-09-11 00:07:06 -0700325 if ((u32) memblock.memory.regions[0].size < 0x1000000) {
Michal Simek4dc60832009-05-26 16:30:12 +0200326 printk(KERN_EMERG "Memory must be greater than 16MB\n");
327 machine_restart(NULL);
328 }
329 /* Find main memory where the kernel is */
Michal Simekda5ab112010-09-11 00:07:06 -0700330 memory_start = (u32) memblock.memory.regions[0].base;
Michal Simek83a92522011-12-19 13:46:35 +0100331 lowmem_size = memory_size = (u32) memblock.memory.regions[0].size;
332
333 if (lowmem_size > CONFIG_LOWMEM_SIZE) {
334 lowmem_size = CONFIG_LOWMEM_SIZE;
335 memory_size = lowmem_size;
336 }
Michal Simek4dc60832009-05-26 16:30:12 +0200337
338 mm_cmdline_setup(); /* FIXME parse args from command line - not used */
339
340 /*
341 * Map out the kernel text/data/bss from the available physical
342 * memory.
343 */
344 kstart = __pa(CONFIG_KERNEL_START); /* kernel start */
345 /* kernel size */
346 ksize = PAGE_ALIGN(((u32)_end - (u32)CONFIG_KERNEL_START));
Yinghai Lu95f72d12010-07-12 14:36:09 +1000347 memblock_reserve(kstart, ksize);
Michal Simek4dc60832009-05-26 16:30:12 +0200348
349#if defined(CONFIG_BLK_DEV_INITRD)
350 /* Remove the init RAM disk from the available memory. */
351/* if (initrd_start) {
352 mem_pieces_remove(&phys_avail, __pa(initrd_start),
353 initrd_end - initrd_start, 1);
354 }*/
355#endif /* CONFIG_BLK_DEV_INITRD */
356
357 /* Initialize the MMU hardware */
358 mmu_init_hw();
359
360 /* Map in all of RAM starting at CONFIG_KERNEL_START */
361 mapin_ram();
362
Michal Simek41938762011-12-15 14:33:32 +0100363 /* Extend vmalloc and ioremap area as big as possible */
364 ioremap_base = ioremap_bot = FIXADDR_START;
365
Michal Simek4dc60832009-05-26 16:30:12 +0200366 /* Initialize the context management stuff */
367 mmu_context_init();
Michal Simek83a92522011-12-19 13:46:35 +0100368
369 /* Shortly after that, the entire linear mapping will be available */
370 /* This will also cause that unflatten device tree will be allocated
371 * inside 768MB limit */
372 memblock_set_current_limit(memory_start + lowmem_size - 1);
Michal Simek4dc60832009-05-26 16:30:12 +0200373}
374
375/* This is only called until mem_init is done. */
376void __init *early_get_page(void)
377{
378 void *p;
379 if (init_bootmem_done) {
380 p = alloc_bootmem_pages(PAGE_SIZE);
381 } else {
382 /*
383 * Mem start + 32MB -> here is limit
384 * because of mem mapping from head.S
385 */
Yinghai Lu95f72d12010-07-12 14:36:09 +1000386 p = __va(memblock_alloc_base(PAGE_SIZE, PAGE_SIZE,
Michal Simek4dc60832009-05-26 16:30:12 +0200387 memory_start + 0x2000000));
388 }
389 return p;
390}
Michal Simeka84642a2010-01-14 17:03:49 +0100391
Michal Simek79bf3a12010-01-20 15:17:08 +0100392#endif /* CONFIG_MMU */
393
Michal Simeka84642a2010-01-14 17:03:49 +0100394void * __init_refok alloc_maybe_bootmem(size_t size, gfp_t mask)
395{
396 if (mem_init_done)
397 return kmalloc(size, mask);
398 else
399 return alloc_bootmem(size);
400}
401
402void * __init_refok zalloc_maybe_bootmem(size_t size, gfp_t mask)
403{
404 void *p;
405
406 if (mem_init_done)
407 p = kzalloc(size, mask);
408 else {
409 p = alloc_bootmem(size);
410 if (p)
411 memset(p, 0, size);
412 }
413 return p;
414}