blob: 4011e524cb1d9be7bcc9d85b7a6bf1dde277e7d5 [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 Kingbe370302010-05-07 17:40:33 +0100321 arch_adjust_zones(0, 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
Nicolas Pitre4b5f32c2008-10-06 13:24:40 -0400361void __init bootmem_init(void)
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 Kingbe370302010-05-07 17:40:33 +0100383 /*
384 * If the initrd is present, reserve its memory.
385 */
386 if (initrd == 0)
387 bootmem_reserve_initrd();
Russell Kingdde58282009-08-15 12:36:00 +0100388
Russell Kingbe370302010-05-07 17:40:33 +0100389 /*
390 * Sparsemem tries to allocate bootmem in memory_present(),
391 * so must be done after the fixed reservations
392 */
393 arm_memory_present(mi);
Russell King90072052005-10-28 14:48:37 +0100394
Russell Kingb7a69ac2008-10-01 16:58:32 +0100395 /*
396 * sparse_init() needs the bootmem allocator up and running.
397 */
398 sparse_init();
399
400 /*
Russell Kingbe370302010-05-07 17:40:33 +0100401 * Now free the memory - free_area_init_node needs
Russell Kingb7a69ac2008-10-01 16:58:32 +0100402 * the sparse mem_map arrays initialized by sparse_init()
403 * for memmap_init_zone(), otherwise all PFNs are invalid.
404 */
Russell Kingbe370302010-05-07 17:40:33 +0100405 arm_bootmem_free(mi);
Russell Kingb7a69ac2008-10-01 16:58:32 +0100406
Russell Kingdde58282009-08-15 12:36:00 +0100407 high_memory = __va((max_low << PAGE_SHIFT) - 1) + 1;
Russell King90072052005-10-28 14:48:37 +0100408
409 /*
410 * This doesn't seem to be used by the Linux memory manager any
411 * more, but is used by ll_rw_block. If we can get rid of it, we
412 * also get rid of some of the stuff above as well.
413 *
414 * Note: max_low_pfn and max_pfn reflect the number of _pages_ in
415 * the system, not the maximum PFN.
416 */
Russell Kingdde58282009-08-15 12:36:00 +0100417 max_low_pfn = max_low - PHYS_PFN_OFFSET;
418 max_pfn = max_high - PHYS_PFN_OFFSET;
Russell King90072052005-10-28 14:48:37 +0100419}
420
Nicolas Pitre6db015e2008-09-17 14:50:42 -0400421static inline int free_area(unsigned long pfn, unsigned long end, char *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422{
Nicolas Pitre6db015e2008-09-17 14:50:42 -0400423 unsigned int pages = 0, size = (end - pfn) << (PAGE_SHIFT - 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
Nicolas Pitre6db015e2008-09-17 14:50:42 -0400425 for (; pfn < end; pfn++) {
426 struct page *page = pfn_to_page(pfn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 ClearPageReserved(page);
Nick Piggin7835e982006-03-22 00:08:40 -0800428 init_page_count(page);
Nicolas Pitre6db015e2008-09-17 14:50:42 -0400429 __free_page(page);
430 pages++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 }
432
433 if (size && s)
434 printk(KERN_INFO "Freeing %s memory: %dK\n", s, size);
Nicolas Pitre6db015e2008-09-17 14:50:42 -0400435
436 return pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437}
438
Russell Kinga0130532005-06-27 14:16:47 +0100439static inline void
Russell Kingbe370302010-05-07 17:40:33 +0100440free_memmap(unsigned long start_pfn, unsigned long end_pfn)
Russell Kinga0130532005-06-27 14:16:47 +0100441{
442 struct page *start_pg, *end_pg;
443 unsigned long pg, pgend;
444
445 /*
446 * Convert start_pfn/end_pfn to a struct page pointer.
447 */
Catalin Marinas3257f432009-10-06 17:57:22 +0100448 start_pg = pfn_to_page(start_pfn - 1) + 1;
Russell Kinga0130532005-06-27 14:16:47 +0100449 end_pg = pfn_to_page(end_pfn);
450
451 /*
452 * Convert to physical addresses, and
453 * round start upwards and end downwards.
454 */
455 pg = PAGE_ALIGN(__pa(start_pg));
456 pgend = __pa(end_pg) & PAGE_MASK;
457
458 /*
459 * If there are free pages between these,
460 * free the section of the memmap array.
461 */
462 if (pg < pgend)
Russell Kingbe370302010-05-07 17:40:33 +0100463 free_bootmem(pg, pgend - pg);
Russell Kinga0130532005-06-27 14:16:47 +0100464}
465
466/*
467 * The mem_map array can get very big. Free the unused area of the memory map.
468 */
Russell Kingbe370302010-05-07 17:40:33 +0100469static void __init free_unused_memmap(struct meminfo *mi)
Russell Kinga0130532005-06-27 14:16:47 +0100470{
471 unsigned long bank_start, prev_bank_end = 0;
472 unsigned int i;
473
474 /*
475 * [FIXME] This relies on each bank being in address order. This
476 * may not be the case, especially if the user has provided the
477 * information on the command line.
478 */
Russell Kingbe370302010-05-07 17:40:33 +0100479 for_each_bank(i, mi) {
Russell Kingd2a38ef2008-10-01 16:56:15 +0100480 struct membank *bank = &mi->bank[i];
481
482 bank_start = bank_pfn_start(bank);
Russell Kinga0130532005-06-27 14:16:47 +0100483 if (bank_start < prev_bank_end) {
484 printk(KERN_ERR "MEM: unordered memory banks. "
485 "Not freeing memmap.\n");
486 break;
487 }
488
489 /*
490 * If we had a previous bank, and there is a space
491 * between the current bank and the previous, free it.
492 */
493 if (prev_bank_end && prev_bank_end != bank_start)
Russell Kingbe370302010-05-07 17:40:33 +0100494 free_memmap(prev_bank_end, bank_start);
Russell Kinga0130532005-06-27 14:16:47 +0100495
Russell Kingd2a38ef2008-10-01 16:56:15 +0100496 prev_bank_end = bank_pfn_end(bank);
Russell Kinga0130532005-06-27 14:16:47 +0100497 }
498}
499
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500/*
501 * mem_init() marks the free areas in the mem_map and tells us how much
502 * memory is free. This is done after various parts of the system have
503 * claimed their memory after the kernel image.
504 */
505void __init mem_init(void)
506{
Fenkart/Bostandzhyandb9ef1a2010-02-07 21:45:47 +0100507 unsigned long reserved_pages, free_pages;
Russell Kingbe370302010-05-07 17:40:33 +0100508 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
Nicolas Pitre3835f6c2008-09-17 15:21:55 -0400510 max_mapnr = pfn_to_page(max_pfn + PHYS_PFN_OFFSET) - mem_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 /* this will put all unused low memory onto the freelists */
Russell Kingbe370302010-05-07 17:40:33 +0100513 free_unused_memmap(&meminfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
Russell Kingbe370302010-05-07 17:40:33 +0100515 totalram_pages += free_all_bootmem();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
517#ifdef CONFIG_SA1111
518 /* now that our DMA memory is actually so designated, we can free it */
Nicolas Pitre6db015e2008-09-17 14:50:42 -0400519 totalram_pages += free_area(PHYS_PFN_OFFSET,
520 __phys_to_pfn(__pa(swapper_pg_dir)), NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521#endif
522
Nicolas Pitre3835f6c2008-09-17 15:21:55 -0400523#ifdef CONFIG_HIGHMEM
524 /* set highmem page free */
Russell Kingbe370302010-05-07 17:40:33 +0100525 for_each_bank (i, &meminfo) {
526 unsigned long start = bank_pfn_start(&meminfo.bank[i]);
527 unsigned long end = bank_pfn_end(&meminfo.bank[i]);
528 if (start >= max_low_pfn + PHYS_PFN_OFFSET)
529 totalhigh_pages += free_area(start, end, NULL);
Nicolas Pitre3835f6c2008-09-17 15:21:55 -0400530 }
531 totalram_pages += totalhigh_pages;
532#endif
533
Fenkart/Bostandzhyandb9ef1a2010-02-07 21:45:47 +0100534 reserved_pages = free_pages = 0;
535
Russell Kingbe370302010-05-07 17:40:33 +0100536 for_each_bank(i, &meminfo) {
537 struct membank *bank = &meminfo.bank[i];
538 unsigned int pfn1, pfn2;
539 struct page *page, *end;
Fenkart/Bostandzhyandb9ef1a2010-02-07 21:45:47 +0100540
Russell Kingbe370302010-05-07 17:40:33 +0100541 pfn1 = bank_pfn_start(bank);
542 pfn2 = bank_pfn_end(bank);
Fenkart/Bostandzhyandb9ef1a2010-02-07 21:45:47 +0100543
Russell Kingbe370302010-05-07 17:40:33 +0100544 page = pfn_to_page(pfn1);
545 end = pfn_to_page(pfn2 - 1) + 1;
Fenkart/Bostandzhyandb9ef1a2010-02-07 21:45:47 +0100546
Russell Kingbe370302010-05-07 17:40:33 +0100547 do {
548 if (PageReserved(page))
549 reserved_pages++;
550 else if (!page_count(page))
551 free_pages++;
552 page++;
553 } while (page < end);
Fenkart/Bostandzhyandb9ef1a2010-02-07 21:45:47 +0100554 }
555
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 /*
557 * Since our memory may not be contiguous, calculate the
558 * real number of pages we have in this system
559 */
560 printk(KERN_INFO "Memory:");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 num_physpages = 0;
562 for (i = 0; i < meminfo.nr_banks; i++) {
Russell Kingd2a38ef2008-10-01 16:56:15 +0100563 num_physpages += bank_pfn_size(&meminfo.bank[i]);
564 printk(" %ldMB", bank_phys_size(&meminfo.bank[i]) >> 20);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 printk(" = %luMB total\n", num_physpages >> (20 - PAGE_SHIFT));
Nicolas Pitre6db015e2008-09-17 14:50:42 -0400567
Fenkart/Bostandzhyandb9ef1a2010-02-07 21:45:47 +0100568 printk(KERN_NOTICE "Memory: %luk/%luk available, %luk reserved, %luK highmem\n",
569 nr_free_pages() << (PAGE_SHIFT-10),
570 free_pages << (PAGE_SHIFT-10),
571 reserved_pages << (PAGE_SHIFT-10),
Andreas Fenkart4b529402010-01-08 14:42:31 -0800572 totalhigh_pages << (PAGE_SHIFT-10));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
Fenkart/Bostandzhyandb9ef1a2010-02-07 21:45:47 +0100574#define MLK(b, t) b, t, ((t) - (b)) >> 10
575#define MLM(b, t) b, t, ((t) - (b)) >> 20
576#define MLK_ROUNDUP(b, t) b, t, DIV_ROUND_UP(((t) - (b)), SZ_1K)
577
578 printk(KERN_NOTICE "Virtual kernel memory layout:\n"
579 " vector : 0x%08lx - 0x%08lx (%4ld kB)\n"
580 " fixmap : 0x%08lx - 0x%08lx (%4ld kB)\n"
Fenkart/Bostandzhyana7bd08c2010-02-07 21:46:33 +0100581#ifdef CONFIG_MMU
582 " DMA : 0x%08lx - 0x%08lx (%4ld MB)\n"
583#endif
Fenkart/Bostandzhyandb9ef1a2010-02-07 21:45:47 +0100584 " vmalloc : 0x%08lx - 0x%08lx (%4ld MB)\n"
585 " lowmem : 0x%08lx - 0x%08lx (%4ld MB)\n"
586#ifdef CONFIG_HIGHMEM
587 " pkmap : 0x%08lx - 0x%08lx (%4ld MB)\n"
588#endif
589 " modules : 0x%08lx - 0x%08lx (%4ld MB)\n"
590 " .init : 0x%p" " - 0x%p" " (%4d kB)\n"
591 " .text : 0x%p" " - 0x%p" " (%4d kB)\n"
592 " .data : 0x%p" " - 0x%p" " (%4d kB)\n",
593
594 MLK(UL(CONFIG_VECTORS_BASE), UL(CONFIG_VECTORS_BASE) +
595 (PAGE_SIZE)),
596 MLK(FIXADDR_START, FIXADDR_TOP),
Fenkart/Bostandzhyana7bd08c2010-02-07 21:46:33 +0100597#ifdef CONFIG_MMU
598 MLM(CONSISTENT_BASE, CONSISTENT_END),
599#endif
Fenkart/Bostandzhyanc931b4f2010-02-07 21:47:17 +0100600 MLM(VMALLOC_START, VMALLOC_END),
Fenkart/Bostandzhyandb9ef1a2010-02-07 21:45:47 +0100601 MLM(PAGE_OFFSET, (unsigned long)high_memory),
602#ifdef CONFIG_HIGHMEM
603 MLM(PKMAP_BASE, (PKMAP_BASE) + (LAST_PKMAP) *
604 (PAGE_SIZE)),
605#endif
606 MLM(MODULES_VADDR, MODULES_END),
607
608 MLK_ROUNDUP(__init_begin, __init_end),
609 MLK_ROUNDUP(_text, _etext),
610 MLK_ROUNDUP(_data, _edata));
611
612#undef MLK
613#undef MLM
614#undef MLK_ROUNDUP
615
Fenkart/Bostandzhyana1839272010-02-07 21:47:58 +0100616 /*
617 * Check boundaries twice: Some fundamental inconsistencies can
618 * be detected at build time already.
619 */
620#ifdef CONFIG_MMU
621 BUILD_BUG_ON(VMALLOC_END > CONSISTENT_BASE);
622 BUG_ON(VMALLOC_END > CONSISTENT_BASE);
623
624 BUILD_BUG_ON(TASK_SIZE > MODULES_VADDR);
625 BUG_ON(TASK_SIZE > MODULES_VADDR);
626#endif
627
628#ifdef CONFIG_HIGHMEM
629 BUILD_BUG_ON(PKMAP_BASE + LAST_PKMAP * PAGE_SIZE > PAGE_OFFSET);
630 BUG_ON(PKMAP_BASE + LAST_PKMAP * PAGE_SIZE > PAGE_OFFSET);
631#endif
632
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 if (PAGE_SIZE >= 16384 && num_physpages <= 128) {
634 extern int sysctl_overcommit_memory;
635 /*
636 * On a machine this small we won't get
637 * anywhere without overcommit, so turn
638 * it on by default.
639 */
640 sysctl_overcommit_memory = OVERCOMMIT_ALWAYS;
641 }
642}
643
644void free_initmem(void)
645{
Linus Walleijbc581772009-09-15 17:30:37 +0100646#ifdef CONFIG_HAVE_TCM
Linus Walleijea208f62010-05-26 07:37:57 +0100647 extern char __tcm_start, __tcm_end;
Linus Walleijbc581772009-09-15 17:30:37 +0100648
Linus Walleijea208f62010-05-26 07:37:57 +0100649 totalram_pages += free_area(__phys_to_pfn(__pa(&__tcm_start)),
650 __phys_to_pfn(__pa(&__tcm_end)),
Linus Walleijbc581772009-09-15 17:30:37 +0100651 "TCM link");
652#endif
653
Nicolas Pitre6db015e2008-09-17 14:50:42 -0400654 if (!machine_is_integrator() && !machine_is_cintegrator())
Russell King37efe642008-12-01 11:53:07 +0000655 totalram_pages += free_area(__phys_to_pfn(__pa(__init_begin)),
656 __phys_to_pfn(__pa(__init_end)),
Nicolas Pitre6db015e2008-09-17 14:50:42 -0400657 "init");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658}
659
660#ifdef CONFIG_BLK_DEV_INITRD
661
662static int keep_initrd;
663
664void free_initrd_mem(unsigned long start, unsigned long end)
665{
666 if (!keep_initrd)
Nicolas Pitre6db015e2008-09-17 14:50:42 -0400667 totalram_pages += free_area(__phys_to_pfn(__pa(start)),
668 __phys_to_pfn(__pa(end)),
669 "initrd");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670}
671
672static int __init keepinitrd_setup(char *__unused)
673{
674 keep_initrd = 1;
675 return 1;
676}
677
678__setup("keepinitrd", keepinitrd_setup);
679#endif