ARM: use ARM_DMA_ZONE_SIZE to adjust the zone sizes
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / arm / mm / init.c
blob49eaad9136a7abefa790ca34a3b352c790299f96
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(unsigned int filter)
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(unsigned long *min, unsigned long *max_low,
126 unsigned long *max_high)
128 struct meminfo *mi = &meminfo;
129 int i;
131 *min = -1UL;
132 *max_low = *max_high = 0;
134 for_each_bank (i, mi) {
135 struct membank *bank = &mi->bank[i];
136 unsigned long start, end;
138 start = bank_pfn_start(bank);
139 end = bank_pfn_end(bank);
141 if (*min > start)
142 *min = start;
143 if (*max_high < end)
144 *max_high = end;
145 if (bank->highmem)
146 continue;
147 if (*max_low < end)
148 *max_low = end;
152 static void __init arm_bootmem_init(unsigned long start_pfn,
153 unsigned long end_pfn)
155 struct memblock_region *reg;
156 unsigned int boot_pages;
157 phys_addr_t bitmap;
158 pg_data_t *pgdat;
161 * Allocate the bootmem bitmap page. This must be in a region
162 * of memory which has already been mapped.
164 boot_pages = bootmem_bootmap_pages(end_pfn - start_pfn);
165 bitmap = memblock_alloc_base(boot_pages << PAGE_SHIFT, L1_CACHE_BYTES,
166 __pfn_to_phys(end_pfn));
169 * Initialise the bootmem allocator, handing the
170 * memory banks over to bootmem.
172 node_set_online(0);
173 pgdat = NODE_DATA(0);
174 init_bootmem_node(pgdat, __phys_to_pfn(bitmap), start_pfn, end_pfn);
176 /* Free the lowmem regions from memblock into bootmem. */
177 for_each_memblock(memory, reg) {
178 unsigned long start = memblock_region_memory_base_pfn(reg);
179 unsigned long end = memblock_region_memory_end_pfn(reg);
181 if (end >= end_pfn)
182 end = end_pfn;
183 if (start >= end)
184 break;
186 free_bootmem(__pfn_to_phys(start), (end - start) << PAGE_SHIFT);
189 /* Reserve the lowmem memblock reserved regions in bootmem. */
190 for_each_memblock(reserved, reg) {
191 unsigned long start = memblock_region_reserved_base_pfn(reg);
192 unsigned long end = memblock_region_reserved_end_pfn(reg);
194 if (end >= end_pfn)
195 end = end_pfn;
196 if (start >= end)
197 break;
199 reserve_bootmem(__pfn_to_phys(start),
200 (end - start) << PAGE_SHIFT, BOOTMEM_DEFAULT);
204 #ifdef CONFIG_ZONE_DMA
205 static void __init arm_adjust_dma_zone(unsigned long *size, unsigned long *hole,
206 unsigned long dma_size)
208 if (size[0] <= dma_size)
209 return;
211 size[ZONE_NORMAL] = size[0] - dma_size;
212 size[ZONE_DMA] = dma_size;
213 hole[ZONE_NORMAL] = hole[0];
214 hole[ZONE_DMA] = 0;
216 #endif
218 static void __init arm_bootmem_free(unsigned long min, unsigned long max_low,
219 unsigned long max_high)
221 unsigned long zone_size[MAX_NR_ZONES], zhole_size[MAX_NR_ZONES];
222 struct memblock_region *reg;
225 * initialise the zones.
227 memset(zone_size, 0, sizeof(zone_size));
230 * The memory size has already been determined. If we need
231 * to do anything fancy with the allocation of this memory
232 * to the zones, now is the time to do it.
234 zone_size[0] = max_low - min;
235 #ifdef CONFIG_HIGHMEM
236 zone_size[ZONE_HIGHMEM] = max_high - max_low;
237 #endif
240 * Calculate the size of the holes.
241 * holes = node_size - sum(bank_sizes)
243 memcpy(zhole_size, zone_size, sizeof(zhole_size));
244 for_each_memblock(memory, reg) {
245 unsigned long start = memblock_region_memory_base_pfn(reg);
246 unsigned long end = memblock_region_memory_end_pfn(reg);
248 if (start < max_low) {
249 unsigned long low_end = min(end, max_low);
250 zhole_size[0] -= low_end - start;
252 #ifdef CONFIG_HIGHMEM
253 if (end > max_low) {
254 unsigned long high_start = max(start, max_low);
255 zhole_size[ZONE_HIGHMEM] -= end - high_start;
257 #endif
260 #ifdef ARM_DMA_ZONE_SIZE
261 #ifndef CONFIG_ZONE_DMA
262 #error ARM_DMA_ZONE_SIZE set but no DMA zone to limit allocations
263 #endif
266 * Adjust the sizes according to any special requirements for
267 * this machine type.
269 arm_adjust_dma_zone(zone_size, zhole_size,
270 ARM_DMA_ZONE_SIZE >> PAGE_SHIFT);
271 #endif
273 free_area_init_node(0, zone_size, min, zhole_size);
276 #ifndef CONFIG_SPARSEMEM
277 int pfn_valid(unsigned long pfn)
279 return memblock_is_memory(pfn << PAGE_SHIFT);
281 EXPORT_SYMBOL(pfn_valid);
283 static void arm_memory_present(void)
286 #else
287 static void arm_memory_present(void)
289 struct memblock_region *reg;
291 for_each_memblock(memory, reg)
292 memory_present(0, memblock_region_memory_base_pfn(reg),
293 memblock_region_memory_end_pfn(reg));
295 #endif
297 static int __init meminfo_cmp(const void *_a, const void *_b)
299 const struct membank *a = _a, *b = _b;
300 long cmp = bank_pfn_start(a) - bank_pfn_start(b);
301 return cmp < 0 ? -1 : cmp > 0 ? 1 : 0;
304 void __init arm_memblock_init(struct meminfo *mi, struct machine_desc *mdesc)
306 int i;
308 sort(&meminfo.bank, meminfo.nr_banks, sizeof(meminfo.bank[0]), meminfo_cmp, NULL);
310 memblock_init();
311 for (i = 0; i < mi->nr_banks; i++)
312 memblock_add(mi->bank[i].start, mi->bank[i].size);
314 /* Register the kernel text, kernel data and initrd with memblock. */
315 #ifdef CONFIG_XIP_KERNEL
316 memblock_reserve(__pa(_sdata), _end - _sdata);
317 #else
318 memblock_reserve(__pa(_stext), _end - _stext);
319 #endif
320 #ifdef CONFIG_BLK_DEV_INITRD
321 if (phys_initrd_size &&
322 memblock_is_region_reserved(phys_initrd_start, phys_initrd_size)) {
323 pr_err("INITRD: 0x%08lx+0x%08lx overlaps in-use memory region - disabling initrd\n",
324 phys_initrd_start, phys_initrd_size);
325 phys_initrd_start = phys_initrd_size = 0;
327 if (phys_initrd_size) {
328 memblock_reserve(phys_initrd_start, phys_initrd_size);
330 /* Now convert initrd to virtual addresses */
331 initrd_start = __phys_to_virt(phys_initrd_start);
332 initrd_end = initrd_start + phys_initrd_size;
334 #endif
336 arm_mm_memblock_reserve();
338 /* reserve any platform specific memblock areas */
339 if (mdesc->reserve)
340 mdesc->reserve();
342 memblock_analyze();
343 memblock_dump_all();
346 void __init bootmem_init(void)
348 unsigned long min, max_low, max_high;
350 max_low = max_high = 0;
352 find_limits(&min, &max_low, &max_high);
354 arm_bootmem_init(min, max_low);
357 * Sparsemem tries to allocate bootmem in memory_present(),
358 * so must be done after the fixed reservations
360 arm_memory_present();
363 * sparse_init() needs the bootmem allocator up and running.
365 sparse_init();
368 * Now free the memory - free_area_init_node needs
369 * the sparse mem_map arrays initialized by sparse_init()
370 * for memmap_init_zone(), otherwise all PFNs are invalid.
372 arm_bootmem_free(min, max_low, max_high);
374 high_memory = __va(((phys_addr_t)max_low << PAGE_SHIFT) - 1) + 1;
377 * This doesn't seem to be used by the Linux memory manager any
378 * more, but is used by ll_rw_block. If we can get rid of it, we
379 * also get rid of some of the stuff above as well.
381 * Note: max_low_pfn and max_pfn reflect the number of _pages_ in
382 * the system, not the maximum PFN.
384 max_low_pfn = max_low - PHYS_PFN_OFFSET;
385 max_pfn = max_high - PHYS_PFN_OFFSET;
388 static inline int free_area(unsigned long pfn, unsigned long end, char *s)
390 unsigned int pages = 0, size = (end - pfn) << (PAGE_SHIFT - 10);
392 for (; pfn < end; pfn++) {
393 struct page *page = pfn_to_page(pfn);
394 ClearPageReserved(page);
395 init_page_count(page);
396 __free_page(page);
397 pages++;
400 if (size && s)
401 printk(KERN_INFO "Freeing %s memory: %dK\n", s, size);
403 return pages;
406 static inline void
407 free_memmap(unsigned long start_pfn, unsigned long end_pfn)
409 struct page *start_pg, *end_pg;
410 unsigned long pg, pgend;
413 * Convert start_pfn/end_pfn to a struct page pointer.
415 start_pg = pfn_to_page(start_pfn - 1) + 1;
416 end_pg = pfn_to_page(end_pfn);
419 * Convert to physical addresses, and
420 * round start upwards and end downwards.
422 pg = (unsigned long)PAGE_ALIGN(__pa(start_pg));
423 pgend = (unsigned long)__pa(end_pg) & PAGE_MASK;
426 * If there are free pages between these,
427 * free the section of the memmap array.
429 if (pg < pgend)
430 free_bootmem(pg, pgend - pg);
434 * The mem_map array can get very big. Free the unused area of the memory map.
436 static void __init free_unused_memmap(struct meminfo *mi)
438 unsigned long bank_start, prev_bank_end = 0;
439 unsigned int i;
442 * This relies on each bank being in address order.
443 * The banks are sorted previously in bootmem_init().
445 for_each_bank(i, mi) {
446 struct membank *bank = &mi->bank[i];
448 bank_start = bank_pfn_start(bank);
451 * If we had a previous bank, and there is a space
452 * between the current bank and the previous, free it.
454 if (prev_bank_end && prev_bank_end < bank_start)
455 free_memmap(prev_bank_end, bank_start);
458 * Align up here since the VM subsystem insists that the
459 * memmap entries are valid from the bank end aligned to
460 * MAX_ORDER_NR_PAGES.
462 prev_bank_end = ALIGN(bank_pfn_end(bank), MAX_ORDER_NR_PAGES);
466 static void __init free_highpages(void)
468 #ifdef CONFIG_HIGHMEM
469 unsigned long max_low = max_low_pfn + PHYS_PFN_OFFSET;
470 struct memblock_region *mem, *res;
472 /* set highmem page free */
473 for_each_memblock(memory, mem) {
474 unsigned long start = memblock_region_memory_base_pfn(mem);
475 unsigned long end = memblock_region_memory_end_pfn(mem);
477 /* Ignore complete lowmem entries */
478 if (end <= max_low)
479 continue;
481 /* Truncate partial highmem entries */
482 if (start < max_low)
483 start = max_low;
485 /* Find and exclude any reserved regions */
486 for_each_memblock(reserved, res) {
487 unsigned long res_start, res_end;
489 res_start = memblock_region_reserved_base_pfn(res);
490 res_end = memblock_region_reserved_end_pfn(res);
492 if (res_end < start)
493 continue;
494 if (res_start < start)
495 res_start = start;
496 if (res_start > end)
497 res_start = end;
498 if (res_end > end)
499 res_end = end;
500 if (res_start != start)
501 totalhigh_pages += free_area(start, res_start,
502 NULL);
503 start = res_end;
504 if (start == end)
505 break;
508 /* And now free anything which remains */
509 if (start < end)
510 totalhigh_pages += free_area(start, end, NULL);
512 totalram_pages += totalhigh_pages;
513 #endif
517 * mem_init() marks the free areas in the mem_map and tells us how much
518 * memory is free. This is done after various parts of the system have
519 * claimed their memory after the kernel image.
521 void __init mem_init(void)
523 unsigned long reserved_pages, free_pages;
524 struct memblock_region *reg;
525 int i;
526 #ifdef CONFIG_HAVE_TCM
527 /* These pointers are filled in on TCM detection */
528 extern u32 dtcm_end;
529 extern u32 itcm_end;
530 #endif
532 max_mapnr = pfn_to_page(max_pfn + PHYS_PFN_OFFSET) - mem_map;
534 /* this will put all unused low memory onto the freelists */
535 free_unused_memmap(&meminfo);
537 totalram_pages += free_all_bootmem();
539 #ifdef CONFIG_SA1111
540 /* now that our DMA memory is actually so designated, we can free it */
541 totalram_pages += free_area(PHYS_PFN_OFFSET,
542 __phys_to_pfn(__pa(swapper_pg_dir)), NULL);
543 #endif
545 free_highpages();
547 reserved_pages = free_pages = 0;
549 for_each_bank(i, &meminfo) {
550 struct membank *bank = &meminfo.bank[i];
551 unsigned int pfn1, pfn2;
552 struct page *page, *end;
554 pfn1 = bank_pfn_start(bank);
555 pfn2 = bank_pfn_end(bank);
557 page = pfn_to_page(pfn1);
558 end = pfn_to_page(pfn2 - 1) + 1;
560 do {
561 if (PageReserved(page))
562 reserved_pages++;
563 else if (!page_count(page))
564 free_pages++;
565 page++;
566 } while (page < end);
570 * Since our memory may not be contiguous, calculate the
571 * real number of pages we have in this system
573 printk(KERN_INFO "Memory:");
574 num_physpages = 0;
575 for_each_memblock(memory, reg) {
576 unsigned long pages = memblock_region_memory_end_pfn(reg) -
577 memblock_region_memory_base_pfn(reg);
578 num_physpages += pages;
579 printk(" %ldMB", pages >> (20 - PAGE_SHIFT));
581 printk(" = %luMB total\n", num_physpages >> (20 - PAGE_SHIFT));
583 printk(KERN_NOTICE "Memory: %luk/%luk available, %luk reserved, %luK highmem\n",
584 nr_free_pages() << (PAGE_SHIFT-10),
585 free_pages << (PAGE_SHIFT-10),
586 reserved_pages << (PAGE_SHIFT-10),
587 totalhigh_pages << (PAGE_SHIFT-10));
589 #define MLK(b, t) b, t, ((t) - (b)) >> 10
590 #define MLM(b, t) b, t, ((t) - (b)) >> 20
591 #define MLK_ROUNDUP(b, t) b, t, DIV_ROUND_UP(((t) - (b)), SZ_1K)
593 printk(KERN_NOTICE "Virtual kernel memory layout:\n"
594 " vector : 0x%08lx - 0x%08lx (%4ld kB)\n"
595 #ifdef CONFIG_HAVE_TCM
596 " DTCM : 0x%08lx - 0x%08lx (%4ld kB)\n"
597 " ITCM : 0x%08lx - 0x%08lx (%4ld kB)\n"
598 #endif
599 " fixmap : 0x%08lx - 0x%08lx (%4ld kB)\n"
600 #ifdef CONFIG_MMU
601 " DMA : 0x%08lx - 0x%08lx (%4ld MB)\n"
602 #endif
603 " vmalloc : 0x%08lx - 0x%08lx (%4ld MB)\n"
604 " lowmem : 0x%08lx - 0x%08lx (%4ld MB)\n"
605 #ifdef CONFIG_HIGHMEM
606 " pkmap : 0x%08lx - 0x%08lx (%4ld MB)\n"
607 #endif
608 " modules : 0x%08lx - 0x%08lx (%4ld MB)\n"
609 " .init : 0x%p" " - 0x%p" " (%4d kB)\n"
610 " .text : 0x%p" " - 0x%p" " (%4d kB)\n"
611 " .data : 0x%p" " - 0x%p" " (%4d kB)\n",
613 MLK(UL(CONFIG_VECTORS_BASE), UL(CONFIG_VECTORS_BASE) +
614 (PAGE_SIZE)),
615 #ifdef CONFIG_HAVE_TCM
616 MLK(DTCM_OFFSET, (unsigned long) dtcm_end),
617 MLK(ITCM_OFFSET, (unsigned long) itcm_end),
618 #endif
619 MLK(FIXADDR_START, FIXADDR_TOP),
620 #ifdef CONFIG_MMU
621 MLM(CONSISTENT_BASE, CONSISTENT_END),
622 #endif
623 MLM(VMALLOC_START, VMALLOC_END),
624 MLM(PAGE_OFFSET, (unsigned long)high_memory),
625 #ifdef CONFIG_HIGHMEM
626 MLM(PKMAP_BASE, (PKMAP_BASE) + (LAST_PKMAP) *
627 (PAGE_SIZE)),
628 #endif
629 MLM(MODULES_VADDR, MODULES_END),
631 MLK_ROUNDUP(__init_begin, __init_end),
632 MLK_ROUNDUP(_text, _etext),
633 MLK_ROUNDUP(_sdata, _edata));
635 #undef MLK
636 #undef MLM
637 #undef MLK_ROUNDUP
640 * Check boundaries twice: Some fundamental inconsistencies can
641 * be detected at build time already.
643 #ifdef CONFIG_MMU
644 BUILD_BUG_ON(VMALLOC_END > CONSISTENT_BASE);
645 BUG_ON(VMALLOC_END > CONSISTENT_BASE);
647 BUILD_BUG_ON(TASK_SIZE > MODULES_VADDR);
648 BUG_ON(TASK_SIZE > MODULES_VADDR);
649 #endif
651 #ifdef CONFIG_HIGHMEM
652 BUILD_BUG_ON(PKMAP_BASE + LAST_PKMAP * PAGE_SIZE > PAGE_OFFSET);
653 BUG_ON(PKMAP_BASE + LAST_PKMAP * PAGE_SIZE > PAGE_OFFSET);
654 #endif
656 if (PAGE_SIZE >= 16384 && num_physpages <= 128) {
657 extern int sysctl_overcommit_memory;
659 * On a machine this small we won't get
660 * anywhere without overcommit, so turn
661 * it on by default.
663 sysctl_overcommit_memory = OVERCOMMIT_ALWAYS;
667 void free_initmem(void)
669 #ifdef CONFIG_HAVE_TCM
670 extern char __tcm_start, __tcm_end;
672 totalram_pages += free_area(__phys_to_pfn(__pa(&__tcm_start)),
673 __phys_to_pfn(__pa(&__tcm_end)),
674 "TCM link");
675 #endif
677 if (!machine_is_integrator() && !machine_is_cintegrator())
678 totalram_pages += free_area(__phys_to_pfn(__pa(__init_begin)),
679 __phys_to_pfn(__pa(__init_end)),
680 "init");
683 #ifdef CONFIG_BLK_DEV_INITRD
685 static int keep_initrd;
687 void free_initrd_mem(unsigned long start, unsigned long end)
689 if (!keep_initrd)
690 totalram_pages += free_area(__phys_to_pfn(__pa(start)),
691 __phys_to_pfn(__pa(end)),
692 "initrd");
695 static int __init keepinitrd_setup(char *__unused)
697 keep_initrd = 1;
698 return 1;
701 __setup("keepinitrd", keepinitrd_setup);
702 #endif