ARM: memblock: convert memory detail printing to use memblock
[linux/fpc-iii.git] / arch / arm / mm / init.c
blob58b90ad4949fcc7f4bafa973bc0b7084b80e6bb3
1 /*
2 * linux/arch/arm/mm/init.c
4 * Copyright (C) 1995-2005 Russell King
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10 #include <linux/kernel.h>
11 #include <linux/errno.h>
12 #include <linux/swap.h>
13 #include <linux/init.h>
14 #include <linux/bootmem.h>
15 #include <linux/mman.h>
16 #include <linux/nodemask.h>
17 #include <linux/initrd.h>
18 #include <linux/highmem.h>
19 #include <linux/gfp.h>
20 #include <linux/memblock.h>
21 #include <linux/sort.h>
23 #include <asm/mach-types.h>
24 #include <asm/sections.h>
25 #include <asm/setup.h>
26 #include <asm/sizes.h>
27 #include <asm/tlb.h>
28 #include <asm/fixmap.h>
30 #include <asm/mach/arch.h>
31 #include <asm/mach/map.h>
33 #include "mm.h"
35 static unsigned long phys_initrd_start __initdata = 0;
36 static unsigned long phys_initrd_size __initdata = 0;
38 static int __init early_initrd(char *p)
40 unsigned long start, size;
41 char *endp;
43 start = memparse(p, &endp);
44 if (*endp == ',') {
45 size = memparse(endp + 1, NULL);
47 phys_initrd_start = start;
48 phys_initrd_size = size;
50 return 0;
52 early_param("initrd", early_initrd);
54 static int __init parse_tag_initrd(const struct tag *tag)
56 printk(KERN_WARNING "ATAG_INITRD is deprecated; "
57 "please update your bootloader.\n");
58 phys_initrd_start = __virt_to_phys(tag->u.initrd.start);
59 phys_initrd_size = tag->u.initrd.size;
60 return 0;
63 __tagtable(ATAG_INITRD, parse_tag_initrd);
65 static int __init parse_tag_initrd2(const struct tag *tag)
67 phys_initrd_start = tag->u.initrd.start;
68 phys_initrd_size = tag->u.initrd.size;
69 return 0;
72 __tagtable(ATAG_INITRD2, parse_tag_initrd2);
75 * This keeps memory configuration data used by a couple memory
76 * initialization functions, as well as show_mem() for the skipping
77 * of holes in the memory map. It is populated by arm_add_memory().
79 struct meminfo meminfo;
81 void show_mem(void)
83 int free = 0, total = 0, reserved = 0;
84 int shared = 0, cached = 0, slab = 0, i;
85 struct meminfo * mi = &meminfo;
87 printk("Mem-info:\n");
88 show_free_areas();
90 for_each_bank (i, mi) {
91 struct membank *bank = &mi->bank[i];
92 unsigned int pfn1, pfn2;
93 struct page *page, *end;
95 pfn1 = bank_pfn_start(bank);
96 pfn2 = bank_pfn_end(bank);
98 page = pfn_to_page(pfn1);
99 end = pfn_to_page(pfn2 - 1) + 1;
101 do {
102 total++;
103 if (PageReserved(page))
104 reserved++;
105 else if (PageSwapCache(page))
106 cached++;
107 else if (PageSlab(page))
108 slab++;
109 else if (!page_count(page))
110 free++;
111 else
112 shared += page_count(page) - 1;
113 page++;
114 } while (page < end);
117 printk("%d pages of RAM\n", total);
118 printk("%d free pages\n", free);
119 printk("%d reserved pages\n", reserved);
120 printk("%d slab pages\n", slab);
121 printk("%d pages shared\n", shared);
122 printk("%d pages swap cached\n", cached);
125 static void __init find_limits(struct meminfo *mi,
126 unsigned long *min, unsigned long *max_low, unsigned long *max_high)
128 int i;
130 *min = -1UL;
131 *max_low = *max_high = 0;
133 for_each_bank (i, mi) {
134 struct membank *bank = &mi->bank[i];
135 unsigned long start, end;
137 start = bank_pfn_start(bank);
138 end = bank_pfn_end(bank);
140 if (*min > start)
141 *min = start;
142 if (*max_high < end)
143 *max_high = end;
144 if (bank->highmem)
145 continue;
146 if (*max_low < end)
147 *max_low = end;
151 static void __init arm_bootmem_init(unsigned long start_pfn,
152 unsigned long end_pfn)
154 struct memblock_region *reg;
155 unsigned int boot_pages;
156 phys_addr_t bitmap;
157 pg_data_t *pgdat;
160 * Allocate the bootmem bitmap page. This must be in a region
161 * of memory which has already been mapped.
163 boot_pages = bootmem_bootmap_pages(end_pfn - start_pfn);
164 bitmap = memblock_alloc_base(boot_pages << PAGE_SHIFT, L1_CACHE_BYTES,
165 __pfn_to_phys(end_pfn));
168 * Initialise the bootmem allocator, handing the
169 * memory banks over to bootmem.
171 node_set_online(0);
172 pgdat = NODE_DATA(0);
173 init_bootmem_node(pgdat, __phys_to_pfn(bitmap), start_pfn, end_pfn);
175 /* Free the lowmem regions from memblock into bootmem. */
176 for_each_memblock(memory, reg) {
177 unsigned long start = memblock_region_memory_base_pfn(reg);
178 unsigned long end = memblock_region_memory_end_pfn(reg);
180 if (end >= end_pfn)
181 end = end_pfn;
182 if (start >= end)
183 break;
185 free_bootmem(__pfn_to_phys(start), (end - start) << PAGE_SHIFT);
188 /* Reserve the lowmem memblock reserved regions in bootmem. */
189 for_each_memblock(reserved, reg) {
190 unsigned long start = memblock_region_reserved_base_pfn(reg);
191 unsigned long end = memblock_region_reserved_end_pfn(reg);
193 if (end >= end_pfn)
194 end = end_pfn;
195 if (start >= end)
196 break;
198 reserve_bootmem(__pfn_to_phys(start),
199 (end - start) << PAGE_SHIFT, BOOTMEM_DEFAULT);
203 static void __init arm_bootmem_free(unsigned long min, unsigned long max_low,
204 unsigned long max_high)
206 unsigned long zone_size[MAX_NR_ZONES], zhole_size[MAX_NR_ZONES];
207 struct memblock_region *reg;
210 * initialise the zones.
212 memset(zone_size, 0, sizeof(zone_size));
215 * The memory size has already been determined. If we need
216 * to do anything fancy with the allocation of this memory
217 * to the zones, now is the time to do it.
219 zone_size[0] = max_low - min;
220 #ifdef CONFIG_HIGHMEM
221 zone_size[ZONE_HIGHMEM] = max_high - max_low;
222 #endif
225 * Calculate the size of the holes.
226 * holes = node_size - sum(bank_sizes)
228 memcpy(zhole_size, zone_size, sizeof(zhole_size));
229 for_each_memblock(memory, reg) {
230 unsigned long start = memblock_region_memory_base_pfn(reg);
231 unsigned long end = memblock_region_memory_end_pfn(reg);
233 if (start < max_low) {
234 unsigned long low_end = min(end, max_low);
235 zhole_size[0] -= low_end - start;
237 #ifdef CONFIG_HIGHMEM
238 if (end > max_low) {
239 unsigned long high_start = max(start, max_low);
240 zhole_size[ZONE_HIGHMEM] -= end - high_start;
242 #endif
246 * Adjust the sizes according to any special requirements for
247 * this machine type.
249 arch_adjust_zones(zone_size, zhole_size);
251 free_area_init_node(0, zone_size, min, zhole_size);
254 #ifndef CONFIG_SPARSEMEM
255 int pfn_valid(unsigned long pfn)
257 return memblock_is_memory(pfn << PAGE_SHIFT);
259 EXPORT_SYMBOL(pfn_valid);
261 static void arm_memory_present(void)
264 #else
265 static void arm_memory_present(void)
267 struct memblock_region *reg;
269 for_each_memblock(memory, reg)
270 memory_present(0, memblock_region_memory_base_pfn(reg),
271 memblock_region_memory_end_pfn(reg));
273 #endif
275 static int __init meminfo_cmp(const void *_a, const void *_b)
277 const struct membank *a = _a, *b = _b;
278 long cmp = bank_pfn_start(a) - bank_pfn_start(b);
279 return cmp < 0 ? -1 : cmp > 0 ? 1 : 0;
282 void __init arm_memblock_init(struct meminfo *mi, struct machine_desc *mdesc)
284 int i;
286 sort(&meminfo.bank, meminfo.nr_banks, sizeof(meminfo.bank[0]), meminfo_cmp, NULL);
288 memblock_init();
289 for (i = 0; i < mi->nr_banks; i++)
290 memblock_add(mi->bank[i].start, mi->bank[i].size);
292 /* Register the kernel text, kernel data and initrd with memblock. */
293 #ifdef CONFIG_XIP_KERNEL
294 memblock_reserve(__pa(_sdata), _end - _sdata);
295 #else
296 memblock_reserve(__pa(_stext), _end - _stext);
297 #endif
298 #ifdef CONFIG_BLK_DEV_INITRD
299 if (phys_initrd_size) {
300 memblock_reserve(phys_initrd_start, phys_initrd_size);
302 /* Now convert initrd to virtual addresses */
303 initrd_start = __phys_to_virt(phys_initrd_start);
304 initrd_end = initrd_start + phys_initrd_size;
306 #endif
308 arm_mm_memblock_reserve();
310 /* reserve any platform specific memblock areas */
311 if (mdesc->reserve)
312 mdesc->reserve();
314 memblock_analyze();
315 memblock_dump_all();
318 void __init bootmem_init(void)
320 struct meminfo *mi = &meminfo;
321 unsigned long min, max_low, max_high;
323 max_low = max_high = 0;
325 find_limits(mi, &min, &max_low, &max_high);
327 arm_bootmem_init(min, max_low);
330 * Sparsemem tries to allocate bootmem in memory_present(),
331 * so must be done after the fixed reservations
333 arm_memory_present();
336 * sparse_init() needs the bootmem allocator up and running.
338 sparse_init();
341 * Now free the memory - free_area_init_node needs
342 * the sparse mem_map arrays initialized by sparse_init()
343 * for memmap_init_zone(), otherwise all PFNs are invalid.
345 arm_bootmem_free(min, max_low, max_high);
347 high_memory = __va((max_low << PAGE_SHIFT) - 1) + 1;
350 * This doesn't seem to be used by the Linux memory manager any
351 * more, but is used by ll_rw_block. If we can get rid of it, we
352 * also get rid of some of the stuff above as well.
354 * Note: max_low_pfn and max_pfn reflect the number of _pages_ in
355 * the system, not the maximum PFN.
357 max_low_pfn = max_low - PHYS_PFN_OFFSET;
358 max_pfn = max_high - PHYS_PFN_OFFSET;
361 static inline int free_area(unsigned long pfn, unsigned long end, char *s)
363 unsigned int pages = 0, size = (end - pfn) << (PAGE_SHIFT - 10);
365 for (; pfn < end; pfn++) {
366 struct page *page = pfn_to_page(pfn);
367 ClearPageReserved(page);
368 init_page_count(page);
369 __free_page(page);
370 pages++;
373 if (size && s)
374 printk(KERN_INFO "Freeing %s memory: %dK\n", s, size);
376 return pages;
379 static inline void
380 free_memmap(unsigned long start_pfn, unsigned long end_pfn)
382 struct page *start_pg, *end_pg;
383 unsigned long pg, pgend;
386 * Convert start_pfn/end_pfn to a struct page pointer.
388 start_pg = pfn_to_page(start_pfn - 1) + 1;
389 end_pg = pfn_to_page(end_pfn);
392 * Convert to physical addresses, and
393 * round start upwards and end downwards.
395 pg = PAGE_ALIGN(__pa(start_pg));
396 pgend = __pa(end_pg) & PAGE_MASK;
399 * If there are free pages between these,
400 * free the section of the memmap array.
402 if (pg < pgend)
403 free_bootmem(pg, pgend - pg);
407 * The mem_map array can get very big. Free the unused area of the memory map.
409 static void __init free_unused_memmap(struct meminfo *mi)
411 unsigned long bank_start, prev_bank_end = 0;
412 unsigned int i;
415 * This relies on each bank being in address order.
416 * The banks are sorted previously in bootmem_init().
418 for_each_bank(i, mi) {
419 struct membank *bank = &mi->bank[i];
421 bank_start = bank_pfn_start(bank);
424 * If we had a previous bank, and there is a space
425 * between the current bank and the previous, free it.
427 if (prev_bank_end && prev_bank_end < bank_start)
428 free_memmap(prev_bank_end, bank_start);
431 * Align up here since the VM subsystem insists that the
432 * memmap entries are valid from the bank end aligned to
433 * MAX_ORDER_NR_PAGES.
435 prev_bank_end = ALIGN(bank_pfn_end(bank), MAX_ORDER_NR_PAGES);
440 * mem_init() marks the free areas in the mem_map and tells us how much
441 * memory is free. This is done after various parts of the system have
442 * claimed their memory after the kernel image.
444 void __init mem_init(void)
446 unsigned long reserved_pages, free_pages;
447 struct memblock_region *reg;
448 int i;
449 #ifdef CONFIG_HAVE_TCM
450 /* These pointers are filled in on TCM detection */
451 extern u32 dtcm_end;
452 extern u32 itcm_end;
453 #endif
455 max_mapnr = pfn_to_page(max_pfn + PHYS_PFN_OFFSET) - mem_map;
457 /* this will put all unused low memory onto the freelists */
458 free_unused_memmap(&meminfo);
460 totalram_pages += free_all_bootmem();
462 #ifdef CONFIG_SA1111
463 /* now that our DMA memory is actually so designated, we can free it */
464 totalram_pages += free_area(PHYS_PFN_OFFSET,
465 __phys_to_pfn(__pa(swapper_pg_dir)), NULL);
466 #endif
468 #ifdef CONFIG_HIGHMEM
469 /* set highmem page free */
470 for_each_bank (i, &meminfo) {
471 unsigned long start = bank_pfn_start(&meminfo.bank[i]);
472 unsigned long end = bank_pfn_end(&meminfo.bank[i]);
473 if (start >= max_low_pfn + PHYS_PFN_OFFSET)
474 totalhigh_pages += free_area(start, end, NULL);
476 totalram_pages += totalhigh_pages;
477 #endif
479 reserved_pages = free_pages = 0;
481 for_each_bank(i, &meminfo) {
482 struct membank *bank = &meminfo.bank[i];
483 unsigned int pfn1, pfn2;
484 struct page *page, *end;
486 pfn1 = bank_pfn_start(bank);
487 pfn2 = bank_pfn_end(bank);
489 page = pfn_to_page(pfn1);
490 end = pfn_to_page(pfn2 - 1) + 1;
492 do {
493 if (PageReserved(page))
494 reserved_pages++;
495 else if (!page_count(page))
496 free_pages++;
497 page++;
498 } while (page < end);
502 * Since our memory may not be contiguous, calculate the
503 * real number of pages we have in this system
505 printk(KERN_INFO "Memory:");
506 num_physpages = 0;
507 for_each_memblock(memory, reg) {
508 unsigned long pages = memblock_region_memory_end_pfn(reg) -
509 memblock_region_memory_base_pfn(reg);
510 num_physpages += pages;
511 printk(" %ldMB", pages >> (20 - PAGE_SHIFT));
513 printk(" = %luMB total\n", num_physpages >> (20 - PAGE_SHIFT));
515 printk(KERN_NOTICE "Memory: %luk/%luk available, %luk reserved, %luK highmem\n",
516 nr_free_pages() << (PAGE_SHIFT-10),
517 free_pages << (PAGE_SHIFT-10),
518 reserved_pages << (PAGE_SHIFT-10),
519 totalhigh_pages << (PAGE_SHIFT-10));
521 #define MLK(b, t) b, t, ((t) - (b)) >> 10
522 #define MLM(b, t) b, t, ((t) - (b)) >> 20
523 #define MLK_ROUNDUP(b, t) b, t, DIV_ROUND_UP(((t) - (b)), SZ_1K)
525 printk(KERN_NOTICE "Virtual kernel memory layout:\n"
526 " vector : 0x%08lx - 0x%08lx (%4ld kB)\n"
527 #ifdef CONFIG_HAVE_TCM
528 " DTCM : 0x%08lx - 0x%08lx (%4ld kB)\n"
529 " ITCM : 0x%08lx - 0x%08lx (%4ld kB)\n"
530 #endif
531 " fixmap : 0x%08lx - 0x%08lx (%4ld kB)\n"
532 #ifdef CONFIG_MMU
533 " DMA : 0x%08lx - 0x%08lx (%4ld MB)\n"
534 #endif
535 " vmalloc : 0x%08lx - 0x%08lx (%4ld MB)\n"
536 " lowmem : 0x%08lx - 0x%08lx (%4ld MB)\n"
537 #ifdef CONFIG_HIGHMEM
538 " pkmap : 0x%08lx - 0x%08lx (%4ld MB)\n"
539 #endif
540 " modules : 0x%08lx - 0x%08lx (%4ld MB)\n"
541 " .init : 0x%p" " - 0x%p" " (%4d kB)\n"
542 " .text : 0x%p" " - 0x%p" " (%4d kB)\n"
543 " .data : 0x%p" " - 0x%p" " (%4d kB)\n",
545 MLK(UL(CONFIG_VECTORS_BASE), UL(CONFIG_VECTORS_BASE) +
546 (PAGE_SIZE)),
547 #ifdef CONFIG_HAVE_TCM
548 MLK(DTCM_OFFSET, (unsigned long) dtcm_end),
549 MLK(ITCM_OFFSET, (unsigned long) itcm_end),
550 #endif
551 MLK(FIXADDR_START, FIXADDR_TOP),
552 #ifdef CONFIG_MMU
553 MLM(CONSISTENT_BASE, CONSISTENT_END),
554 #endif
555 MLM(VMALLOC_START, VMALLOC_END),
556 MLM(PAGE_OFFSET, (unsigned long)high_memory),
557 #ifdef CONFIG_HIGHMEM
558 MLM(PKMAP_BASE, (PKMAP_BASE) + (LAST_PKMAP) *
559 (PAGE_SIZE)),
560 #endif
561 MLM(MODULES_VADDR, MODULES_END),
563 MLK_ROUNDUP(__init_begin, __init_end),
564 MLK_ROUNDUP(_text, _etext),
565 MLK_ROUNDUP(_sdata, _edata));
567 #undef MLK
568 #undef MLM
569 #undef MLK_ROUNDUP
572 * Check boundaries twice: Some fundamental inconsistencies can
573 * be detected at build time already.
575 #ifdef CONFIG_MMU
576 BUILD_BUG_ON(VMALLOC_END > CONSISTENT_BASE);
577 BUG_ON(VMALLOC_END > CONSISTENT_BASE);
579 BUILD_BUG_ON(TASK_SIZE > MODULES_VADDR);
580 BUG_ON(TASK_SIZE > MODULES_VADDR);
581 #endif
583 #ifdef CONFIG_HIGHMEM
584 BUILD_BUG_ON(PKMAP_BASE + LAST_PKMAP * PAGE_SIZE > PAGE_OFFSET);
585 BUG_ON(PKMAP_BASE + LAST_PKMAP * PAGE_SIZE > PAGE_OFFSET);
586 #endif
588 if (PAGE_SIZE >= 16384 && num_physpages <= 128) {
589 extern int sysctl_overcommit_memory;
591 * On a machine this small we won't get
592 * anywhere without overcommit, so turn
593 * it on by default.
595 sysctl_overcommit_memory = OVERCOMMIT_ALWAYS;
599 void free_initmem(void)
601 #ifdef CONFIG_HAVE_TCM
602 extern char __tcm_start, __tcm_end;
604 totalram_pages += free_area(__phys_to_pfn(__pa(&__tcm_start)),
605 __phys_to_pfn(__pa(&__tcm_end)),
606 "TCM link");
607 #endif
609 if (!machine_is_integrator() && !machine_is_cintegrator())
610 totalram_pages += free_area(__phys_to_pfn(__pa(__init_begin)),
611 __phys_to_pfn(__pa(__init_end)),
612 "init");
615 #ifdef CONFIG_BLK_DEV_INITRD
617 static int keep_initrd;
619 void free_initrd_mem(unsigned long start, unsigned long end)
621 if (!keep_initrd)
622 totalram_pages += free_area(__phys_to_pfn(__pa(start)),
623 __phys_to_pfn(__pa(end)),
624 "initrd");
627 static int __init keepinitrd_setup(char *__unused)
629 keep_initrd = 1;
630 return 1;
633 __setup("keepinitrd", keepinitrd_setup);
634 #endif