blob: 5164069ced42f0d0176369247fa40701292ea511 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/arm/mm/init.c
3 *
Russell King90072052005-10-28 14:48:37 +01004 * Copyright (C) 1995-2005 Russell King
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/kernel.h>
11#include <linux/errno.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#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>
Nicolas Pitre3835f6c2008-09-17 15:21:55 -040018#include <linux/highmem.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090019#include <linux/gfp.h>
Russell King2778f622010-07-09 16:27:52 +010020#include <linux/memblock.h>
Russell King7dc50ec2010-10-27 18:14:56 +010021#include <linux/sort.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
23#include <asm/mach-types.h>
Russell King37efe642008-12-01 11:53:07 +000024#include <asm/sections.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <asm/setup.h>
Russell King74d02fb2006-04-04 21:47:43 +010026#include <asm/sizes.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <asm/tlb.h>
Fenkart/Bostandzhyandb9ef1a2010-02-07 21:45:47 +010028#include <asm/fixmap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
30#include <asm/mach/arch.h>
31#include <asm/mach/map.h>
32
Russell King1b2e2b72006-08-21 17:06:38 +010033#include "mm.h"
34
Russell King012d1f42008-09-06 10:57:03 +010035static unsigned long phys_initrd_start __initdata = 0;
36static unsigned long phys_initrd_size __initdata = 0;
37
Jeremy Kerr2b0d8c22010-01-11 23:17:34 +010038static int __init early_initrd(char *p)
Russell King012d1f42008-09-06 10:57:03 +010039{
40 unsigned long start, size;
Jeremy Kerr2b0d8c22010-01-11 23:17:34 +010041 char *endp;
Russell King012d1f42008-09-06 10:57:03 +010042
Jeremy Kerr2b0d8c22010-01-11 23:17:34 +010043 start = memparse(p, &endp);
44 if (*endp == ',') {
45 size = memparse(endp + 1, NULL);
Russell King012d1f42008-09-06 10:57:03 +010046
47 phys_initrd_start = start;
48 phys_initrd_size = size;
49 }
Jeremy Kerr2b0d8c22010-01-11 23:17:34 +010050 return 0;
Russell King012d1f42008-09-06 10:57:03 +010051}
Jeremy Kerr2b0d8c22010-01-11 23:17:34 +010052early_param("initrd", early_initrd);
Russell King012d1f42008-09-06 10:57:03 +010053
54static int __init parse_tag_initrd(const struct tag *tag)
55{
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;
61}
62
63__tagtable(ATAG_INITRD, parse_tag_initrd);
64
65static int __init parse_tag_initrd2(const struct tag *tag)
66{
67 phys_initrd_start = tag->u.initrd.start;
68 phys_initrd_size = tag->u.initrd.size;
69 return 0;
70}
71
72__tagtable(ATAG_INITRD2, parse_tag_initrd2);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74/*
Nicolas Pitre4b5f32c2008-10-06 13:24:40 -040075 * 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().
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 */
Nicolas Pitre4b5f32c2008-10-06 13:24:40 -040079struct meminfo meminfo;
Ray Lehtiniemi5e709822006-11-07 03:19:15 +010080
Linus Torvalds1da177e2005-04-16 15:20:36 -070081void show_mem(void)
82{
83 int free = 0, total = 0, reserved = 0;
Russell Kingbe370302010-05-07 17:40:33 +010084 int shared = 0, cached = 0, slab = 0, i;
Ray Lehtiniemi5e709822006-11-07 03:19:15 +010085 struct meminfo * mi = &meminfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87 printk("Mem-info:\n");
88 show_free_areas();
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Russell Kingbe370302010-05-07 17:40:33 +010090 for_each_bank (i, mi) {
91 struct membank *bank = &mi->bank[i];
92 unsigned int pfn1, pfn2;
93 struct page *page, *end;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
Russell Kingbe370302010-05-07 17:40:33 +010095 pfn1 = bank_pfn_start(bank);
96 pfn2 = bank_pfn_end(bank);
Ray Lehtiniemi5e709822006-11-07 03:19:15 +010097
Russell Kingbe370302010-05-07 17:40:33 +010098 page = pfn_to_page(pfn1);
99 end = pfn_to_page(pfn2 - 1) + 1;
100
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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 }
116
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);
123}
124
Russell Kingf25b4b42010-10-27 19:49:33 +0100125static void __init find_limits(unsigned long *min, unsigned long *max_low,
126 unsigned long *max_high)
Russell Kingdde58282009-08-15 12:36:00 +0100127{
Russell Kingf25b4b42010-10-27 19:49:33 +0100128 struct meminfo *mi = &meminfo;
Russell Kingdde58282009-08-15 12:36:00 +0100129 int i;
130
131 *min = -1UL;
132 *max_low = *max_high = 0;
133
Russell Kingbe370302010-05-07 17:40:33 +0100134 for_each_bank (i, mi) {
Russell Kingdde58282009-08-15 12:36:00 +0100135 struct membank *bank = &mi->bank[i];
136 unsigned long start, end;
137
138 start = bank_pfn_start(bank);
139 end = bank_pfn_end(bank);
140
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;
149 }
150}
151
Russell Kinga801d272010-10-27 19:27:44 +0100152static void __init arm_bootmem_init(unsigned long start_pfn,
153 unsigned long end_pfn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154{
Benjamin Herrenschmidt719c15142010-08-05 12:55:55 +1000155 struct memblock_region *reg;
Russell King90072052005-10-28 14:48:37 +0100156 unsigned int boot_pages;
Russell King2778f622010-07-09 16:27:52 +0100157 phys_addr_t bitmap;
Russell King90072052005-10-28 14:48:37 +0100158 pg_data_t *pgdat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 /*
Russell King2778f622010-07-09 16:27:52 +0100161 * Allocate the bootmem bitmap page. This must be in a region
162 * of memory which has already been mapped.
Russell King90072052005-10-28 14:48:37 +0100163 */
164 boot_pages = bootmem_bootmap_pages(end_pfn - start_pfn);
Russell King2778f622010-07-09 16:27:52 +0100165 bitmap = memblock_alloc_base(boot_pages << PAGE_SHIFT, L1_CACHE_BYTES,
166 __pfn_to_phys(end_pfn));
Russell King90072052005-10-28 14:48:37 +0100167
168 /*
Russell Kingbe370302010-05-07 17:40:33 +0100169 * Initialise the bootmem allocator, handing the
Russell King90072052005-10-28 14:48:37 +0100170 * memory banks over to bootmem.
171 */
Russell Kingbe370302010-05-07 17:40:33 +0100172 node_set_online(0);
173 pgdat = NODE_DATA(0);
Russell King2778f622010-07-09 16:27:52 +0100174 init_bootmem_node(pgdat, __phys_to_pfn(bitmap), start_pfn, end_pfn);
Russell King90072052005-10-28 14:48:37 +0100175
Russell Kinga801d272010-10-27 19:27:44 +0100176 /* 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);
180
181 if (end >= end_pfn)
182 end = end_pfn;
183 if (start >= end)
184 break;
185
186 free_bootmem(__pfn_to_phys(start), (end - start) << PAGE_SHIFT);
Russell Kingd2a38ef2008-10-01 16:56:15 +0100187 }
Russell King90072052005-10-28 14:48:37 +0100188
Russell Kinga801d272010-10-27 19:27:44 +0100189 /* Reserve the lowmem memblock reserved regions in bootmem. */
Benjamin Herrenschmidt719c15142010-08-05 12:55:55 +1000190 for_each_memblock(reserved, reg) {
Russell Kinga801d272010-10-27 19:27:44 +0100191 unsigned long start = memblock_region_reserved_base_pfn(reg);
192 unsigned long end = memblock_region_reserved_end_pfn(reg);
193
194 if (end >= end_pfn)
195 end = end_pfn;
196 if (start >= end)
197 break;
198
199 reserve_bootmem(__pfn_to_phys(start),
200 (end - start) << PAGE_SHIFT, BOOTMEM_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 }
Russell Kingb7a69ac2008-10-01 16:58:32 +0100202}
203
Russell Kinga2c54d22010-10-27 19:17:31 +0100204static void __init arm_bootmem_free(unsigned long min, unsigned long max_low,
205 unsigned long max_high)
Russell Kingb7a69ac2008-10-01 16:58:32 +0100206{
207 unsigned long zone_size[MAX_NR_ZONES], zhole_size[MAX_NR_ZONES];
Russell Kinga2c54d22010-10-27 19:17:31 +0100208 struct memblock_region *reg;
Russell Kingb7a69ac2008-10-01 16:58:32 +0100209
Russell King90072052005-10-28 14:48:37 +0100210 /*
Russell Kingbe370302010-05-07 17:40:33 +0100211 * initialise the zones.
Russell King90072052005-10-28 14:48:37 +0100212 */
213 memset(zone_size, 0, sizeof(zone_size));
Russell King90072052005-10-28 14:48:37 +0100214
215 /*
Russell Kingbe370302010-05-07 17:40:33 +0100216 * 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.
Russell King90072052005-10-28 14:48:37 +0100219 */
Russell Kingdde58282009-08-15 12:36:00 +0100220 zone_size[0] = max_low - min;
221#ifdef CONFIG_HIGHMEM
222 zone_size[ZONE_HIGHMEM] = max_high - max_low;
223#endif
Russell King90072052005-10-28 14:48:37 +0100224
225 /*
Russell Kingbe370302010-05-07 17:40:33 +0100226 * Calculate the size of the holes.
227 * holes = node_size - sum(bank_sizes)
Russell King90072052005-10-28 14:48:37 +0100228 */
Russell Kingdde58282009-08-15 12:36:00 +0100229 memcpy(zhole_size, zone_size, sizeof(zhole_size));
Russell Kinga2c54d22010-10-27 19:17:31 +0100230 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);
233
234 if (start < max_low) {
235 unsigned long low_end = min(end, max_low);
236 zhole_size[0] -= low_end - start;
237 }
Russell Kingdde58282009-08-15 12:36:00 +0100238#ifdef CONFIG_HIGHMEM
Russell Kinga2c54d22010-10-27 19:17:31 +0100239 if (end > max_low) {
240 unsigned long high_start = max(start, max_low);
241 zhole_size[ZONE_HIGHMEM] -= end - high_start;
242 }
Russell Kingdde58282009-08-15 12:36:00 +0100243#endif
Russell Kingdde58282009-08-15 12:36:00 +0100244 }
Russell King90072052005-10-28 14:48:37 +0100245
246 /*
247 * Adjust the sizes according to any special requirements for
248 * this machine type.
249 */
Russell Kingb65b4782010-05-22 20:58:51 +0100250 arch_adjust_zones(zone_size, zhole_size);
Russell King90072052005-10-28 14:48:37 +0100251
Russell Kingbe370302010-05-07 17:40:33 +0100252 free_area_init_node(0, zone_size, min, zhole_size);
Russell King90072052005-10-28 14:48:37 +0100253}
254
Russell Kingb7cfda92009-09-07 15:06:42 +0100255#ifndef CONFIG_SPARSEMEM
256int pfn_valid(unsigned long pfn)
257{
Benjamin Herrenschmidt5e6f6aa2010-08-04 13:23:02 +1000258 return memblock_is_memory(pfn << PAGE_SHIFT);
Russell Kingb7cfda92009-09-07 15:06:42 +0100259}
260EXPORT_SYMBOL(pfn_valid);
Russell King657e12f2009-10-29 17:06:17 +0000261
Russell Kingeda2e5d2010-07-01 12:00:57 +0100262static void arm_memory_present(void)
Russell King657e12f2009-10-29 17:06:17 +0000263{
264}
265#else
Russell Kingeda2e5d2010-07-01 12:00:57 +0100266static void arm_memory_present(void)
Russell King657e12f2009-10-29 17:06:17 +0000267{
Benjamin Herrenschmidt719c15142010-08-05 12:55:55 +1000268 struct memblock_region *reg;
Benjamin Herrenschmidt719c15142010-08-05 12:55:55 +1000269
Yinghai Lu7c996362010-09-16 00:20:36 -0700270 for_each_memblock(memory, reg)
Yinghai Luc7fc2de2010-10-12 14:07:09 -0700271 memory_present(0, memblock_region_memory_base_pfn(reg),
272 memblock_region_memory_end_pfn(reg));
Russell King657e12f2009-10-29 17:06:17 +0000273}
Russell Kingb7cfda92009-09-07 15:06:42 +0100274#endif
275
Russell King7dc50ec2010-10-27 18:14:56 +0100276static int __init meminfo_cmp(const void *_a, const void *_b)
277{
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;
281}
282
Russell King8d717a52010-05-22 19:47:18 +0100283void __init arm_memblock_init(struct meminfo *mi, struct machine_desc *mdesc)
Russell King2778f622010-07-09 16:27:52 +0100284{
285 int i;
286
Russell King7dc50ec2010-10-27 18:14:56 +0100287 sort(&meminfo.bank, meminfo.nr_banks, sizeof(meminfo.bank[0]), meminfo_cmp, NULL);
288
Russell King2778f622010-07-09 16:27:52 +0100289 memblock_init();
290 for (i = 0; i < mi->nr_banks; i++)
291 memblock_add(mi->bank[i].start, mi->bank[i].size);
292
293 /* Register the kernel text, kernel data and initrd with memblock. */
294#ifdef CONFIG_XIP_KERNEL
Russell King842eab42010-10-01 14:12:22 +0100295 memblock_reserve(__pa(_sdata), _end - _sdata);
Russell King2778f622010-07-09 16:27:52 +0100296#else
297 memblock_reserve(__pa(_stext), _end - _stext);
298#endif
299#ifdef CONFIG_BLK_DEV_INITRD
300 if (phys_initrd_size) {
301 memblock_reserve(phys_initrd_start, phys_initrd_size);
302
303 /* Now convert initrd to virtual addresses */
304 initrd_start = __phys_to_virt(phys_initrd_start);
305 initrd_end = initrd_start + phys_initrd_size;
306 }
307#endif
308
309 arm_mm_memblock_reserve();
310
Russell King8d717a52010-05-22 19:47:18 +0100311 /* reserve any platform specific memblock areas */
312 if (mdesc->reserve)
313 mdesc->reserve();
314
Russell King2778f622010-07-09 16:27:52 +0100315 memblock_analyze();
316 memblock_dump_all();
317}
318
Russell King8d717a52010-05-22 19:47:18 +0100319void __init bootmem_init(void)
Russell King90072052005-10-28 14:48:37 +0100320{
Russell Kingdde58282009-08-15 12:36:00 +0100321 unsigned long min, max_low, max_high;
Russell King90072052005-10-28 14:48:37 +0100322
Russell Kingdde58282009-08-15 12:36:00 +0100323 max_low = max_high = 0;
324
Russell Kingf25b4b42010-10-27 19:49:33 +0100325 find_limits(&min, &max_low, &max_high);
Russell Kingbe370302010-05-07 17:40:33 +0100326
Russell Kinga801d272010-10-27 19:27:44 +0100327 arm_bootmem_init(min, max_low);
Russell Kingbe370302010-05-07 17:40:33 +0100328
Russell Kingbe370302010-05-07 17:40:33 +0100329 /*
Russell Kingbe370302010-05-07 17:40:33 +0100330 * Sparsemem tries to allocate bootmem in memory_present(),
331 * so must be done after the fixed reservations
332 */
Russell Kingeda2e5d2010-07-01 12:00:57 +0100333 arm_memory_present();
Russell King90072052005-10-28 14:48:37 +0100334
Russell Kingb7a69ac2008-10-01 16:58:32 +0100335 /*
336 * sparse_init() needs the bootmem allocator up and running.
337 */
338 sparse_init();
339
340 /*
Russell Kingbe370302010-05-07 17:40:33 +0100341 * Now free the memory - free_area_init_node needs
Russell Kingb7a69ac2008-10-01 16:58:32 +0100342 * the sparse mem_map arrays initialized by sparse_init()
343 * for memmap_init_zone(), otherwise all PFNs are invalid.
344 */
Russell Kinga2c54d22010-10-27 19:17:31 +0100345 arm_bootmem_free(min, max_low, max_high);
Russell Kingb7a69ac2008-10-01 16:58:32 +0100346
Russell Kingdde58282009-08-15 12:36:00 +0100347 high_memory = __va((max_low << PAGE_SHIFT) - 1) + 1;
Russell King90072052005-10-28 14:48:37 +0100348
349 /*
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.
353 *
354 * Note: max_low_pfn and max_pfn reflect the number of _pages_ in
355 * the system, not the maximum PFN.
356 */
Russell Kingdde58282009-08-15 12:36:00 +0100357 max_low_pfn = max_low - PHYS_PFN_OFFSET;
358 max_pfn = max_high - PHYS_PFN_OFFSET;
Russell King90072052005-10-28 14:48:37 +0100359}
360
Nicolas Pitre6db015e2008-09-17 14:50:42 -0400361static inline int free_area(unsigned long pfn, unsigned long end, char *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362{
Nicolas Pitre6db015e2008-09-17 14:50:42 -0400363 unsigned int pages = 0, size = (end - pfn) << (PAGE_SHIFT - 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
Nicolas Pitre6db015e2008-09-17 14:50:42 -0400365 for (; pfn < end; pfn++) {
366 struct page *page = pfn_to_page(pfn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 ClearPageReserved(page);
Nick Piggin7835e982006-03-22 00:08:40 -0800368 init_page_count(page);
Nicolas Pitre6db015e2008-09-17 14:50:42 -0400369 __free_page(page);
370 pages++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 }
372
373 if (size && s)
374 printk(KERN_INFO "Freeing %s memory: %dK\n", s, size);
Nicolas Pitre6db015e2008-09-17 14:50:42 -0400375
376 return pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377}
378
Russell Kinga0130532005-06-27 14:16:47 +0100379static inline void
Russell Kingbe370302010-05-07 17:40:33 +0100380free_memmap(unsigned long start_pfn, unsigned long end_pfn)
Russell Kinga0130532005-06-27 14:16:47 +0100381{
382 struct page *start_pg, *end_pg;
383 unsigned long pg, pgend;
384
385 /*
386 * Convert start_pfn/end_pfn to a struct page pointer.
387 */
Catalin Marinas3257f432009-10-06 17:57:22 +0100388 start_pg = pfn_to_page(start_pfn - 1) + 1;
Russell Kinga0130532005-06-27 14:16:47 +0100389 end_pg = pfn_to_page(end_pfn);
390
391 /*
392 * Convert to physical addresses, and
393 * round start upwards and end downwards.
394 */
395 pg = PAGE_ALIGN(__pa(start_pg));
396 pgend = __pa(end_pg) & PAGE_MASK;
397
398 /*
399 * If there are free pages between these,
400 * free the section of the memmap array.
401 */
402 if (pg < pgend)
Russell Kingbe370302010-05-07 17:40:33 +0100403 free_bootmem(pg, pgend - pg);
Russell Kinga0130532005-06-27 14:16:47 +0100404}
405
406/*
407 * The mem_map array can get very big. Free the unused area of the memory map.
408 */
Russell Kingbe370302010-05-07 17:40:33 +0100409static void __init free_unused_memmap(struct meminfo *mi)
Russell Kinga0130532005-06-27 14:16:47 +0100410{
411 unsigned long bank_start, prev_bank_end = 0;
412 unsigned int i;
413
414 /*
Michael Bohan3260e522010-06-14 13:06:56 -0700415 * This relies on each bank being in address order.
416 * The banks are sorted previously in bootmem_init().
Russell Kinga0130532005-06-27 14:16:47 +0100417 */
Russell Kingbe370302010-05-07 17:40:33 +0100418 for_each_bank(i, mi) {
Russell Kingd2a38ef2008-10-01 16:56:15 +0100419 struct membank *bank = &mi->bank[i];
420
421 bank_start = bank_pfn_start(bank);
Russell Kinga0130532005-06-27 14:16:47 +0100422
423 /*
424 * If we had a previous bank, and there is a space
425 * between the current bank and the previous, free it.
426 */
Michael Bohan3260e522010-06-14 13:06:56 -0700427 if (prev_bank_end && prev_bank_end < bank_start)
Russell Kingbe370302010-05-07 17:40:33 +0100428 free_memmap(prev_bank_end, bank_start);
Russell Kinga0130532005-06-27 14:16:47 +0100429
Michael Bohan3260e522010-06-14 13:06:56 -0700430 /*
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.
434 */
435 prev_bank_end = ALIGN(bank_pfn_end(bank), MAX_ORDER_NR_PAGES);
Russell Kinga0130532005-06-27 14:16:47 +0100436 }
437}
438
Russell Kingd0e775a2010-10-27 19:37:06 +0100439static void __init free_highpages(void)
440{
441#ifdef CONFIG_HIGHMEM
Russell Kingdf4f14c2010-10-27 19:45:49 +0100442 unsigned long max_low = max_low_pfn + PHYS_PFN_OFFSET;
443 struct memblock_region *mem, *res;
Russell Kingd0e775a2010-10-27 19:37:06 +0100444
445 /* set highmem page free */
Russell Kingdf4f14c2010-10-27 19:45:49 +0100446 for_each_memblock(memory, mem) {
447 unsigned long start = memblock_region_memory_base_pfn(mem);
448 unsigned long end = memblock_region_memory_end_pfn(mem);
449
450 /* Ignore complete lowmem entries */
451 if (end <= max_low)
452 continue;
453
454 /* Truncate partial highmem entries */
455 if (start < max_low)
456 start = max_low;
457
458 /* Find and exclude any reserved regions */
459 for_each_memblock(reserved, res) {
460 unsigned long res_start, res_end;
461
462 res_start = memblock_region_reserved_base_pfn(res);
463 res_end = memblock_region_reserved_end_pfn(res);
464
465 if (res_end < start)
466 continue;
467 if (res_start < start)
468 res_start = start;
469 if (res_start > end)
470 res_start = end;
471 if (res_end > end)
472 res_end = end;
473 if (res_start != start)
474 totalhigh_pages += free_area(start, res_start,
475 NULL);
476 start = res_end;
477 if (start == end)
478 break;
479 }
480
481 /* And now free anything which remains */
482 if (start < end)
Russell Kingd0e775a2010-10-27 19:37:06 +0100483 totalhigh_pages += free_area(start, end, NULL);
484 }
485 totalram_pages += totalhigh_pages;
486#endif
487}
488
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489/*
490 * mem_init() marks the free areas in the mem_map and tells us how much
491 * memory is free. This is done after various parts of the system have
492 * claimed their memory after the kernel image.
493 */
494void __init mem_init(void)
495{
Fenkart/Bostandzhyandb9ef1a2010-02-07 21:45:47 +0100496 unsigned long reserved_pages, free_pages;
Russell King47ea3c12010-10-27 19:35:29 +0100497 struct memblock_region *reg;
Russell Kingbe370302010-05-07 17:40:33 +0100498 int i;
Linus Walleij1dbd30e2010-07-12 21:53:28 +0100499#ifdef CONFIG_HAVE_TCM
500 /* These pointers are filled in on TCM detection */
501 extern u32 dtcm_end;
502 extern u32 itcm_end;
503#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
Nicolas Pitre3835f6c2008-09-17 15:21:55 -0400505 max_mapnr = pfn_to_page(max_pfn + PHYS_PFN_OFFSET) - mem_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 /* this will put all unused low memory onto the freelists */
Russell Kingbe370302010-05-07 17:40:33 +0100508 free_unused_memmap(&meminfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
Russell Kingbe370302010-05-07 17:40:33 +0100510 totalram_pages += free_all_bootmem();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
512#ifdef CONFIG_SA1111
513 /* now that our DMA memory is actually so designated, we can free it */
Nicolas Pitre6db015e2008-09-17 14:50:42 -0400514 totalram_pages += free_area(PHYS_PFN_OFFSET,
515 __phys_to_pfn(__pa(swapper_pg_dir)), NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516#endif
517
Russell Kingd0e775a2010-10-27 19:37:06 +0100518 free_highpages();
Nicolas Pitre3835f6c2008-09-17 15:21:55 -0400519
Fenkart/Bostandzhyandb9ef1a2010-02-07 21:45:47 +0100520 reserved_pages = free_pages = 0;
521
Russell Kingbe370302010-05-07 17:40:33 +0100522 for_each_bank(i, &meminfo) {
523 struct membank *bank = &meminfo.bank[i];
524 unsigned int pfn1, pfn2;
525 struct page *page, *end;
Fenkart/Bostandzhyandb9ef1a2010-02-07 21:45:47 +0100526
Russell Kingbe370302010-05-07 17:40:33 +0100527 pfn1 = bank_pfn_start(bank);
528 pfn2 = bank_pfn_end(bank);
Fenkart/Bostandzhyandb9ef1a2010-02-07 21:45:47 +0100529
Russell Kingbe370302010-05-07 17:40:33 +0100530 page = pfn_to_page(pfn1);
531 end = pfn_to_page(pfn2 - 1) + 1;
Fenkart/Bostandzhyandb9ef1a2010-02-07 21:45:47 +0100532
Russell Kingbe370302010-05-07 17:40:33 +0100533 do {
534 if (PageReserved(page))
535 reserved_pages++;
536 else if (!page_count(page))
537 free_pages++;
538 page++;
539 } while (page < end);
Fenkart/Bostandzhyandb9ef1a2010-02-07 21:45:47 +0100540 }
541
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 /*
543 * Since our memory may not be contiguous, calculate the
544 * real number of pages we have in this system
545 */
546 printk(KERN_INFO "Memory:");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 num_physpages = 0;
Russell King47ea3c12010-10-27 19:35:29 +0100548 for_each_memblock(memory, reg) {
549 unsigned long pages = memblock_region_memory_end_pfn(reg) -
550 memblock_region_memory_base_pfn(reg);
551 num_physpages += pages;
552 printk(" %ldMB", pages >> (20 - PAGE_SHIFT));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 printk(" = %luMB total\n", num_physpages >> (20 - PAGE_SHIFT));
Nicolas Pitre6db015e2008-09-17 14:50:42 -0400555
Fenkart/Bostandzhyandb9ef1a2010-02-07 21:45:47 +0100556 printk(KERN_NOTICE "Memory: %luk/%luk available, %luk reserved, %luK highmem\n",
557 nr_free_pages() << (PAGE_SHIFT-10),
558 free_pages << (PAGE_SHIFT-10),
559 reserved_pages << (PAGE_SHIFT-10),
Andreas Fenkart4b529402010-01-08 14:42:31 -0800560 totalhigh_pages << (PAGE_SHIFT-10));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
Fenkart/Bostandzhyandb9ef1a2010-02-07 21:45:47 +0100562#define MLK(b, t) b, t, ((t) - (b)) >> 10
563#define MLM(b, t) b, t, ((t) - (b)) >> 20
564#define MLK_ROUNDUP(b, t) b, t, DIV_ROUND_UP(((t) - (b)), SZ_1K)
565
566 printk(KERN_NOTICE "Virtual kernel memory layout:\n"
567 " vector : 0x%08lx - 0x%08lx (%4ld kB)\n"
Linus Walleij07d2a5c2010-07-12 21:52:34 +0100568#ifdef CONFIG_HAVE_TCM
Linus Walleij07d2a5c2010-07-12 21:52:34 +0100569 " DTCM : 0x%08lx - 0x%08lx (%4ld kB)\n"
Linus Walleij07d2a5c2010-07-12 21:52:34 +0100570 " ITCM : 0x%08lx - 0x%08lx (%4ld kB)\n"
571#endif
Fenkart/Bostandzhyandb9ef1a2010-02-07 21:45:47 +0100572 " fixmap : 0x%08lx - 0x%08lx (%4ld kB)\n"
Fenkart/Bostandzhyana7bd08c2010-02-07 21:46:33 +0100573#ifdef CONFIG_MMU
574 " DMA : 0x%08lx - 0x%08lx (%4ld MB)\n"
575#endif
Fenkart/Bostandzhyandb9ef1a2010-02-07 21:45:47 +0100576 " vmalloc : 0x%08lx - 0x%08lx (%4ld MB)\n"
577 " lowmem : 0x%08lx - 0x%08lx (%4ld MB)\n"
578#ifdef CONFIG_HIGHMEM
579 " pkmap : 0x%08lx - 0x%08lx (%4ld MB)\n"
580#endif
581 " modules : 0x%08lx - 0x%08lx (%4ld MB)\n"
582 " .init : 0x%p" " - 0x%p" " (%4d kB)\n"
583 " .text : 0x%p" " - 0x%p" " (%4d kB)\n"
584 " .data : 0x%p" " - 0x%p" " (%4d kB)\n",
585
586 MLK(UL(CONFIG_VECTORS_BASE), UL(CONFIG_VECTORS_BASE) +
587 (PAGE_SIZE)),
Linus Walleij07d2a5c2010-07-12 21:52:34 +0100588#ifdef CONFIG_HAVE_TCM
Linus Walleij1dbd30e2010-07-12 21:53:28 +0100589 MLK(DTCM_OFFSET, (unsigned long) dtcm_end),
590 MLK(ITCM_OFFSET, (unsigned long) itcm_end),
Linus Walleij07d2a5c2010-07-12 21:52:34 +0100591#endif
Fenkart/Bostandzhyandb9ef1a2010-02-07 21:45:47 +0100592 MLK(FIXADDR_START, FIXADDR_TOP),
Fenkart/Bostandzhyana7bd08c2010-02-07 21:46:33 +0100593#ifdef CONFIG_MMU
594 MLM(CONSISTENT_BASE, CONSISTENT_END),
595#endif
Fenkart/Bostandzhyanc931b4f2010-02-07 21:47:17 +0100596 MLM(VMALLOC_START, VMALLOC_END),
Fenkart/Bostandzhyandb9ef1a2010-02-07 21:45:47 +0100597 MLM(PAGE_OFFSET, (unsigned long)high_memory),
598#ifdef CONFIG_HIGHMEM
599 MLM(PKMAP_BASE, (PKMAP_BASE) + (LAST_PKMAP) *
600 (PAGE_SIZE)),
601#endif
602 MLM(MODULES_VADDR, MODULES_END),
603
604 MLK_ROUNDUP(__init_begin, __init_end),
605 MLK_ROUNDUP(_text, _etext),
Russell King842eab42010-10-01 14:12:22 +0100606 MLK_ROUNDUP(_sdata, _edata));
Fenkart/Bostandzhyandb9ef1a2010-02-07 21:45:47 +0100607
608#undef MLK
609#undef MLM
610#undef MLK_ROUNDUP
611
Fenkart/Bostandzhyana1839272010-02-07 21:47:58 +0100612 /*
613 * Check boundaries twice: Some fundamental inconsistencies can
614 * be detected at build time already.
615 */
616#ifdef CONFIG_MMU
617 BUILD_BUG_ON(VMALLOC_END > CONSISTENT_BASE);
618 BUG_ON(VMALLOC_END > CONSISTENT_BASE);
619
620 BUILD_BUG_ON(TASK_SIZE > MODULES_VADDR);
621 BUG_ON(TASK_SIZE > MODULES_VADDR);
622#endif
623
624#ifdef CONFIG_HIGHMEM
625 BUILD_BUG_ON(PKMAP_BASE + LAST_PKMAP * PAGE_SIZE > PAGE_OFFSET);
626 BUG_ON(PKMAP_BASE + LAST_PKMAP * PAGE_SIZE > PAGE_OFFSET);
627#endif
628
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 if (PAGE_SIZE >= 16384 && num_physpages <= 128) {
630 extern int sysctl_overcommit_memory;
631 /*
632 * On a machine this small we won't get
633 * anywhere without overcommit, so turn
634 * it on by default.
635 */
636 sysctl_overcommit_memory = OVERCOMMIT_ALWAYS;
637 }
638}
639
640void free_initmem(void)
641{
Linus Walleijbc581772009-09-15 17:30:37 +0100642#ifdef CONFIG_HAVE_TCM
Linus Walleijea208f62010-05-26 07:37:57 +0100643 extern char __tcm_start, __tcm_end;
Linus Walleijbc581772009-09-15 17:30:37 +0100644
Linus Walleijea208f62010-05-26 07:37:57 +0100645 totalram_pages += free_area(__phys_to_pfn(__pa(&__tcm_start)),
646 __phys_to_pfn(__pa(&__tcm_end)),
Linus Walleijbc581772009-09-15 17:30:37 +0100647 "TCM link");
648#endif
649
Nicolas Pitre6db015e2008-09-17 14:50:42 -0400650 if (!machine_is_integrator() && !machine_is_cintegrator())
Russell King37efe642008-12-01 11:53:07 +0000651 totalram_pages += free_area(__phys_to_pfn(__pa(__init_begin)),
652 __phys_to_pfn(__pa(__init_end)),
Nicolas Pitre6db015e2008-09-17 14:50:42 -0400653 "init");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654}
655
656#ifdef CONFIG_BLK_DEV_INITRD
657
658static int keep_initrd;
659
660void free_initrd_mem(unsigned long start, unsigned long end)
661{
662 if (!keep_initrd)
Nicolas Pitre6db015e2008-09-17 14:50:42 -0400663 totalram_pages += free_area(__phys_to_pfn(__pa(start)),
664 __phys_to_pfn(__pa(end)),
665 "initrd");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666}
667
668static int __init keepinitrd_setup(char *__unused)
669{
670 keep_initrd = 1;
671 return 1;
672}
673
674__setup("keepinitrd", keepinitrd_setup);
675#endif