blob: 1a227eea64bd9b735aad2e8a4758c51184d78d71 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
21#include <asm/mach-types.h>
Russell King37efe642008-12-01 11:53:07 +000022#include <asm/sections.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <asm/setup.h>
Russell King74d02fb2006-04-04 21:47:43 +010024#include <asm/sizes.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <asm/tlb.h>
Fenkart/Bostandzhyandb9ef1a2010-02-07 21:45:47 +010026#include <asm/fixmap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
28#include <asm/mach/arch.h>
29#include <asm/mach/map.h>
30
Russell King1b2e2b72006-08-21 17:06:38 +010031#include "mm.h"
32
Russell King012d1f42008-09-06 10:57:03 +010033static unsigned long phys_initrd_start __initdata = 0;
34static unsigned long phys_initrd_size __initdata = 0;
35
Jeremy Kerr2b0d8c22010-01-11 23:17:34 +010036static int __init early_initrd(char *p)
Russell King012d1f42008-09-06 10:57:03 +010037{
38 unsigned long start, size;
Jeremy Kerr2b0d8c22010-01-11 23:17:34 +010039 char *endp;
Russell King012d1f42008-09-06 10:57:03 +010040
Jeremy Kerr2b0d8c22010-01-11 23:17:34 +010041 start = memparse(p, &endp);
42 if (*endp == ',') {
43 size = memparse(endp + 1, NULL);
Russell King012d1f42008-09-06 10:57:03 +010044
45 phys_initrd_start = start;
46 phys_initrd_size = size;
47 }
Jeremy Kerr2b0d8c22010-01-11 23:17:34 +010048 return 0;
Russell King012d1f42008-09-06 10:57:03 +010049}
Jeremy Kerr2b0d8c22010-01-11 23:17:34 +010050early_param("initrd", early_initrd);
Russell King012d1f42008-09-06 10:57:03 +010051
52static int __init parse_tag_initrd(const struct tag *tag)
53{
54 printk(KERN_WARNING "ATAG_INITRD is deprecated; "
55 "please update your bootloader.\n");
56 phys_initrd_start = __virt_to_phys(tag->u.initrd.start);
57 phys_initrd_size = tag->u.initrd.size;
58 return 0;
59}
60
61__tagtable(ATAG_INITRD, parse_tag_initrd);
62
63static int __init parse_tag_initrd2(const struct tag *tag)
64{
65 phys_initrd_start = tag->u.initrd.start;
66 phys_initrd_size = tag->u.initrd.size;
67 return 0;
68}
69
70__tagtable(ATAG_INITRD2, parse_tag_initrd2);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
72/*
Nicolas Pitre4b5f32c2008-10-06 13:24:40 -040073 * This keeps memory configuration data used by a couple memory
74 * initialization functions, as well as show_mem() for the skipping
75 * of holes in the memory map. It is populated by arm_add_memory().
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 */
Nicolas Pitre4b5f32c2008-10-06 13:24:40 -040077struct meminfo meminfo;
Ray Lehtiniemi5e709822006-11-07 03:19:15 +010078
Linus Torvalds1da177e2005-04-16 15:20:36 -070079void show_mem(void)
80{
81 int free = 0, total = 0, reserved = 0;
Russell Kingbe370302010-05-07 17:40:33 +010082 int shared = 0, cached = 0, slab = 0, i;
Ray Lehtiniemi5e709822006-11-07 03:19:15 +010083 struct meminfo * mi = &meminfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
85 printk("Mem-info:\n");
86 show_free_areas();
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Russell Kingbe370302010-05-07 17:40:33 +010088 for_each_bank (i, mi) {
89 struct membank *bank = &mi->bank[i];
90 unsigned int pfn1, pfn2;
91 struct page *page, *end;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Russell Kingbe370302010-05-07 17:40:33 +010093 pfn1 = bank_pfn_start(bank);
94 pfn2 = bank_pfn_end(bank);
Ray Lehtiniemi5e709822006-11-07 03:19:15 +010095
Russell Kingbe370302010-05-07 17:40:33 +010096 page = pfn_to_page(pfn1);
97 end = pfn_to_page(pfn2 - 1) + 1;
98
99 do {
100 total++;
101 if (PageReserved(page))
102 reserved++;
103 else if (PageSwapCache(page))
104 cached++;
105 else if (PageSlab(page))
106 slab++;
107 else if (!page_count(page))
108 free++;
109 else
110 shared += page_count(page) - 1;
111 page++;
112 } while (page < end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 }
114
115 printk("%d pages of RAM\n", total);
116 printk("%d free pages\n", free);
117 printk("%d reserved pages\n", reserved);
118 printk("%d slab pages\n", slab);
119 printk("%d pages shared\n", shared);
120 printk("%d pages swap cached\n", cached);
121}
122
Russell Kingbe370302010-05-07 17:40:33 +0100123static void __init find_limits(struct meminfo *mi,
Russell Kingdde58282009-08-15 12:36:00 +0100124 unsigned long *min, unsigned long *max_low, unsigned long *max_high)
125{
126 int i;
127
128 *min = -1UL;
129 *max_low = *max_high = 0;
130
Russell Kingbe370302010-05-07 17:40:33 +0100131 for_each_bank (i, mi) {
Russell Kingdde58282009-08-15 12:36:00 +0100132 struct membank *bank = &mi->bank[i];
133 unsigned long start, end;
134
135 start = bank_pfn_start(bank);
136 end = bank_pfn_end(bank);
137
138 if (*min > start)
139 *min = start;
140 if (*max_high < end)
141 *max_high = end;
142 if (bank->highmem)
143 continue;
144 if (*max_low < end)
145 *max_low = end;
146 }
147}
148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149/*
150 * FIXME: We really want to avoid allocating the bootmap bitmap
151 * over the top of the initrd. Hopefully, this is located towards
152 * the start of a bank, so if we allocate the bootmap bitmap at
153 * the end, we won't clash.
154 */
155static unsigned int __init
Russell Kingbe370302010-05-07 17:40:33 +0100156find_bootmap_pfn(struct meminfo *mi, unsigned int bootmap_pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157{
Russell Kingd2a38ef2008-10-01 16:56:15 +0100158 unsigned int start_pfn, i, bootmap_pfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
Russell King37efe642008-12-01 11:53:07 +0000160 start_pfn = PAGE_ALIGN(__pa(_end)) >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 bootmap_pfn = 0;
162
Russell Kingbe370302010-05-07 17:40:33 +0100163 for_each_bank(i, mi) {
Russell Kingd2a38ef2008-10-01 16:56:15 +0100164 struct membank *bank = &mi->bank[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 unsigned int start, end;
166
Russell Kingd2a38ef2008-10-01 16:56:15 +0100167 start = bank_pfn_start(bank);
168 end = bank_pfn_end(bank);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
170 if (end < start_pfn)
171 continue;
172
173 if (start < start_pfn)
174 start = start_pfn;
175
176 if (end <= start)
177 continue;
178
179 if (end - start >= bootmap_pages) {
180 bootmap_pfn = start;
181 break;
182 }
183 }
184
185 if (bootmap_pfn == 0)
186 BUG();
187
188 return bootmap_pfn;
189}
190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191static int __init check_initrd(struct meminfo *mi)
192{
Russell Kingbe370302010-05-07 17:40:33 +0100193 int initrd = -2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194#ifdef CONFIG_BLK_DEV_INITRD
195 unsigned long end = phys_initrd_start + phys_initrd_size;
196
197 /*
198 * Make sure that the initrd is within a valid area of
199 * memory.
200 */
201 if (phys_initrd_size) {
202 unsigned int i;
203
Russell Kingbe370302010-05-07 17:40:33 +0100204 initrd = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
206 for (i = 0; i < mi->nr_banks; i++) {
Russell Kingd2a38ef2008-10-01 16:56:15 +0100207 struct membank *bank = &mi->bank[i];
208 if (bank_phys_start(bank) <= phys_initrd_start &&
209 end <= bank_phys_end(bank))
Russell Kingbe370302010-05-07 17:40:33 +0100210 initrd = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 }
212 }
213
Russell Kingbe370302010-05-07 17:40:33 +0100214 if (initrd == -1) {
Russell Kingb962a282008-07-30 21:24:56 +0100215 printk(KERN_ERR "INITRD: 0x%08lx+0x%08lx extends beyond "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 "physical memory - disabling initrd\n",
Russell Kingb962a282008-07-30 21:24:56 +0100217 phys_initrd_start, phys_initrd_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 phys_initrd_start = phys_initrd_size = 0;
219 }
220#endif
221
Russell Kingbe370302010-05-07 17:40:33 +0100222 return initrd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223}
224
Russell Kingbe370302010-05-07 17:40:33 +0100225static void __init arm_bootmem_init(struct meminfo *mi,
Russell Kingdde58282009-08-15 12:36:00 +0100226 unsigned long start_pfn, unsigned long end_pfn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227{
Russell Kingdde58282009-08-15 12:36:00 +0100228 unsigned long boot_pfn;
Russell King90072052005-10-28 14:48:37 +0100229 unsigned int boot_pages;
230 pg_data_t *pgdat;
231 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 /*
Russell King90072052005-10-28 14:48:37 +0100234 * Allocate the bootmem bitmap page.
235 */
236 boot_pages = bootmem_bootmap_pages(end_pfn - start_pfn);
Russell Kingbe370302010-05-07 17:40:33 +0100237 boot_pfn = find_bootmap_pfn(mi, boot_pages);
Russell King90072052005-10-28 14:48:37 +0100238
239 /*
Russell Kingbe370302010-05-07 17:40:33 +0100240 * Initialise the bootmem allocator, handing the
Russell King90072052005-10-28 14:48:37 +0100241 * memory banks over to bootmem.
242 */
Russell Kingbe370302010-05-07 17:40:33 +0100243 node_set_online(0);
244 pgdat = NODE_DATA(0);
Russell King90072052005-10-28 14:48:37 +0100245 init_bootmem_node(pgdat, boot_pfn, start_pfn, end_pfn);
246
Russell Kingbe370302010-05-07 17:40:33 +0100247 for_each_bank(i, mi) {
Russell Kingd2a38ef2008-10-01 16:56:15 +0100248 struct membank *bank = &mi->bank[i];
Russell Kingdde58282009-08-15 12:36:00 +0100249 if (!bank->highmem)
Russell Kingbe370302010-05-07 17:40:33 +0100250 free_bootmem(bank_phys_start(bank), bank_phys_size(bank));
Russell Kingd2a38ef2008-10-01 16:56:15 +0100251 }
Russell King90072052005-10-28 14:48:37 +0100252
253 /*
Russell Kingbe370302010-05-07 17:40:33 +0100254 * Reserve the bootmem bitmap.
Russell King90072052005-10-28 14:48:37 +0100255 */
Russell Kingbe370302010-05-07 17:40:33 +0100256 reserve_bootmem(boot_pfn << PAGE_SHIFT,
257 boot_pages << PAGE_SHIFT, BOOTMEM_DEFAULT);
Russell Kingb7a69ac2008-10-01 16:58:32 +0100258}
Russell Kingb962a282008-07-30 21:24:56 +0100259
Russell Kingbe370302010-05-07 17:40:33 +0100260static void __init bootmem_reserve_initrd(void)
Russell Kingb7a69ac2008-10-01 16:58:32 +0100261{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262#ifdef CONFIG_BLK_DEV_INITRD
Russell Kingb7a69ac2008-10-01 16:58:32 +0100263 int res;
Russell Kingb962a282008-07-30 21:24:56 +0100264
Russell Kingbe370302010-05-07 17:40:33 +0100265 res = reserve_bootmem(phys_initrd_start,
266 phys_initrd_size, BOOTMEM_EXCLUSIVE);
Russell Kingb7a69ac2008-10-01 16:58:32 +0100267
268 if (res == 0) {
269 initrd_start = __phys_to_virt(phys_initrd_start);
270 initrd_end = initrd_start + phys_initrd_size;
271 } else {
272 printk(KERN_ERR
273 "INITRD: 0x%08lx+0x%08lx overlaps in-use "
274 "memory region - disabling initrd\n",
275 phys_initrd_start, phys_initrd_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 }
277#endif
Russell Kingb7a69ac2008-10-01 16:58:32 +0100278}
279
Russell Kingbe370302010-05-07 17:40:33 +0100280static void __init arm_bootmem_free(struct meminfo *mi)
Russell Kingb7a69ac2008-10-01 16:58:32 +0100281{
282 unsigned long zone_size[MAX_NR_ZONES], zhole_size[MAX_NR_ZONES];
Russell Kingdde58282009-08-15 12:36:00 +0100283 unsigned long min, max_low, max_high;
Russell Kingb7a69ac2008-10-01 16:58:32 +0100284 int i;
285
Russell Kingbe370302010-05-07 17:40:33 +0100286 find_limits(mi, &min, &max_low, &max_high);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
Russell King90072052005-10-28 14:48:37 +0100288 /*
Russell Kingbe370302010-05-07 17:40:33 +0100289 * initialise the zones.
Russell King90072052005-10-28 14:48:37 +0100290 */
291 memset(zone_size, 0, sizeof(zone_size));
Russell King90072052005-10-28 14:48:37 +0100292
293 /*
Russell Kingbe370302010-05-07 17:40:33 +0100294 * The memory size has already been determined. If we need
295 * to do anything fancy with the allocation of this memory
296 * to the zones, now is the time to do it.
Russell King90072052005-10-28 14:48:37 +0100297 */
Russell Kingdde58282009-08-15 12:36:00 +0100298 zone_size[0] = max_low - min;
299#ifdef CONFIG_HIGHMEM
300 zone_size[ZONE_HIGHMEM] = max_high - max_low;
301#endif
Russell King90072052005-10-28 14:48:37 +0100302
303 /*
Russell Kingbe370302010-05-07 17:40:33 +0100304 * Calculate the size of the holes.
305 * holes = node_size - sum(bank_sizes)
Russell King90072052005-10-28 14:48:37 +0100306 */
Russell Kingdde58282009-08-15 12:36:00 +0100307 memcpy(zhole_size, zone_size, sizeof(zhole_size));
Russell Kingbe370302010-05-07 17:40:33 +0100308 for_each_bank(i, mi) {
Russell Kingdde58282009-08-15 12:36:00 +0100309 int idx = 0;
310#ifdef CONFIG_HIGHMEM
311 if (mi->bank[i].highmem)
312 idx = ZONE_HIGHMEM;
313#endif
314 zhole_size[idx] -= bank_pfn_size(&mi->bank[i]);
315 }
Russell King90072052005-10-28 14:48:37 +0100316
317 /*
318 * Adjust the sizes according to any special requirements for
319 * this machine type.
320 */
Russell Kingb65b4782010-05-22 20:58:51 +0100321 arch_adjust_zones(zone_size, zhole_size);
Russell King90072052005-10-28 14:48:37 +0100322
Russell Kingbe370302010-05-07 17:40:33 +0100323 free_area_init_node(0, zone_size, min, zhole_size);
Russell King90072052005-10-28 14:48:37 +0100324}
325
Russell Kingb7cfda92009-09-07 15:06:42 +0100326#ifndef CONFIG_SPARSEMEM
327int pfn_valid(unsigned long pfn)
328{
329 struct meminfo *mi = &meminfo;
330 unsigned int left = 0, right = mi->nr_banks;
331
332 do {
333 unsigned int mid = (right + left) / 2;
334 struct membank *bank = &mi->bank[mid];
335
336 if (pfn < bank_pfn_start(bank))
337 right = mid;
338 else if (pfn >= bank_pfn_end(bank))
339 left = mid + 1;
340 else
341 return 1;
342 } while (left < right);
343 return 0;
344}
345EXPORT_SYMBOL(pfn_valid);
Russell King657e12f2009-10-29 17:06:17 +0000346
Russell Kingbe370302010-05-07 17:40:33 +0100347static void arm_memory_present(struct meminfo *mi)
Russell King657e12f2009-10-29 17:06:17 +0000348{
349}
350#else
Russell Kingbe370302010-05-07 17:40:33 +0100351static void arm_memory_present(struct meminfo *mi)
Russell King657e12f2009-10-29 17:06:17 +0000352{
353 int i;
Russell Kingbe370302010-05-07 17:40:33 +0100354 for_each_bank(i, mi) {
Russell King657e12f2009-10-29 17:06:17 +0000355 struct membank *bank = &mi->bank[i];
Russell Kingbe370302010-05-07 17:40:33 +0100356 memory_present(0, bank_pfn_start(bank), bank_pfn_end(bank));
Russell King657e12f2009-10-29 17:06:17 +0000357 }
358}
Russell Kingb7cfda92009-09-07 15:06:42 +0100359#endif
360
Russell King98c672c2010-05-22 18:18:57 +0100361void __init bootmem_init(struct machine_desc *mdesc)
Russell King90072052005-10-28 14:48:37 +0100362{
Nicolas Pitre4b5f32c2008-10-06 13:24:40 -0400363 struct meminfo *mi = &meminfo;
Russell Kingdde58282009-08-15 12:36:00 +0100364 unsigned long min, max_low, max_high;
Russell Kingbe370302010-05-07 17:40:33 +0100365 int initrd;
Russell King90072052005-10-28 14:48:37 +0100366
Russell King90072052005-10-28 14:48:37 +0100367 /*
Russell Kingbe370302010-05-07 17:40:33 +0100368 * Locate the ramdisk image, if any.
Russell King90072052005-10-28 14:48:37 +0100369 */
Russell Kingbe370302010-05-07 17:40:33 +0100370 initrd = check_initrd(mi);
Russell King90072052005-10-28 14:48:37 +0100371
Russell Kingdde58282009-08-15 12:36:00 +0100372 max_low = max_high = 0;
373
Russell Kingbe370302010-05-07 17:40:33 +0100374 find_limits(mi, &min, &max_low, &max_high);
375
376 arm_bootmem_init(mi, min, max_low);
377
Russell King90072052005-10-28 14:48:37 +0100378 /*
Russell Kingbe370302010-05-07 17:40:33 +0100379 * Reserve any special regions.
Russell King90072052005-10-28 14:48:37 +0100380 */
Russell Kingbe370302010-05-07 17:40:33 +0100381 reserve_special_regions();
Russell Kingdde58282009-08-15 12:36:00 +0100382
Russell King98c672c2010-05-22 18:18:57 +0100383 if (mdesc->reserve)
384 mdesc->reserve();
385
Russell Kingbe370302010-05-07 17:40:33 +0100386 /*
387 * If the initrd is present, reserve its memory.
388 */
389 if (initrd == 0)
390 bootmem_reserve_initrd();
Russell Kingdde58282009-08-15 12:36:00 +0100391
Russell Kingbe370302010-05-07 17:40:33 +0100392 /*
393 * Sparsemem tries to allocate bootmem in memory_present(),
394 * so must be done after the fixed reservations
395 */
396 arm_memory_present(mi);
Russell King90072052005-10-28 14:48:37 +0100397
Russell Kingb7a69ac2008-10-01 16:58:32 +0100398 /*
399 * sparse_init() needs the bootmem allocator up and running.
400 */
401 sparse_init();
402
403 /*
Russell Kingbe370302010-05-07 17:40:33 +0100404 * Now free the memory - free_area_init_node needs
Russell Kingb7a69ac2008-10-01 16:58:32 +0100405 * the sparse mem_map arrays initialized by sparse_init()
406 * for memmap_init_zone(), otherwise all PFNs are invalid.
407 */
Russell Kingbe370302010-05-07 17:40:33 +0100408 arm_bootmem_free(mi);
Russell Kingb7a69ac2008-10-01 16:58:32 +0100409
Russell Kingdde58282009-08-15 12:36:00 +0100410 high_memory = __va((max_low << PAGE_SHIFT) - 1) + 1;
Russell King90072052005-10-28 14:48:37 +0100411
412 /*
413 * This doesn't seem to be used by the Linux memory manager any
414 * more, but is used by ll_rw_block. If we can get rid of it, we
415 * also get rid of some of the stuff above as well.
416 *
417 * Note: max_low_pfn and max_pfn reflect the number of _pages_ in
418 * the system, not the maximum PFN.
419 */
Russell Kingdde58282009-08-15 12:36:00 +0100420 max_low_pfn = max_low - PHYS_PFN_OFFSET;
421 max_pfn = max_high - PHYS_PFN_OFFSET;
Russell King90072052005-10-28 14:48:37 +0100422}
423
Nicolas Pitre6db015e2008-09-17 14:50:42 -0400424static inline int free_area(unsigned long pfn, unsigned long end, char *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425{
Nicolas Pitre6db015e2008-09-17 14:50:42 -0400426 unsigned int pages = 0, size = (end - pfn) << (PAGE_SHIFT - 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Nicolas Pitre6db015e2008-09-17 14:50:42 -0400428 for (; pfn < end; pfn++) {
429 struct page *page = pfn_to_page(pfn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 ClearPageReserved(page);
Nick Piggin7835e982006-03-22 00:08:40 -0800431 init_page_count(page);
Nicolas Pitre6db015e2008-09-17 14:50:42 -0400432 __free_page(page);
433 pages++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 }
435
436 if (size && s)
437 printk(KERN_INFO "Freeing %s memory: %dK\n", s, size);
Nicolas Pitre6db015e2008-09-17 14:50:42 -0400438
439 return pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440}
441
Russell Kinga0130532005-06-27 14:16:47 +0100442static inline void
Russell Kingbe370302010-05-07 17:40:33 +0100443free_memmap(unsigned long start_pfn, unsigned long end_pfn)
Russell Kinga0130532005-06-27 14:16:47 +0100444{
445 struct page *start_pg, *end_pg;
446 unsigned long pg, pgend;
447
448 /*
449 * Convert start_pfn/end_pfn to a struct page pointer.
450 */
Catalin Marinas3257f432009-10-06 17:57:22 +0100451 start_pg = pfn_to_page(start_pfn - 1) + 1;
Russell Kinga0130532005-06-27 14:16:47 +0100452 end_pg = pfn_to_page(end_pfn);
453
454 /*
455 * Convert to physical addresses, and
456 * round start upwards and end downwards.
457 */
458 pg = PAGE_ALIGN(__pa(start_pg));
459 pgend = __pa(end_pg) & PAGE_MASK;
460
461 /*
462 * If there are free pages between these,
463 * free the section of the memmap array.
464 */
465 if (pg < pgend)
Russell Kingbe370302010-05-07 17:40:33 +0100466 free_bootmem(pg, pgend - pg);
Russell Kinga0130532005-06-27 14:16:47 +0100467}
468
469/*
470 * The mem_map array can get very big. Free the unused area of the memory map.
471 */
Russell Kingbe370302010-05-07 17:40:33 +0100472static void __init free_unused_memmap(struct meminfo *mi)
Russell Kinga0130532005-06-27 14:16:47 +0100473{
474 unsigned long bank_start, prev_bank_end = 0;
475 unsigned int i;
476
477 /*
478 * [FIXME] This relies on each bank being in address order. This
479 * may not be the case, especially if the user has provided the
480 * information on the command line.
481 */
Russell Kingbe370302010-05-07 17:40:33 +0100482 for_each_bank(i, mi) {
Russell Kingd2a38ef2008-10-01 16:56:15 +0100483 struct membank *bank = &mi->bank[i];
484
485 bank_start = bank_pfn_start(bank);
Russell Kinga0130532005-06-27 14:16:47 +0100486 if (bank_start < prev_bank_end) {
487 printk(KERN_ERR "MEM: unordered memory banks. "
488 "Not freeing memmap.\n");
489 break;
490 }
491
492 /*
493 * If we had a previous bank, and there is a space
494 * between the current bank and the previous, free it.
495 */
496 if (prev_bank_end && prev_bank_end != bank_start)
Russell Kingbe370302010-05-07 17:40:33 +0100497 free_memmap(prev_bank_end, bank_start);
Russell Kinga0130532005-06-27 14:16:47 +0100498
Russell Kingd2a38ef2008-10-01 16:56:15 +0100499 prev_bank_end = bank_pfn_end(bank);
Russell Kinga0130532005-06-27 14:16:47 +0100500 }
501}
502
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503/*
504 * mem_init() marks the free areas in the mem_map and tells us how much
505 * memory is free. This is done after various parts of the system have
506 * claimed their memory after the kernel image.
507 */
508void __init mem_init(void)
509{
Fenkart/Bostandzhyandb9ef1a2010-02-07 21:45:47 +0100510 unsigned long reserved_pages, free_pages;
Russell Kingbe370302010-05-07 17:40:33 +0100511 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
Nicolas Pitre3835f6c2008-09-17 15:21:55 -0400513 max_mapnr = pfn_to_page(max_pfn + PHYS_PFN_OFFSET) - mem_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 /* this will put all unused low memory onto the freelists */
Russell Kingbe370302010-05-07 17:40:33 +0100516 free_unused_memmap(&meminfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
Russell Kingbe370302010-05-07 17:40:33 +0100518 totalram_pages += free_all_bootmem();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
520#ifdef CONFIG_SA1111
521 /* now that our DMA memory is actually so designated, we can free it */
Nicolas Pitre6db015e2008-09-17 14:50:42 -0400522 totalram_pages += free_area(PHYS_PFN_OFFSET,
523 __phys_to_pfn(__pa(swapper_pg_dir)), NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524#endif
525
Nicolas Pitre3835f6c2008-09-17 15:21:55 -0400526#ifdef CONFIG_HIGHMEM
527 /* set highmem page free */
Russell Kingbe370302010-05-07 17:40:33 +0100528 for_each_bank (i, &meminfo) {
529 unsigned long start = bank_pfn_start(&meminfo.bank[i]);
530 unsigned long end = bank_pfn_end(&meminfo.bank[i]);
531 if (start >= max_low_pfn + PHYS_PFN_OFFSET)
532 totalhigh_pages += free_area(start, end, NULL);
Nicolas Pitre3835f6c2008-09-17 15:21:55 -0400533 }
534 totalram_pages += totalhigh_pages;
535#endif
536
Fenkart/Bostandzhyandb9ef1a2010-02-07 21:45:47 +0100537 reserved_pages = free_pages = 0;
538
Russell Kingbe370302010-05-07 17:40:33 +0100539 for_each_bank(i, &meminfo) {
540 struct membank *bank = &meminfo.bank[i];
541 unsigned int pfn1, pfn2;
542 struct page *page, *end;
Fenkart/Bostandzhyandb9ef1a2010-02-07 21:45:47 +0100543
Russell Kingbe370302010-05-07 17:40:33 +0100544 pfn1 = bank_pfn_start(bank);
545 pfn2 = bank_pfn_end(bank);
Fenkart/Bostandzhyandb9ef1a2010-02-07 21:45:47 +0100546
Russell Kingbe370302010-05-07 17:40:33 +0100547 page = pfn_to_page(pfn1);
548 end = pfn_to_page(pfn2 - 1) + 1;
Fenkart/Bostandzhyandb9ef1a2010-02-07 21:45:47 +0100549
Russell Kingbe370302010-05-07 17:40:33 +0100550 do {
551 if (PageReserved(page))
552 reserved_pages++;
553 else if (!page_count(page))
554 free_pages++;
555 page++;
556 } while (page < end);
Fenkart/Bostandzhyandb9ef1a2010-02-07 21:45:47 +0100557 }
558
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 /*
560 * Since our memory may not be contiguous, calculate the
561 * real number of pages we have in this system
562 */
563 printk(KERN_INFO "Memory:");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 num_physpages = 0;
565 for (i = 0; i < meminfo.nr_banks; i++) {
Russell Kingd2a38ef2008-10-01 16:56:15 +0100566 num_physpages += bank_pfn_size(&meminfo.bank[i]);
567 printk(" %ldMB", bank_phys_size(&meminfo.bank[i]) >> 20);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 printk(" = %luMB total\n", num_physpages >> (20 - PAGE_SHIFT));
Nicolas Pitre6db015e2008-09-17 14:50:42 -0400570
Fenkart/Bostandzhyandb9ef1a2010-02-07 21:45:47 +0100571 printk(KERN_NOTICE "Memory: %luk/%luk available, %luk reserved, %luK highmem\n",
572 nr_free_pages() << (PAGE_SHIFT-10),
573 free_pages << (PAGE_SHIFT-10),
574 reserved_pages << (PAGE_SHIFT-10),
Andreas Fenkart4b529402010-01-08 14:42:31 -0800575 totalhigh_pages << (PAGE_SHIFT-10));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
Fenkart/Bostandzhyandb9ef1a2010-02-07 21:45:47 +0100577#define MLK(b, t) b, t, ((t) - (b)) >> 10
578#define MLM(b, t) b, t, ((t) - (b)) >> 20
579#define MLK_ROUNDUP(b, t) b, t, DIV_ROUND_UP(((t) - (b)), SZ_1K)
580
581 printk(KERN_NOTICE "Virtual kernel memory layout:\n"
582 " vector : 0x%08lx - 0x%08lx (%4ld kB)\n"
583 " fixmap : 0x%08lx - 0x%08lx (%4ld kB)\n"
Fenkart/Bostandzhyana7bd08c2010-02-07 21:46:33 +0100584#ifdef CONFIG_MMU
585 " DMA : 0x%08lx - 0x%08lx (%4ld MB)\n"
586#endif
Fenkart/Bostandzhyandb9ef1a2010-02-07 21:45:47 +0100587 " vmalloc : 0x%08lx - 0x%08lx (%4ld MB)\n"
588 " lowmem : 0x%08lx - 0x%08lx (%4ld MB)\n"
589#ifdef CONFIG_HIGHMEM
590 " pkmap : 0x%08lx - 0x%08lx (%4ld MB)\n"
591#endif
592 " modules : 0x%08lx - 0x%08lx (%4ld MB)\n"
593 " .init : 0x%p" " - 0x%p" " (%4d kB)\n"
594 " .text : 0x%p" " - 0x%p" " (%4d kB)\n"
595 " .data : 0x%p" " - 0x%p" " (%4d kB)\n",
596
597 MLK(UL(CONFIG_VECTORS_BASE), UL(CONFIG_VECTORS_BASE) +
598 (PAGE_SIZE)),
599 MLK(FIXADDR_START, FIXADDR_TOP),
Fenkart/Bostandzhyana7bd08c2010-02-07 21:46:33 +0100600#ifdef CONFIG_MMU
601 MLM(CONSISTENT_BASE, CONSISTENT_END),
602#endif
Fenkart/Bostandzhyanc931b4f2010-02-07 21:47:17 +0100603 MLM(VMALLOC_START, VMALLOC_END),
Fenkart/Bostandzhyandb9ef1a2010-02-07 21:45:47 +0100604 MLM(PAGE_OFFSET, (unsigned long)high_memory),
605#ifdef CONFIG_HIGHMEM
606 MLM(PKMAP_BASE, (PKMAP_BASE) + (LAST_PKMAP) *
607 (PAGE_SIZE)),
608#endif
609 MLM(MODULES_VADDR, MODULES_END),
610
611 MLK_ROUNDUP(__init_begin, __init_end),
612 MLK_ROUNDUP(_text, _etext),
613 MLK_ROUNDUP(_data, _edata));
614
615#undef MLK
616#undef MLM
617#undef MLK_ROUNDUP
618
Fenkart/Bostandzhyana1839272010-02-07 21:47:58 +0100619 /*
620 * Check boundaries twice: Some fundamental inconsistencies can
621 * be detected at build time already.
622 */
623#ifdef CONFIG_MMU
624 BUILD_BUG_ON(VMALLOC_END > CONSISTENT_BASE);
625 BUG_ON(VMALLOC_END > CONSISTENT_BASE);
626
627 BUILD_BUG_ON(TASK_SIZE > MODULES_VADDR);
628 BUG_ON(TASK_SIZE > MODULES_VADDR);
629#endif
630
631#ifdef CONFIG_HIGHMEM
632 BUILD_BUG_ON(PKMAP_BASE + LAST_PKMAP * PAGE_SIZE > PAGE_OFFSET);
633 BUG_ON(PKMAP_BASE + LAST_PKMAP * PAGE_SIZE > PAGE_OFFSET);
634#endif
635
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 if (PAGE_SIZE >= 16384 && num_physpages <= 128) {
637 extern int sysctl_overcommit_memory;
638 /*
639 * On a machine this small we won't get
640 * anywhere without overcommit, so turn
641 * it on by default.
642 */
643 sysctl_overcommit_memory = OVERCOMMIT_ALWAYS;
644 }
645}
646
647void free_initmem(void)
648{
Linus Walleijbc581772009-09-15 17:30:37 +0100649#ifdef CONFIG_HAVE_TCM
Linus Walleijea208f62010-05-26 07:37:57 +0100650 extern char __tcm_start, __tcm_end;
Linus Walleijbc581772009-09-15 17:30:37 +0100651
Linus Walleijea208f62010-05-26 07:37:57 +0100652 totalram_pages += free_area(__phys_to_pfn(__pa(&__tcm_start)),
653 __phys_to_pfn(__pa(&__tcm_end)),
Linus Walleijbc581772009-09-15 17:30:37 +0100654 "TCM link");
655#endif
656
Nicolas Pitre6db015e2008-09-17 14:50:42 -0400657 if (!machine_is_integrator() && !machine_is_cintegrator())
Russell King37efe642008-12-01 11:53:07 +0000658 totalram_pages += free_area(__phys_to_pfn(__pa(__init_begin)),
659 __phys_to_pfn(__pa(__init_end)),
Nicolas Pitre6db015e2008-09-17 14:50:42 -0400660 "init");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661}
662
663#ifdef CONFIG_BLK_DEV_INITRD
664
665static int keep_initrd;
666
667void free_initrd_mem(unsigned long start, unsigned long end)
668{
669 if (!keep_initrd)
Nicolas Pitre6db015e2008-09-17 14:50:42 -0400670 totalram_pages += free_area(__phys_to_pfn(__pa(start)),
671 __phys_to_pfn(__pa(end)),
672 "initrd");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673}
674
675static int __init keepinitrd_setup(char *__unused)
676{
677 keep_initrd = 1;
678 return 1;
679}
680
681__setup("keepinitrd", keepinitrd_setup);
682#endif