blob: 43b3f604bafea7e73cdc58e4bd33f8bfa2df137f [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 Simekbaab8a82011-12-15 15:47:16 +010071 /* We don't have holes in memory map */
72 free_area_init_nodes(zones_size);
Michal Simeka95d0e12009-03-27 14:25:29 +010073}
74
75void __init setup_memory(void)
76{
Michal Simeka95d0e12009-03-27 14:25:29 +010077 unsigned long map_size;
Benjamin Herrenschmidt76bfcc82010-08-04 14:13:06 +100078 struct memblock_region *reg;
79
Michal Simek4dc60832009-05-26 16:30:12 +020080#ifndef CONFIG_MMU
Michal Simeka95d0e12009-03-27 14:25:29 +010081 u32 kernel_align_start, kernel_align_size;
82
83 /* Find main memory where is the kernel */
Benjamin Herrenschmidt76bfcc82010-08-04 14:13:06 +100084 for_each_memblock(memory, reg) {
85 memory_start = (u32)reg->base;
Michal Simek83a92522011-12-19 13:46:35 +010086 lowmem_size = reg->size;
Michal Simeka95d0e12009-03-27 14:25:29 +010087 if ((memory_start <= (u32)_text) &&
Michal Simek83a92522011-12-19 13:46:35 +010088 ((u32)_text <= (memory_start + lowmem_size - 1))) {
89 memory_size = lowmem_size;
Michal Simeka95d0e12009-03-27 14:25:29 +010090 PAGE_OFFSET = memory_start;
Michal Simek83a92522011-12-19 13:46:35 +010091 printk(KERN_INFO "%s: Main mem: 0x%x, "
Michal Simekdb6e3f92009-07-06 08:21:09 +020092 "size 0x%08x\n", __func__, (u32) memory_start,
Michal Simek83a92522011-12-19 13:46:35 +010093 (u32) memory_size);
Michal Simeka95d0e12009-03-27 14:25:29 +010094 break;
95 }
96 }
97
Michal Simek83a92522011-12-19 13:46:35 +010098 if (!memory_start || !memory_size) {
99 panic("%s: Missing memory setting 0x%08x, size=0x%08x\n",
100 __func__, (u32) memory_start, (u32) memory_size);
Michal Simeka95d0e12009-03-27 14:25:29 +0100101 }
102
103 /* reservation of region where is the kernel */
104 kernel_align_start = PAGE_DOWN((u32)_text);
105 /* ALIGN can be remove because _end in vmlinux.lds.S is align */
106 kernel_align_size = PAGE_UP((u32)klimit) - kernel_align_start;
Michal Simek83a92522011-12-19 13:46:35 +0100107 printk(KERN_INFO "%s: kernel addr:0x%08x-0x%08x size=0x%08x\n",
Michal Simeka95d0e12009-03-27 14:25:29 +0100108 __func__, kernel_align_start, kernel_align_start
109 + kernel_align_size, kernel_align_size);
Michal Simek83a92522011-12-19 13:46:35 +0100110 memblock_reserve(kernel_align_start, kernel_align_size);
Michal Simek4dc60832009-05-26 16:30:12 +0200111#endif
Michal Simeka95d0e12009-03-27 14:25:29 +0100112 /*
113 * Kernel:
114 * start: base phys address of kernel - page align
115 * end: base phys address of kernel - page align
116 *
117 * min_low_pfn - the first page (mm/bootmem.c - node_boot_start)
118 * max_low_pfn
119 * max_mapnr - the first unused page (mm/bootmem.c - node_low_pfn)
120 * num_physpages - number of all pages
121 */
122
123 /* memory start is from the kernel end (aligned) to higher addr */
124 min_low_pfn = memory_start >> PAGE_SHIFT; /* minimum for allocation */
125 /* RAM is assumed contiguous */
126 num_physpages = max_mapnr = memory_size >> PAGE_SHIFT;
Michal Simek83a92522011-12-19 13:46:35 +0100127 max_low_pfn = ((u64)memory_start + (u64)lowmem_size) >> PAGE_SHIFT;
128 max_pfn = ((u64)memory_start + (u64)memory_size) >> PAGE_SHIFT;
Michal Simeka95d0e12009-03-27 14:25:29 +0100129
130 printk(KERN_INFO "%s: max_mapnr: %#lx\n", __func__, max_mapnr);
131 printk(KERN_INFO "%s: min_low_pfn: %#lx\n", __func__, min_low_pfn);
132 printk(KERN_INFO "%s: max_low_pfn: %#lx\n", __func__, max_low_pfn);
Michal Simek83a92522011-12-19 13:46:35 +0100133 printk(KERN_INFO "%s: max_pfn: %#lx\n", __func__, max_pfn);
Michal Simeka95d0e12009-03-27 14:25:29 +0100134
135 /*
136 * Find an area to use for the bootmem bitmap.
137 * We look for the first area which is at least
138 * 128kB in length (128kB is enough for a bitmap
139 * for 4GB of memory, using 4kB pages), plus 1 page
140 * (in case the address isn't page-aligned).
141 */
Michal Simeke0581662010-05-27 11:17:35 +0200142 map_size = init_bootmem_node(NODE_DATA(0),
Michal Simek8f37b6c2009-08-11 12:36:12 +0200143 PFN_UP(TOPHYS((u32)klimit)), min_low_pfn, max_low_pfn);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000144 memblock_reserve(PFN_UP(TOPHYS((u32)klimit)) << PAGE_SHIFT, map_size);
Michal Simeka95d0e12009-03-27 14:25:29 +0100145
Michal Simekbaab8a82011-12-15 15:47:16 +0100146 /* Add active regions with valid PFNs */
147 for_each_memblock(memory, reg) {
148 unsigned long start_pfn, end_pfn;
149
150 start_pfn = memblock_region_memory_base_pfn(reg);
151 end_pfn = memblock_region_memory_end_pfn(reg);
152 memblock_set_node(start_pfn << PAGE_SHIFT,
153 (end_pfn - start_pfn) << PAGE_SHIFT, 0);
154 }
155
Michal Simeka95d0e12009-03-27 14:25:29 +0100156 /* free bootmem is whole main memory */
Michal Simekbaab8a82011-12-15 15:47:16 +0100157 free_bootmem_with_active_regions(0, max_low_pfn);
Michal Simeka95d0e12009-03-27 14:25:29 +0100158
159 /* reserve allocate blocks */
Benjamin Herrenschmidt76bfcc82010-08-04 14:13:06 +1000160 for_each_memblock(reserved, reg) {
Michal Simek83a92522011-12-19 13:46:35 +0100161 unsigned long top = reg->base + reg->size - 1;
162
163 pr_debug("reserved - 0x%08x-0x%08x, %lx, %lx\n",
164 (u32) reg->base, (u32) reg->size, top,
165 memory_start + lowmem_size - 1);
166
167 if (top <= (memory_start + lowmem_size - 1)) {
168 reserve_bootmem(reg->base, reg->size, BOOTMEM_DEFAULT);
169 } else if (reg->base < (memory_start + lowmem_size - 1)) {
170 unsigned long trunc_size = memory_start + lowmem_size -
171 reg->base;
172 reserve_bootmem(reg->base, trunc_size, BOOTMEM_DEFAULT);
173 }
Michal Simeka95d0e12009-03-27 14:25:29 +0100174 }
Michal Simek83a92522011-12-19 13:46:35 +0100175
Michal Simekbaab8a82011-12-15 15:47:16 +0100176 /* XXX need to clip this if using highmem? */
177 sparse_memory_present_with_active_regions(0);
178
Michal Simek4dc60832009-05-26 16:30:12 +0200179#ifdef CONFIG_MMU
180 init_bootmem_done = 1;
181#endif
Michal Simeka95d0e12009-03-27 14:25:29 +0100182 paging_init();
183}
184
185void free_init_pages(char *what, unsigned long begin, unsigned long end)
186{
187 unsigned long addr;
188
189 for (addr = begin; addr < end; addr += PAGE_SIZE) {
190 ClearPageReserved(virt_to_page(addr));
191 init_page_count(virt_to_page(addr));
Michal Simeka95d0e12009-03-27 14:25:29 +0100192 free_page(addr);
193 totalram_pages++;
194 }
195 printk(KERN_INFO "Freeing %s: %ldk freed\n", what, (end - begin) >> 10);
196}
197
198#ifdef CONFIG_BLK_DEV_INITRD
199void free_initrd_mem(unsigned long start, unsigned long end)
200{
201 int pages = 0;
202 for (; start < end; start += PAGE_SIZE) {
203 ClearPageReserved(virt_to_page(start));
204 init_page_count(virt_to_page(start));
205 free_page(start);
206 totalram_pages++;
207 pages++;
208 }
Lennart Sorensend6f61772009-09-17 11:47:06 -0400209 printk(KERN_NOTICE "Freeing initrd memory: %dk freed\n",
210 (int)(pages * (PAGE_SIZE / 1024)));
Michal Simeka95d0e12009-03-27 14:25:29 +0100211}
212#endif
213
214void free_initmem(void)
215{
216 free_init_pages("unused kernel memory",
217 (unsigned long)(&__init_begin),
218 (unsigned long)(&__init_end));
219}
220
Michal Simeka95d0e12009-03-27 14:25:29 +0100221void __init mem_init(void)
222{
Michal Simek83299792011-12-19 13:47:03 +0100223 pg_data_t *pgdat;
224 unsigned long reservedpages = 0, codesize, initsize, datasize, bsssize;
225
Michal Simek83a92522011-12-19 13:46:35 +0100226 high_memory = (void *)__va(memory_start + lowmem_size - 1);
227
Michal Simeka95d0e12009-03-27 14:25:29 +0100228 /* this will put all memory onto the freelists */
229 totalram_pages += free_all_bootmem();
230
Michal Simek83299792011-12-19 13:47:03 +0100231 for_each_online_pgdat(pgdat) {
232 unsigned long i;
233 struct page *page;
234
235 for (i = 0; i < pgdat->node_spanned_pages; i++) {
236 if (!pfn_valid(pgdat->node_start_pfn + i))
237 continue;
238 page = pgdat_page_nr(pgdat, i);
239 if (PageReserved(page))
240 reservedpages++;
241 }
242 }
243
244 codesize = (unsigned long)&_sdata - (unsigned long)&_stext;
245 datasize = (unsigned long)&_edata - (unsigned long)&_sdata;
246 initsize = (unsigned long)&__init_end - (unsigned long)&__init_begin;
247 bsssize = (unsigned long)&__bss_stop - (unsigned long)&__bss_start;
248
249 pr_info("Memory: %luk/%luk available (%luk kernel code, "
250 "%luk reserved, %luk data, %luk bss, %luk init)\n",
251 nr_free_pages() << (PAGE_SHIFT-10),
252 num_physpages << (PAGE_SHIFT-10),
253 codesize >> 10,
254 reservedpages << (PAGE_SHIFT-10),
255 datasize >> 10,
256 bsssize >> 10,
257 initsize >> 10);
258
259#ifdef CONFIG_MMU
260 pr_info("Kernel virtual memory layout:\n");
261 pr_info(" * 0x%08lx..0x%08lx : fixmap\n", FIXADDR_START, FIXADDR_TOP);
262 pr_info(" * 0x%08lx..0x%08lx : early ioremap\n",
263 ioremap_bot, ioremap_base);
264 pr_info(" * 0x%08lx..0x%08lx : vmalloc & ioremap\n",
265 (unsigned long)VMALLOC_START, VMALLOC_END);
266#endif
Michal Simek4dc60832009-05-26 16:30:12 +0200267 mem_init_done = 1;
Michal Simeka95d0e12009-03-27 14:25:29 +0100268}
269
Michal Simek4dc60832009-05-26 16:30:12 +0200270#ifndef CONFIG_MMU
Michal Simek79bf3a12010-01-20 15:17:08 +0100271int page_is_ram(unsigned long pfn)
272{
273 return __range_ok(pfn, 0);
274}
Michal Simek4dc60832009-05-26 16:30:12 +0200275#else
276int page_is_ram(unsigned long pfn)
277{
278 return pfn < max_low_pfn;
279}
280
281/*
282 * Check for command-line options that affect what MMU_init will do.
283 */
284static void mm_cmdline_setup(void)
285{
286 unsigned long maxmem = 0;
287 char *p = cmd_line;
288
289 /* Look for mem= option on command line */
290 p = strstr(cmd_line, "mem=");
291 if (p) {
292 p += 4;
293 maxmem = memparse(p, &p);
294 if (maxmem && memory_size > maxmem) {
295 memory_size = maxmem;
Michal Simekda5ab112010-09-11 00:07:06 -0700296 memblock.memory.regions[0].size = memory_size;
Michal Simek4dc60832009-05-26 16:30:12 +0200297 }
298 }
299}
300
301/*
302 * MMU_init_hw does the chip-specific initialization of the MMU hardware.
303 */
304static void __init mmu_init_hw(void)
305{
306 /*
307 * The Zone Protection Register (ZPR) defines how protection will
308 * be applied to every page which is a member of a given zone. At
309 * present, we utilize only two of the zones.
310 * The zone index bits (of ZSEL) in the PTE are used for software
311 * indicators, except the LSB. For user access, zone 1 is used,
312 * for kernel access, zone 0 is used. We set all but zone 1
313 * to zero, allowing only kernel access as indicated in the PTE.
314 * For zone 1, we set a 01 binary (a value of 10 will not work)
315 * to allow user access as indicated in the PTE. This also allows
316 * kernel access as indicated in the PTE.
317 */
318 __asm__ __volatile__ ("ori r11, r0, 0x10000000;" \
319 "mts rzpr, r11;"
320 : : : "r11");
321}
322
323/*
324 * MMU_init sets up the basic memory mappings for the kernel,
325 * including both RAM and possibly some I/O regions,
326 * and sets up the page tables and the MMU hardware ready to go.
327 */
328
329/* called from head.S */
330asmlinkage void __init mmu_init(void)
331{
332 unsigned int kstart, ksize;
333
Yinghai Lu95f72d12010-07-12 14:36:09 +1000334 if (!memblock.reserved.cnt) {
Michal Simek4dc60832009-05-26 16:30:12 +0200335 printk(KERN_EMERG "Error memory count\n");
336 machine_restart(NULL);
337 }
338
Michal Simekda5ab112010-09-11 00:07:06 -0700339 if ((u32) memblock.memory.regions[0].size < 0x1000000) {
Michal Simek4dc60832009-05-26 16:30:12 +0200340 printk(KERN_EMERG "Memory must be greater than 16MB\n");
341 machine_restart(NULL);
342 }
343 /* Find main memory where the kernel is */
Michal Simekda5ab112010-09-11 00:07:06 -0700344 memory_start = (u32) memblock.memory.regions[0].base;
Michal Simek83a92522011-12-19 13:46:35 +0100345 lowmem_size = memory_size = (u32) memblock.memory.regions[0].size;
346
347 if (lowmem_size > CONFIG_LOWMEM_SIZE) {
348 lowmem_size = CONFIG_LOWMEM_SIZE;
349 memory_size = lowmem_size;
350 }
Michal Simek4dc60832009-05-26 16:30:12 +0200351
352 mm_cmdline_setup(); /* FIXME parse args from command line - not used */
353
354 /*
355 * Map out the kernel text/data/bss from the available physical
356 * memory.
357 */
358 kstart = __pa(CONFIG_KERNEL_START); /* kernel start */
359 /* kernel size */
360 ksize = PAGE_ALIGN(((u32)_end - (u32)CONFIG_KERNEL_START));
Yinghai Lu95f72d12010-07-12 14:36:09 +1000361 memblock_reserve(kstart, ksize);
Michal Simek4dc60832009-05-26 16:30:12 +0200362
363#if defined(CONFIG_BLK_DEV_INITRD)
364 /* Remove the init RAM disk from the available memory. */
365/* if (initrd_start) {
366 mem_pieces_remove(&phys_avail, __pa(initrd_start),
367 initrd_end - initrd_start, 1);
368 }*/
369#endif /* CONFIG_BLK_DEV_INITRD */
370
371 /* Initialize the MMU hardware */
372 mmu_init_hw();
373
374 /* Map in all of RAM starting at CONFIG_KERNEL_START */
375 mapin_ram();
376
Michal Simek41938762011-12-15 14:33:32 +0100377 /* Extend vmalloc and ioremap area as big as possible */
378 ioremap_base = ioremap_bot = FIXADDR_START;
379
Michal Simek4dc60832009-05-26 16:30:12 +0200380 /* Initialize the context management stuff */
381 mmu_context_init();
Michal Simek83a92522011-12-19 13:46:35 +0100382
383 /* Shortly after that, the entire linear mapping will be available */
384 /* This will also cause that unflatten device tree will be allocated
385 * inside 768MB limit */
386 memblock_set_current_limit(memory_start + lowmem_size - 1);
Michal Simek4dc60832009-05-26 16:30:12 +0200387}
388
389/* This is only called until mem_init is done. */
390void __init *early_get_page(void)
391{
392 void *p;
393 if (init_bootmem_done) {
394 p = alloc_bootmem_pages(PAGE_SIZE);
395 } else {
396 /*
397 * Mem start + 32MB -> here is limit
398 * because of mem mapping from head.S
399 */
Yinghai Lu95f72d12010-07-12 14:36:09 +1000400 p = __va(memblock_alloc_base(PAGE_SIZE, PAGE_SIZE,
Michal Simek4dc60832009-05-26 16:30:12 +0200401 memory_start + 0x2000000));
402 }
403 return p;
404}
Michal Simeka84642a2010-01-14 17:03:49 +0100405
Michal Simek79bf3a12010-01-20 15:17:08 +0100406#endif /* CONFIG_MMU */
407
Michal Simeka84642a2010-01-14 17:03:49 +0100408void * __init_refok alloc_maybe_bootmem(size_t size, gfp_t mask)
409{
410 if (mem_init_done)
411 return kmalloc(size, mask);
412 else
413 return alloc_bootmem(size);
414}
415
416void * __init_refok zalloc_maybe_bootmem(size_t size, gfp_t mask)
417{
418 void *p;
419
420 if (mem_init_done)
421 p = kzalloc(size, mask);
422 else {
423 p = alloc_bootmem(size);
424 if (p)
425 memset(p, 0, size);
426 }
427 return p;
428}