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.
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>
28 #include <asm/fixmap.h>
30 #include <asm/mach/arch.h>
31 #include <asm/mach/map.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
;
43 start
= memparse(p
, &endp
);
45 size
= memparse(endp
+ 1, NULL
);
47 phys_initrd_start
= start
;
48 phys_initrd_size
= size
;
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
;
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
;
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
;
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");
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;
103 if (PageReserved(page
))
105 else if (PageSwapCache(page
))
107 else if (PageSlab(page
))
109 else if (!page_count(page
))
112 shared
+= page_count(page
) - 1;
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
;
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
);
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
;
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.
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
);
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
);
199 reserve_bootmem(__pfn_to_phys(start
),
200 (end
- start
) << PAGE_SHIFT
, BOOTMEM_DEFAULT
);
204 static void __init
arm_bootmem_free(unsigned long min
, unsigned long max_low
,
205 unsigned long max_high
)
207 unsigned long zone_size
[MAX_NR_ZONES
], zhole_size
[MAX_NR_ZONES
];
208 struct memblock_region
*reg
;
211 * initialise the zones.
213 memset(zone_size
, 0, sizeof(zone_size
));
216 * The memory size has already been determined. If we need
217 * to do anything fancy with the allocation of this memory
218 * to the zones, now is the time to do it.
220 zone_size
[0] = max_low
- min
;
221 #ifdef CONFIG_HIGHMEM
222 zone_size
[ZONE_HIGHMEM
] = max_high
- max_low
;
226 * Calculate the size of the holes.
227 * holes = node_size - sum(bank_sizes)
229 memcpy(zhole_size
, zone_size
, sizeof(zhole_size
));
230 for_each_memblock(memory
, reg
) {
231 unsigned long start
= memblock_region_memory_base_pfn(reg
);
232 unsigned long end
= memblock_region_memory_end_pfn(reg
);
234 if (start
< max_low
) {
235 unsigned long low_end
= min(end
, max_low
);
236 zhole_size
[0] -= low_end
- start
;
238 #ifdef CONFIG_HIGHMEM
240 unsigned long high_start
= max(start
, max_low
);
241 zhole_size
[ZONE_HIGHMEM
] -= end
- high_start
;
247 * Adjust the sizes according to any special requirements for
250 arch_adjust_zones(zone_size
, zhole_size
);
252 free_area_init_node(0, zone_size
, min
, zhole_size
);
255 #ifndef CONFIG_SPARSEMEM
256 int pfn_valid(unsigned long pfn
)
258 return memblock_is_memory(pfn
<< PAGE_SHIFT
);
260 EXPORT_SYMBOL(pfn_valid
);
262 static void arm_memory_present(void)
266 static void arm_memory_present(void)
268 struct memblock_region
*reg
;
270 for_each_memblock(memory
, reg
)
271 memory_present(0, memblock_region_memory_base_pfn(reg
),
272 memblock_region_memory_end_pfn(reg
));
276 static int __init
meminfo_cmp(const void *_a
, const void *_b
)
278 const struct membank
*a
= _a
, *b
= _b
;
279 long cmp
= bank_pfn_start(a
) - bank_pfn_start(b
);
280 return cmp
< 0 ? -1 : cmp
> 0 ? 1 : 0;
283 void __init
arm_memblock_init(struct meminfo
*mi
, struct machine_desc
*mdesc
)
287 sort(&meminfo
.bank
, meminfo
.nr_banks
, sizeof(meminfo
.bank
[0]), meminfo_cmp
, NULL
);
290 for (i
= 0; i
< mi
->nr_banks
; i
++)
291 memblock_add(mi
->bank
[i
].start
, mi
->bank
[i
].size
);
293 /* Register the kernel text, kernel data and initrd with memblock. */
294 #ifdef CONFIG_XIP_KERNEL
295 memblock_reserve(__pa(_sdata
), _end
- _sdata
);
297 memblock_reserve(__pa(_stext
), _end
- _stext
);
299 #ifdef CONFIG_BLK_DEV_INITRD
300 if (phys_initrd_size
&&
301 memblock_is_region_reserved(phys_initrd_start
, phys_initrd_size
)) {
302 pr_err("INITRD: 0x%08lx+0x%08lx overlaps in-use memory region - disabling initrd\n",
303 phys_initrd_start
, phys_initrd_size
);
304 phys_initrd_start
= phys_initrd_size
= 0;
306 if (phys_initrd_size
) {
307 memblock_reserve(phys_initrd_start
, phys_initrd_size
);
309 /* Now convert initrd to virtual addresses */
310 initrd_start
= __phys_to_virt(phys_initrd_start
);
311 initrd_end
= initrd_start
+ phys_initrd_size
;
315 arm_mm_memblock_reserve();
317 /* reserve any platform specific memblock areas */
325 void __init
bootmem_init(void)
327 unsigned long min
, max_low
, max_high
;
329 max_low
= max_high
= 0;
331 find_limits(&min
, &max_low
, &max_high
);
333 arm_bootmem_init(min
, max_low
);
336 * Sparsemem tries to allocate bootmem in memory_present(),
337 * so must be done after the fixed reservations
339 arm_memory_present();
342 * sparse_init() needs the bootmem allocator up and running.
347 * Now free the memory - free_area_init_node needs
348 * the sparse mem_map arrays initialized by sparse_init()
349 * for memmap_init_zone(), otherwise all PFNs are invalid.
351 arm_bootmem_free(min
, max_low
, max_high
);
353 high_memory
= __va((max_low
<< PAGE_SHIFT
) - 1) + 1;
356 * This doesn't seem to be used by the Linux memory manager any
357 * more, but is used by ll_rw_block. If we can get rid of it, we
358 * also get rid of some of the stuff above as well.
360 * Note: max_low_pfn and max_pfn reflect the number of _pages_ in
361 * the system, not the maximum PFN.
363 max_low_pfn
= max_low
- PHYS_PFN_OFFSET
;
364 max_pfn
= max_high
- PHYS_PFN_OFFSET
;
367 static inline int free_area(unsigned long pfn
, unsigned long end
, char *s
)
369 unsigned int pages
= 0, size
= (end
- pfn
) << (PAGE_SHIFT
- 10);
371 for (; pfn
< end
; pfn
++) {
372 struct page
*page
= pfn_to_page(pfn
);
373 ClearPageReserved(page
);
374 init_page_count(page
);
380 printk(KERN_INFO
"Freeing %s memory: %dK\n", s
, size
);
386 free_memmap(unsigned long start_pfn
, unsigned long end_pfn
)
388 struct page
*start_pg
, *end_pg
;
389 unsigned long pg
, pgend
;
392 * Convert start_pfn/end_pfn to a struct page pointer.
394 start_pg
= pfn_to_page(start_pfn
- 1) + 1;
395 end_pg
= pfn_to_page(end_pfn
);
398 * Convert to physical addresses, and
399 * round start upwards and end downwards.
401 pg
= PAGE_ALIGN(__pa(start_pg
));
402 pgend
= __pa(end_pg
) & PAGE_MASK
;
405 * If there are free pages between these,
406 * free the section of the memmap array.
409 free_bootmem(pg
, pgend
- pg
);
413 * The mem_map array can get very big. Free the unused area of the memory map.
415 static void __init
free_unused_memmap(struct meminfo
*mi
)
417 unsigned long bank_start
, prev_bank_end
= 0;
421 * This relies on each bank being in address order.
422 * The banks are sorted previously in bootmem_init().
424 for_each_bank(i
, mi
) {
425 struct membank
*bank
= &mi
->bank
[i
];
427 bank_start
= bank_pfn_start(bank
);
430 * If we had a previous bank, and there is a space
431 * between the current bank and the previous, free it.
433 if (prev_bank_end
&& prev_bank_end
< bank_start
)
434 free_memmap(prev_bank_end
, bank_start
);
437 * Align up here since the VM subsystem insists that the
438 * memmap entries are valid from the bank end aligned to
439 * MAX_ORDER_NR_PAGES.
441 prev_bank_end
= ALIGN(bank_pfn_end(bank
), MAX_ORDER_NR_PAGES
);
445 static void __init
free_highpages(void)
447 #ifdef CONFIG_HIGHMEM
448 unsigned long max_low
= max_low_pfn
+ PHYS_PFN_OFFSET
;
449 struct memblock_region
*mem
, *res
;
451 /* set highmem page free */
452 for_each_memblock(memory
, mem
) {
453 unsigned long start
= memblock_region_memory_base_pfn(mem
);
454 unsigned long end
= memblock_region_memory_end_pfn(mem
);
456 /* Ignore complete lowmem entries */
460 /* Truncate partial highmem entries */
464 /* Find and exclude any reserved regions */
465 for_each_memblock(reserved
, res
) {
466 unsigned long res_start
, res_end
;
468 res_start
= memblock_region_reserved_base_pfn(res
);
469 res_end
= memblock_region_reserved_end_pfn(res
);
473 if (res_start
< start
)
479 if (res_start
!= start
)
480 totalhigh_pages
+= free_area(start
, res_start
,
487 /* And now free anything which remains */
489 totalhigh_pages
+= free_area(start
, end
, NULL
);
491 totalram_pages
+= totalhigh_pages
;
496 * mem_init() marks the free areas in the mem_map and tells us how much
497 * memory is free. This is done after various parts of the system have
498 * claimed their memory after the kernel image.
500 void __init
mem_init(void)
502 unsigned long reserved_pages
, free_pages
;
503 struct memblock_region
*reg
;
505 #ifdef CONFIG_HAVE_TCM
506 /* These pointers are filled in on TCM detection */
511 max_mapnr
= pfn_to_page(max_pfn
+ PHYS_PFN_OFFSET
) - mem_map
;
513 /* this will put all unused low memory onto the freelists */
514 free_unused_memmap(&meminfo
);
516 totalram_pages
+= free_all_bootmem();
519 /* now that our DMA memory is actually so designated, we can free it */
520 totalram_pages
+= free_area(PHYS_PFN_OFFSET
,
521 __phys_to_pfn(__pa(swapper_pg_dir
)), NULL
);
526 reserved_pages
= free_pages
= 0;
528 for_each_bank(i
, &meminfo
) {
529 struct membank
*bank
= &meminfo
.bank
[i
];
530 unsigned int pfn1
, pfn2
;
531 struct page
*page
, *end
;
533 pfn1
= bank_pfn_start(bank
);
534 pfn2
= bank_pfn_end(bank
);
536 page
= pfn_to_page(pfn1
);
537 end
= pfn_to_page(pfn2
- 1) + 1;
540 if (PageReserved(page
))
542 else if (!page_count(page
))
545 } while (page
< end
);
549 * Since our memory may not be contiguous, calculate the
550 * real number of pages we have in this system
552 printk(KERN_INFO
"Memory:");
554 for_each_memblock(memory
, reg
) {
555 unsigned long pages
= memblock_region_memory_end_pfn(reg
) -
556 memblock_region_memory_base_pfn(reg
);
557 num_physpages
+= pages
;
558 printk(" %ldMB", pages
>> (20 - PAGE_SHIFT
));
560 printk(" = %luMB total\n", num_physpages
>> (20 - PAGE_SHIFT
));
562 printk(KERN_NOTICE
"Memory: %luk/%luk available, %luk reserved, %luK highmem\n",
563 nr_free_pages() << (PAGE_SHIFT
-10),
564 free_pages
<< (PAGE_SHIFT
-10),
565 reserved_pages
<< (PAGE_SHIFT
-10),
566 totalhigh_pages
<< (PAGE_SHIFT
-10));
568 #define MLK(b, t) b, t, ((t) - (b)) >> 10
569 #define MLM(b, t) b, t, ((t) - (b)) >> 20
570 #define MLK_ROUNDUP(b, t) b, t, DIV_ROUND_UP(((t) - (b)), SZ_1K)
572 printk(KERN_NOTICE
"Virtual kernel memory layout:\n"
573 " vector : 0x%08lx - 0x%08lx (%4ld kB)\n"
574 #ifdef CONFIG_HAVE_TCM
575 " DTCM : 0x%08lx - 0x%08lx (%4ld kB)\n"
576 " ITCM : 0x%08lx - 0x%08lx (%4ld kB)\n"
578 " fixmap : 0x%08lx - 0x%08lx (%4ld kB)\n"
580 " DMA : 0x%08lx - 0x%08lx (%4ld MB)\n"
582 " vmalloc : 0x%08lx - 0x%08lx (%4ld MB)\n"
583 " lowmem : 0x%08lx - 0x%08lx (%4ld MB)\n"
584 #ifdef CONFIG_HIGHMEM
585 " pkmap : 0x%08lx - 0x%08lx (%4ld MB)\n"
587 " modules : 0x%08lx - 0x%08lx (%4ld MB)\n"
588 " .init : 0x%p" " - 0x%p" " (%4d kB)\n"
589 " .text : 0x%p" " - 0x%p" " (%4d kB)\n"
590 " .data : 0x%p" " - 0x%p" " (%4d kB)\n",
592 MLK(UL(CONFIG_VECTORS_BASE
), UL(CONFIG_VECTORS_BASE
) +
594 #ifdef CONFIG_HAVE_TCM
595 MLK(DTCM_OFFSET
, (unsigned long) dtcm_end
),
596 MLK(ITCM_OFFSET
, (unsigned long) itcm_end
),
598 MLK(FIXADDR_START
, FIXADDR_TOP
),
600 MLM(CONSISTENT_BASE
, CONSISTENT_END
),
602 MLM(VMALLOC_START
, VMALLOC_END
),
603 MLM(PAGE_OFFSET
, (unsigned long)high_memory
),
604 #ifdef CONFIG_HIGHMEM
605 MLM(PKMAP_BASE
, (PKMAP_BASE
) + (LAST_PKMAP
) *
608 MLM(MODULES_VADDR
, MODULES_END
),
610 MLK_ROUNDUP(__init_begin
, __init_end
),
611 MLK_ROUNDUP(_text
, _etext
),
612 MLK_ROUNDUP(_sdata
, _edata
));
619 * Check boundaries twice: Some fundamental inconsistencies can
620 * be detected at build time already.
623 BUILD_BUG_ON(VMALLOC_END
> CONSISTENT_BASE
);
624 BUG_ON(VMALLOC_END
> CONSISTENT_BASE
);
626 BUILD_BUG_ON(TASK_SIZE
> MODULES_VADDR
);
627 BUG_ON(TASK_SIZE
> MODULES_VADDR
);
630 #ifdef CONFIG_HIGHMEM
631 BUILD_BUG_ON(PKMAP_BASE
+ LAST_PKMAP
* PAGE_SIZE
> PAGE_OFFSET
);
632 BUG_ON(PKMAP_BASE
+ LAST_PKMAP
* PAGE_SIZE
> PAGE_OFFSET
);
635 if (PAGE_SIZE
>= 16384 && num_physpages
<= 128) {
636 extern int sysctl_overcommit_memory
;
638 * On a machine this small we won't get
639 * anywhere without overcommit, so turn
642 sysctl_overcommit_memory
= OVERCOMMIT_ALWAYS
;
646 void free_initmem(void)
648 #ifdef CONFIG_HAVE_TCM
649 extern char __tcm_start
, __tcm_end
;
651 totalram_pages
+= free_area(__phys_to_pfn(__pa(&__tcm_start
)),
652 __phys_to_pfn(__pa(&__tcm_end
)),
656 if (!machine_is_integrator() && !machine_is_cintegrator())
657 totalram_pages
+= free_area(__phys_to_pfn(__pa(__init_begin
)),
658 __phys_to_pfn(__pa(__init_end
)),
662 #ifdef CONFIG_BLK_DEV_INITRD
664 static int keep_initrd
;
666 void free_initrd_mem(unsigned long start
, unsigned long end
)
669 totalram_pages
+= free_area(__phys_to_pfn(__pa(start
)),
670 __phys_to_pfn(__pa(end
)),
674 static int __init
keepinitrd_setup(char *__unused
)
680 __setup("keepinitrd", keepinitrd_setup
);