blob: e739223e2a546bf7c1470bce6111d61d0b69520f [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
22#include <asm/mach-types.h>
Russell King37efe642008-12-01 11:53:07 +000023#include <asm/sections.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <asm/setup.h>
Russell King74d02fb2006-04-04 21:47:43 +010025#include <asm/sizes.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <asm/tlb.h>
Fenkart/Bostandzhyandb9ef1a2010-02-07 21:45:47 +010027#include <asm/fixmap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
29#include <asm/mach/arch.h>
30#include <asm/mach/map.h>
31
Russell King1b2e2b72006-08-21 17:06:38 +010032#include "mm.h"
33
Russell King012d1f42008-09-06 10:57:03 +010034static unsigned long phys_initrd_start __initdata = 0;
35static unsigned long phys_initrd_size __initdata = 0;
36
Jeremy Kerr2b0d8c22010-01-11 23:17:34 +010037static int __init early_initrd(char *p)
Russell King012d1f42008-09-06 10:57:03 +010038{
39 unsigned long start, size;
Jeremy Kerr2b0d8c22010-01-11 23:17:34 +010040 char *endp;
Russell King012d1f42008-09-06 10:57:03 +010041
Jeremy Kerr2b0d8c22010-01-11 23:17:34 +010042 start = memparse(p, &endp);
43 if (*endp == ',') {
44 size = memparse(endp + 1, NULL);
Russell King012d1f42008-09-06 10:57:03 +010045
46 phys_initrd_start = start;
47 phys_initrd_size = size;
48 }
Jeremy Kerr2b0d8c22010-01-11 23:17:34 +010049 return 0;
Russell King012d1f42008-09-06 10:57:03 +010050}
Jeremy Kerr2b0d8c22010-01-11 23:17:34 +010051early_param("initrd", early_initrd);
Russell King012d1f42008-09-06 10:57:03 +010052
53static int __init parse_tag_initrd(const struct tag *tag)
54{
55 printk(KERN_WARNING "ATAG_INITRD is deprecated; "
56 "please update your bootloader.\n");
57 phys_initrd_start = __virt_to_phys(tag->u.initrd.start);
58 phys_initrd_size = tag->u.initrd.size;
59 return 0;
60}
61
62__tagtable(ATAG_INITRD, parse_tag_initrd);
63
64static int __init parse_tag_initrd2(const struct tag *tag)
65{
66 phys_initrd_start = tag->u.initrd.start;
67 phys_initrd_size = tag->u.initrd.size;
68 return 0;
69}
70
71__tagtable(ATAG_INITRD2, parse_tag_initrd2);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73/*
Nicolas Pitre4b5f32c2008-10-06 13:24:40 -040074 * This keeps memory configuration data used by a couple memory
75 * initialization functions, as well as show_mem() for the skipping
76 * of holes in the memory map. It is populated by arm_add_memory().
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 */
Nicolas Pitre4b5f32c2008-10-06 13:24:40 -040078struct meminfo meminfo;
Ray Lehtiniemi5e709822006-11-07 03:19:15 +010079
Linus Torvalds1da177e2005-04-16 15:20:36 -070080void show_mem(void)
81{
82 int free = 0, total = 0, reserved = 0;
Russell Kingbe370302010-05-07 17:40:33 +010083 int shared = 0, cached = 0, slab = 0, i;
Ray Lehtiniemi5e709822006-11-07 03:19:15 +010084 struct meminfo * mi = &meminfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
86 printk("Mem-info:\n");
87 show_free_areas();
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Russell Kingbe370302010-05-07 17:40:33 +010089 for_each_bank (i, mi) {
90 struct membank *bank = &mi->bank[i];
91 unsigned int pfn1, pfn2;
92 struct page *page, *end;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Russell Kingbe370302010-05-07 17:40:33 +010094 pfn1 = bank_pfn_start(bank);
95 pfn2 = bank_pfn_end(bank);
Ray Lehtiniemi5e709822006-11-07 03:19:15 +010096
Russell Kingbe370302010-05-07 17:40:33 +010097 page = pfn_to_page(pfn1);
98 end = pfn_to_page(pfn2 - 1) + 1;
99
100 do {
101 total++;
102 if (PageReserved(page))
103 reserved++;
104 else if (PageSwapCache(page))
105 cached++;
106 else if (PageSlab(page))
107 slab++;
108 else if (!page_count(page))
109 free++;
110 else
111 shared += page_count(page) - 1;
112 page++;
113 } while (page < end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 }
115
116 printk("%d pages of RAM\n", total);
117 printk("%d free pages\n", free);
118 printk("%d reserved pages\n", reserved);
119 printk("%d slab pages\n", slab);
120 printk("%d pages shared\n", shared);
121 printk("%d pages swap cached\n", cached);
122}
123
Russell Kingbe370302010-05-07 17:40:33 +0100124static void __init find_limits(struct meminfo *mi,
Russell Kingdde58282009-08-15 12:36:00 +0100125 unsigned long *min, unsigned long *max_low, unsigned long *max_high)
126{
127 int i;
128
129 *min = -1UL;
130 *max_low = *max_high = 0;
131
Russell Kingbe370302010-05-07 17:40:33 +0100132 for_each_bank (i, mi) {
Russell Kingdde58282009-08-15 12:36:00 +0100133 struct membank *bank = &mi->bank[i];
134 unsigned long start, end;
135
136 start = bank_pfn_start(bank);
137 end = bank_pfn_end(bank);
138
139 if (*min > start)
140 *min = start;
141 if (*max_high < end)
142 *max_high = end;
143 if (bank->highmem)
144 continue;
145 if (*max_low < end)
146 *max_low = end;
147 }
148}
149
Russell Kingbe370302010-05-07 17:40:33 +0100150static void __init arm_bootmem_init(struct meminfo *mi,
Russell Kingdde58282009-08-15 12:36:00 +0100151 unsigned long start_pfn, unsigned long end_pfn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152{
Russell King90072052005-10-28 14:48:37 +0100153 unsigned int boot_pages;
Russell King2778f622010-07-09 16:27:52 +0100154 phys_addr_t bitmap;
Russell King90072052005-10-28 14:48:37 +0100155 pg_data_t *pgdat;
156 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 /*
Russell King2778f622010-07-09 16:27:52 +0100159 * Allocate the bootmem bitmap page. This must be in a region
160 * of memory which has already been mapped.
Russell King90072052005-10-28 14:48:37 +0100161 */
162 boot_pages = bootmem_bootmap_pages(end_pfn - start_pfn);
Russell King2778f622010-07-09 16:27:52 +0100163 bitmap = memblock_alloc_base(boot_pages << PAGE_SHIFT, L1_CACHE_BYTES,
164 __pfn_to_phys(end_pfn));
Russell King90072052005-10-28 14:48:37 +0100165
166 /*
Russell Kingbe370302010-05-07 17:40:33 +0100167 * Initialise the bootmem allocator, handing the
Russell King90072052005-10-28 14:48:37 +0100168 * memory banks over to bootmem.
169 */
Russell Kingbe370302010-05-07 17:40:33 +0100170 node_set_online(0);
171 pgdat = NODE_DATA(0);
Russell King2778f622010-07-09 16:27:52 +0100172 init_bootmem_node(pgdat, __phys_to_pfn(bitmap), start_pfn, end_pfn);
Russell King90072052005-10-28 14:48:37 +0100173
Russell Kingbe370302010-05-07 17:40:33 +0100174 for_each_bank(i, mi) {
Russell Kingd2a38ef2008-10-01 16:56:15 +0100175 struct membank *bank = &mi->bank[i];
Russell Kingdde58282009-08-15 12:36:00 +0100176 if (!bank->highmem)
Russell Kingbe370302010-05-07 17:40:33 +0100177 free_bootmem(bank_phys_start(bank), bank_phys_size(bank));
Russell Kingd2a38ef2008-10-01 16:56:15 +0100178 }
Russell King90072052005-10-28 14:48:37 +0100179
180 /*
Russell King2778f622010-07-09 16:27:52 +0100181 * Reserve the memblock reserved regions in bootmem.
Russell King90072052005-10-28 14:48:37 +0100182 */
Russell King2778f622010-07-09 16:27:52 +0100183 for (i = 0; i < memblock.reserved.cnt; i++) {
184 phys_addr_t start = memblock_start_pfn(&memblock.reserved, i);
185 if (start >= start_pfn &&
186 memblock_end_pfn(&memblock.reserved, i) <= end_pfn)
187 reserve_bootmem_node(pgdat, __pfn_to_phys(start),
188 memblock_size_bytes(&memblock.reserved, i),
189 BOOTMEM_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 }
Russell Kingb7a69ac2008-10-01 16:58:32 +0100191}
192
Russell Kinga9deb132010-07-01 18:35:07 +0100193static void __init arm_bootmem_free(struct meminfo *mi, unsigned long min,
194 unsigned long max_low, unsigned long max_high)
Russell Kingb7a69ac2008-10-01 16:58:32 +0100195{
196 unsigned long zone_size[MAX_NR_ZONES], zhole_size[MAX_NR_ZONES];
Russell Kingb7a69ac2008-10-01 16:58:32 +0100197 int i;
198
Russell King90072052005-10-28 14:48:37 +0100199 /*
Russell Kingbe370302010-05-07 17:40:33 +0100200 * initialise the zones.
Russell King90072052005-10-28 14:48:37 +0100201 */
202 memset(zone_size, 0, sizeof(zone_size));
Russell King90072052005-10-28 14:48:37 +0100203
204 /*
Russell Kingbe370302010-05-07 17:40:33 +0100205 * The memory size has already been determined. If we need
206 * to do anything fancy with the allocation of this memory
207 * to the zones, now is the time to do it.
Russell King90072052005-10-28 14:48:37 +0100208 */
Russell Kingdde58282009-08-15 12:36:00 +0100209 zone_size[0] = max_low - min;
210#ifdef CONFIG_HIGHMEM
211 zone_size[ZONE_HIGHMEM] = max_high - max_low;
212#endif
Russell King90072052005-10-28 14:48:37 +0100213
214 /*
Russell Kingbe370302010-05-07 17:40:33 +0100215 * Calculate the size of the holes.
216 * holes = node_size - sum(bank_sizes)
Russell King90072052005-10-28 14:48:37 +0100217 */
Russell Kingdde58282009-08-15 12:36:00 +0100218 memcpy(zhole_size, zone_size, sizeof(zhole_size));
Russell Kingbe370302010-05-07 17:40:33 +0100219 for_each_bank(i, mi) {
Russell Kingdde58282009-08-15 12:36:00 +0100220 int idx = 0;
221#ifdef CONFIG_HIGHMEM
222 if (mi->bank[i].highmem)
223 idx = ZONE_HIGHMEM;
224#endif
225 zhole_size[idx] -= bank_pfn_size(&mi->bank[i]);
226 }
Russell King90072052005-10-28 14:48:37 +0100227
228 /*
229 * Adjust the sizes according to any special requirements for
230 * this machine type.
231 */
Russell Kingb65b4782010-05-22 20:58:51 +0100232 arch_adjust_zones(zone_size, zhole_size);
Russell King90072052005-10-28 14:48:37 +0100233
Russell Kingbe370302010-05-07 17:40:33 +0100234 free_area_init_node(0, zone_size, min, zhole_size);
Russell King90072052005-10-28 14:48:37 +0100235}
236
Russell Kingb7cfda92009-09-07 15:06:42 +0100237#ifndef CONFIG_SPARSEMEM
238int pfn_valid(unsigned long pfn)
239{
Benjamin Herrenschmidt5e6f6aa2010-08-04 13:23:02 +1000240 return memblock_is_memory(pfn << PAGE_SHIFT);
Russell Kingb7cfda92009-09-07 15:06:42 +0100241}
242EXPORT_SYMBOL(pfn_valid);
Russell King657e12f2009-10-29 17:06:17 +0000243
Russell Kingeda2e5d2010-07-01 12:00:57 +0100244static void arm_memory_present(void)
Russell King657e12f2009-10-29 17:06:17 +0000245{
246}
247#else
Russell Kingeda2e5d2010-07-01 12:00:57 +0100248static void arm_memory_present(void)
Russell King657e12f2009-10-29 17:06:17 +0000249{
250 int i;
Russell Kingeda2e5d2010-07-01 12:00:57 +0100251 for (i = 0; i < memblock.memory.cnt; i++)
252 memory_present(0, memblock_start_pfn(&memblock.memory, i),
253 memblock_end_pfn(&memblock.memory, i));
Russell King657e12f2009-10-29 17:06:17 +0000254}
Russell Kingb7cfda92009-09-07 15:06:42 +0100255#endif
256
Russell King8d717a52010-05-22 19:47:18 +0100257void __init arm_memblock_init(struct meminfo *mi, struct machine_desc *mdesc)
Russell King2778f622010-07-09 16:27:52 +0100258{
259 int i;
260
261 memblock_init();
262 for (i = 0; i < mi->nr_banks; i++)
263 memblock_add(mi->bank[i].start, mi->bank[i].size);
264
265 /* Register the kernel text, kernel data and initrd with memblock. */
266#ifdef CONFIG_XIP_KERNEL
267 memblock_reserve(__pa(_data), _end - _data);
268#else
269 memblock_reserve(__pa(_stext), _end - _stext);
270#endif
271#ifdef CONFIG_BLK_DEV_INITRD
272 if (phys_initrd_size) {
273 memblock_reserve(phys_initrd_start, phys_initrd_size);
274
275 /* Now convert initrd to virtual addresses */
276 initrd_start = __phys_to_virt(phys_initrd_start);
277 initrd_end = initrd_start + phys_initrd_size;
278 }
279#endif
280
281 arm_mm_memblock_reserve();
282
Russell King8d717a52010-05-22 19:47:18 +0100283 /* reserve any platform specific memblock areas */
284 if (mdesc->reserve)
285 mdesc->reserve();
286
Russell King2778f622010-07-09 16:27:52 +0100287 memblock_analyze();
288 memblock_dump_all();
289}
290
Russell King8d717a52010-05-22 19:47:18 +0100291void __init bootmem_init(void)
Russell King90072052005-10-28 14:48:37 +0100292{
Nicolas Pitre4b5f32c2008-10-06 13:24:40 -0400293 struct meminfo *mi = &meminfo;
Russell Kingdde58282009-08-15 12:36:00 +0100294 unsigned long min, max_low, max_high;
Russell King90072052005-10-28 14:48:37 +0100295
Russell Kingdde58282009-08-15 12:36:00 +0100296 max_low = max_high = 0;
297
Russell Kingbe370302010-05-07 17:40:33 +0100298 find_limits(mi, &min, &max_low, &max_high);
299
300 arm_bootmem_init(mi, min, max_low);
301
Russell Kingbe370302010-05-07 17:40:33 +0100302 /*
Russell Kingbe370302010-05-07 17:40:33 +0100303 * Sparsemem tries to allocate bootmem in memory_present(),
304 * so must be done after the fixed reservations
305 */
Russell Kingeda2e5d2010-07-01 12:00:57 +0100306 arm_memory_present();
Russell King90072052005-10-28 14:48:37 +0100307
Russell Kingb7a69ac2008-10-01 16:58:32 +0100308 /*
309 * sparse_init() needs the bootmem allocator up and running.
310 */
311 sparse_init();
312
313 /*
Russell Kingbe370302010-05-07 17:40:33 +0100314 * Now free the memory - free_area_init_node needs
Russell Kingb7a69ac2008-10-01 16:58:32 +0100315 * the sparse mem_map arrays initialized by sparse_init()
316 * for memmap_init_zone(), otherwise all PFNs are invalid.
317 */
Russell Kinga9deb132010-07-01 18:35:07 +0100318 arm_bootmem_free(mi, min, max_low, max_high);
Russell Kingb7a69ac2008-10-01 16:58:32 +0100319
Russell Kingdde58282009-08-15 12:36:00 +0100320 high_memory = __va((max_low << PAGE_SHIFT) - 1) + 1;
Russell King90072052005-10-28 14:48:37 +0100321
322 /*
323 * This doesn't seem to be used by the Linux memory manager any
324 * more, but is used by ll_rw_block. If we can get rid of it, we
325 * also get rid of some of the stuff above as well.
326 *
327 * Note: max_low_pfn and max_pfn reflect the number of _pages_ in
328 * the system, not the maximum PFN.
329 */
Russell Kingdde58282009-08-15 12:36:00 +0100330 max_low_pfn = max_low - PHYS_PFN_OFFSET;
331 max_pfn = max_high - PHYS_PFN_OFFSET;
Russell King90072052005-10-28 14:48:37 +0100332}
333
Nicolas Pitre6db015e2008-09-17 14:50:42 -0400334static inline int free_area(unsigned long pfn, unsigned long end, char *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335{
Nicolas Pitre6db015e2008-09-17 14:50:42 -0400336 unsigned int pages = 0, size = (end - pfn) << (PAGE_SHIFT - 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
Nicolas Pitre6db015e2008-09-17 14:50:42 -0400338 for (; pfn < end; pfn++) {
339 struct page *page = pfn_to_page(pfn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 ClearPageReserved(page);
Nick Piggin7835e982006-03-22 00:08:40 -0800341 init_page_count(page);
Nicolas Pitre6db015e2008-09-17 14:50:42 -0400342 __free_page(page);
343 pages++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 }
345
346 if (size && s)
347 printk(KERN_INFO "Freeing %s memory: %dK\n", s, size);
Nicolas Pitre6db015e2008-09-17 14:50:42 -0400348
349 return pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350}
351
Russell Kinga0130532005-06-27 14:16:47 +0100352static inline void
Russell Kingbe370302010-05-07 17:40:33 +0100353free_memmap(unsigned long start_pfn, unsigned long end_pfn)
Russell Kinga0130532005-06-27 14:16:47 +0100354{
355 struct page *start_pg, *end_pg;
356 unsigned long pg, pgend;
357
358 /*
359 * Convert start_pfn/end_pfn to a struct page pointer.
360 */
Catalin Marinas3257f432009-10-06 17:57:22 +0100361 start_pg = pfn_to_page(start_pfn - 1) + 1;
Russell Kinga0130532005-06-27 14:16:47 +0100362 end_pg = pfn_to_page(end_pfn);
363
364 /*
365 * Convert to physical addresses, and
366 * round start upwards and end downwards.
367 */
368 pg = PAGE_ALIGN(__pa(start_pg));
369 pgend = __pa(end_pg) & PAGE_MASK;
370
371 /*
372 * If there are free pages between these,
373 * free the section of the memmap array.
374 */
375 if (pg < pgend)
Russell Kingbe370302010-05-07 17:40:33 +0100376 free_bootmem(pg, pgend - pg);
Russell Kinga0130532005-06-27 14:16:47 +0100377}
378
379/*
380 * The mem_map array can get very big. Free the unused area of the memory map.
381 */
Russell Kingbe370302010-05-07 17:40:33 +0100382static void __init free_unused_memmap(struct meminfo *mi)
Russell Kinga0130532005-06-27 14:16:47 +0100383{
384 unsigned long bank_start, prev_bank_end = 0;
385 unsigned int i;
386
387 /*
Michael Bohan3260e522010-06-14 13:06:56 -0700388 * This relies on each bank being in address order.
389 * The banks are sorted previously in bootmem_init().
Russell Kinga0130532005-06-27 14:16:47 +0100390 */
Russell Kingbe370302010-05-07 17:40:33 +0100391 for_each_bank(i, mi) {
Russell Kingd2a38ef2008-10-01 16:56:15 +0100392 struct membank *bank = &mi->bank[i];
393
394 bank_start = bank_pfn_start(bank);
Russell Kinga0130532005-06-27 14:16:47 +0100395
396 /*
397 * If we had a previous bank, and there is a space
398 * between the current bank and the previous, free it.
399 */
Michael Bohan3260e522010-06-14 13:06:56 -0700400 if (prev_bank_end && prev_bank_end < bank_start)
Russell Kingbe370302010-05-07 17:40:33 +0100401 free_memmap(prev_bank_end, bank_start);
Russell Kinga0130532005-06-27 14:16:47 +0100402
Michael Bohan3260e522010-06-14 13:06:56 -0700403 /*
404 * Align up here since the VM subsystem insists that the
405 * memmap entries are valid from the bank end aligned to
406 * MAX_ORDER_NR_PAGES.
407 */
408 prev_bank_end = ALIGN(bank_pfn_end(bank), MAX_ORDER_NR_PAGES);
Russell Kinga0130532005-06-27 14:16:47 +0100409 }
410}
411
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412/*
413 * mem_init() marks the free areas in the mem_map and tells us how much
414 * memory is free. This is done after various parts of the system have
415 * claimed their memory after the kernel image.
416 */
417void __init mem_init(void)
418{
Fenkart/Bostandzhyandb9ef1a2010-02-07 21:45:47 +0100419 unsigned long reserved_pages, free_pages;
Russell Kingbe370302010-05-07 17:40:33 +0100420 int i;
Linus Walleij1dbd30e2010-07-12 21:53:28 +0100421#ifdef CONFIG_HAVE_TCM
422 /* These pointers are filled in on TCM detection */
423 extern u32 dtcm_end;
424 extern u32 itcm_end;
425#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
Nicolas Pitre3835f6c2008-09-17 15:21:55 -0400427 max_mapnr = pfn_to_page(max_pfn + PHYS_PFN_OFFSET) - mem_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 /* this will put all unused low memory onto the freelists */
Russell Kingbe370302010-05-07 17:40:33 +0100430 free_unused_memmap(&meminfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
Russell Kingbe370302010-05-07 17:40:33 +0100432 totalram_pages += free_all_bootmem();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
434#ifdef CONFIG_SA1111
435 /* now that our DMA memory is actually so designated, we can free it */
Nicolas Pitre6db015e2008-09-17 14:50:42 -0400436 totalram_pages += free_area(PHYS_PFN_OFFSET,
437 __phys_to_pfn(__pa(swapper_pg_dir)), NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438#endif
439
Nicolas Pitre3835f6c2008-09-17 15:21:55 -0400440#ifdef CONFIG_HIGHMEM
441 /* set highmem page free */
Russell Kingbe370302010-05-07 17:40:33 +0100442 for_each_bank (i, &meminfo) {
443 unsigned long start = bank_pfn_start(&meminfo.bank[i]);
444 unsigned long end = bank_pfn_end(&meminfo.bank[i]);
445 if (start >= max_low_pfn + PHYS_PFN_OFFSET)
446 totalhigh_pages += free_area(start, end, NULL);
Nicolas Pitre3835f6c2008-09-17 15:21:55 -0400447 }
448 totalram_pages += totalhigh_pages;
449#endif
450
Fenkart/Bostandzhyandb9ef1a2010-02-07 21:45:47 +0100451 reserved_pages = free_pages = 0;
452
Russell Kingbe370302010-05-07 17:40:33 +0100453 for_each_bank(i, &meminfo) {
454 struct membank *bank = &meminfo.bank[i];
455 unsigned int pfn1, pfn2;
456 struct page *page, *end;
Fenkart/Bostandzhyandb9ef1a2010-02-07 21:45:47 +0100457
Russell Kingbe370302010-05-07 17:40:33 +0100458 pfn1 = bank_pfn_start(bank);
459 pfn2 = bank_pfn_end(bank);
Fenkart/Bostandzhyandb9ef1a2010-02-07 21:45:47 +0100460
Russell Kingbe370302010-05-07 17:40:33 +0100461 page = pfn_to_page(pfn1);
462 end = pfn_to_page(pfn2 - 1) + 1;
Fenkart/Bostandzhyandb9ef1a2010-02-07 21:45:47 +0100463
Russell Kingbe370302010-05-07 17:40:33 +0100464 do {
465 if (PageReserved(page))
466 reserved_pages++;
467 else if (!page_count(page))
468 free_pages++;
469 page++;
470 } while (page < end);
Fenkart/Bostandzhyandb9ef1a2010-02-07 21:45:47 +0100471 }
472
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 /*
474 * Since our memory may not be contiguous, calculate the
475 * real number of pages we have in this system
476 */
477 printk(KERN_INFO "Memory:");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 num_physpages = 0;
479 for (i = 0; i < meminfo.nr_banks; i++) {
Russell Kingd2a38ef2008-10-01 16:56:15 +0100480 num_physpages += bank_pfn_size(&meminfo.bank[i]);
481 printk(" %ldMB", bank_phys_size(&meminfo.bank[i]) >> 20);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 printk(" = %luMB total\n", num_physpages >> (20 - PAGE_SHIFT));
Nicolas Pitre6db015e2008-09-17 14:50:42 -0400484
Fenkart/Bostandzhyandb9ef1a2010-02-07 21:45:47 +0100485 printk(KERN_NOTICE "Memory: %luk/%luk available, %luk reserved, %luK highmem\n",
486 nr_free_pages() << (PAGE_SHIFT-10),
487 free_pages << (PAGE_SHIFT-10),
488 reserved_pages << (PAGE_SHIFT-10),
Andreas Fenkart4b529402010-01-08 14:42:31 -0800489 totalhigh_pages << (PAGE_SHIFT-10));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
Fenkart/Bostandzhyandb9ef1a2010-02-07 21:45:47 +0100491#define MLK(b, t) b, t, ((t) - (b)) >> 10
492#define MLM(b, t) b, t, ((t) - (b)) >> 20
493#define MLK_ROUNDUP(b, t) b, t, DIV_ROUND_UP(((t) - (b)), SZ_1K)
494
495 printk(KERN_NOTICE "Virtual kernel memory layout:\n"
496 " vector : 0x%08lx - 0x%08lx (%4ld kB)\n"
Linus Walleij07d2a5c2010-07-12 21:52:34 +0100497#ifdef CONFIG_HAVE_TCM
Linus Walleij07d2a5c2010-07-12 21:52:34 +0100498 " DTCM : 0x%08lx - 0x%08lx (%4ld kB)\n"
Linus Walleij07d2a5c2010-07-12 21:52:34 +0100499 " ITCM : 0x%08lx - 0x%08lx (%4ld kB)\n"
500#endif
Fenkart/Bostandzhyandb9ef1a2010-02-07 21:45:47 +0100501 " fixmap : 0x%08lx - 0x%08lx (%4ld kB)\n"
Fenkart/Bostandzhyana7bd08c2010-02-07 21:46:33 +0100502#ifdef CONFIG_MMU
503 " DMA : 0x%08lx - 0x%08lx (%4ld MB)\n"
504#endif
Fenkart/Bostandzhyandb9ef1a2010-02-07 21:45:47 +0100505 " vmalloc : 0x%08lx - 0x%08lx (%4ld MB)\n"
506 " lowmem : 0x%08lx - 0x%08lx (%4ld MB)\n"
507#ifdef CONFIG_HIGHMEM
508 " pkmap : 0x%08lx - 0x%08lx (%4ld MB)\n"
509#endif
510 " modules : 0x%08lx - 0x%08lx (%4ld MB)\n"
511 " .init : 0x%p" " - 0x%p" " (%4d kB)\n"
512 " .text : 0x%p" " - 0x%p" " (%4d kB)\n"
513 " .data : 0x%p" " - 0x%p" " (%4d kB)\n",
514
515 MLK(UL(CONFIG_VECTORS_BASE), UL(CONFIG_VECTORS_BASE) +
516 (PAGE_SIZE)),
Linus Walleij07d2a5c2010-07-12 21:52:34 +0100517#ifdef CONFIG_HAVE_TCM
Linus Walleij1dbd30e2010-07-12 21:53:28 +0100518 MLK(DTCM_OFFSET, (unsigned long) dtcm_end),
519 MLK(ITCM_OFFSET, (unsigned long) itcm_end),
Linus Walleij07d2a5c2010-07-12 21:52:34 +0100520#endif
Fenkart/Bostandzhyandb9ef1a2010-02-07 21:45:47 +0100521 MLK(FIXADDR_START, FIXADDR_TOP),
Fenkart/Bostandzhyana7bd08c2010-02-07 21:46:33 +0100522#ifdef CONFIG_MMU
523 MLM(CONSISTENT_BASE, CONSISTENT_END),
524#endif
Fenkart/Bostandzhyanc931b4f2010-02-07 21:47:17 +0100525 MLM(VMALLOC_START, VMALLOC_END),
Fenkart/Bostandzhyandb9ef1a2010-02-07 21:45:47 +0100526 MLM(PAGE_OFFSET, (unsigned long)high_memory),
527#ifdef CONFIG_HIGHMEM
528 MLM(PKMAP_BASE, (PKMAP_BASE) + (LAST_PKMAP) *
529 (PAGE_SIZE)),
530#endif
531 MLM(MODULES_VADDR, MODULES_END),
532
533 MLK_ROUNDUP(__init_begin, __init_end),
534 MLK_ROUNDUP(_text, _etext),
535 MLK_ROUNDUP(_data, _edata));
536
537#undef MLK
538#undef MLM
539#undef MLK_ROUNDUP
540
Fenkart/Bostandzhyana1839272010-02-07 21:47:58 +0100541 /*
542 * Check boundaries twice: Some fundamental inconsistencies can
543 * be detected at build time already.
544 */
545#ifdef CONFIG_MMU
546 BUILD_BUG_ON(VMALLOC_END > CONSISTENT_BASE);
547 BUG_ON(VMALLOC_END > CONSISTENT_BASE);
548
549 BUILD_BUG_ON(TASK_SIZE > MODULES_VADDR);
550 BUG_ON(TASK_SIZE > MODULES_VADDR);
551#endif
552
553#ifdef CONFIG_HIGHMEM
554 BUILD_BUG_ON(PKMAP_BASE + LAST_PKMAP * PAGE_SIZE > PAGE_OFFSET);
555 BUG_ON(PKMAP_BASE + LAST_PKMAP * PAGE_SIZE > PAGE_OFFSET);
556#endif
557
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 if (PAGE_SIZE >= 16384 && num_physpages <= 128) {
559 extern int sysctl_overcommit_memory;
560 /*
561 * On a machine this small we won't get
562 * anywhere without overcommit, so turn
563 * it on by default.
564 */
565 sysctl_overcommit_memory = OVERCOMMIT_ALWAYS;
566 }
567}
568
569void free_initmem(void)
570{
Linus Walleijbc581772009-09-15 17:30:37 +0100571#ifdef CONFIG_HAVE_TCM
Linus Walleijea208f62010-05-26 07:37:57 +0100572 extern char __tcm_start, __tcm_end;
Linus Walleijbc581772009-09-15 17:30:37 +0100573
Linus Walleijea208f62010-05-26 07:37:57 +0100574 totalram_pages += free_area(__phys_to_pfn(__pa(&__tcm_start)),
575 __phys_to_pfn(__pa(&__tcm_end)),
Linus Walleijbc581772009-09-15 17:30:37 +0100576 "TCM link");
577#endif
578
Nicolas Pitre6db015e2008-09-17 14:50:42 -0400579 if (!machine_is_integrator() && !machine_is_cintegrator())
Russell King37efe642008-12-01 11:53:07 +0000580 totalram_pages += free_area(__phys_to_pfn(__pa(__init_begin)),
581 __phys_to_pfn(__pa(__init_end)),
Nicolas Pitre6db015e2008-09-17 14:50:42 -0400582 "init");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583}
584
585#ifdef CONFIG_BLK_DEV_INITRD
586
587static int keep_initrd;
588
589void free_initrd_mem(unsigned long start, unsigned long end)
590{
591 if (!keep_initrd)
Nicolas Pitre6db015e2008-09-17 14:50:42 -0400592 totalram_pages += free_area(__phys_to_pfn(__pa(start)),
593 __phys_to_pfn(__pa(end)),
594 "initrd");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595}
596
597static int __init keepinitrd_setup(char *__unused)
598{
599 keep_initrd = 1;
600 return 1;
601}
602
603__setup("keepinitrd", keepinitrd_setup);
604#endif