blob: 80584bd7f03e304e621bf9071f9ba39fd094d56e [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>
18
19#include <asm/mach-types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <asm/setup.h>
Russell King74d02fb2006-04-04 21:47:43 +010021#include <asm/sizes.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <asm/tlb.h>
23
24#include <asm/mach/arch.h>
25#include <asm/mach/map.h>
26
Russell King1b2e2b72006-08-21 17:06:38 +010027#include "mm.h"
28
Russell King012d1f42008-09-06 10:57:03 +010029static unsigned long phys_initrd_start __initdata = 0;
30static unsigned long phys_initrd_size __initdata = 0;
31
32static void __init early_initrd(char **p)
33{
34 unsigned long start, size;
35
36 start = memparse(*p, p);
37 if (**p == ',') {
38 size = memparse((*p) + 1, p);
39
40 phys_initrd_start = start;
41 phys_initrd_size = size;
42 }
43}
44__early_param("initrd=", early_initrd);
45
46static int __init parse_tag_initrd(const struct tag *tag)
47{
48 printk(KERN_WARNING "ATAG_INITRD is deprecated; "
49 "please update your bootloader.\n");
50 phys_initrd_start = __virt_to_phys(tag->u.initrd.start);
51 phys_initrd_size = tag->u.initrd.size;
52 return 0;
53}
54
55__tagtable(ATAG_INITRD, parse_tag_initrd);
56
57static int __init parse_tag_initrd2(const struct tag *tag)
58{
59 phys_initrd_start = tag->u.initrd.start;
60 phys_initrd_size = tag->u.initrd.size;
61 return 0;
62}
63
64__tagtable(ATAG_INITRD2, parse_tag_initrd2);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
66/*
Ray Lehtiniemi5e709822006-11-07 03:19:15 +010067 * This is used to pass memory configuration data from paging_init
68 * to mem_init, and by show_mem() to skip holes in the memory map.
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 */
Ray Lehtiniemi5e709822006-11-07 03:19:15 +010070static struct meminfo meminfo = { 0, };
71
72#define for_each_nodebank(iter,mi,no) \
73 for (iter = 0; iter < mi->nr_banks; iter++) \
74 if (mi->bank[iter].node == no)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Linus Torvalds1da177e2005-04-16 15:20:36 -070076void show_mem(void)
77{
78 int free = 0, total = 0, reserved = 0;
Ray Lehtiniemi5e709822006-11-07 03:19:15 +010079 int shared = 0, cached = 0, slab = 0, node, i;
80 struct meminfo * mi = &meminfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
82 printk("Mem-info:\n");
83 show_free_areas();
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 for_each_online_node(node) {
Russell King204ecae2007-01-16 14:01:47 +000085 pg_data_t *n = NODE_DATA(node);
86 struct page *map = n->node_mem_map - n->node_start_pfn;
87
Ray Lehtiniemi5e709822006-11-07 03:19:15 +010088 for_each_nodebank (i,mi,node) {
89 unsigned int pfn1, pfn2;
90 struct page *page, *end;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Russell King204ecae2007-01-16 14:01:47 +000092 pfn1 = __phys_to_pfn(mi->bank[i].start);
93 pfn2 = __phys_to_pfn(mi->bank[i].size + mi->bank[i].start);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
Russell King204ecae2007-01-16 14:01:47 +000095 page = map + pfn1;
96 end = map + pfn2;
Ray Lehtiniemi5e709822006-11-07 03:19:15 +010097
98 do {
99 total++;
100 if (PageReserved(page))
101 reserved++;
102 else if (PageSwapCache(page))
103 cached++;
104 else if (PageSlab(page))
105 slab++;
106 else if (!page_count(page))
107 free++;
108 else
109 shared += page_count(page) - 1;
110 page++;
111 } while (page < end);
112 }
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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123/*
124 * FIXME: We really want to avoid allocating the bootmap bitmap
125 * over the top of the initrd. Hopefully, this is located towards
126 * the start of a bank, so if we allocate the bootmap bitmap at
127 * the end, we won't clash.
128 */
129static unsigned int __init
130find_bootmap_pfn(int node, struct meminfo *mi, unsigned int bootmap_pages)
131{
132 unsigned int start_pfn, bank, bootmap_pfn;
133
Russell King90072052005-10-28 14:48:37 +0100134 start_pfn = PAGE_ALIGN(__pa(&_end)) >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 bootmap_pfn = 0;
136
Russell King90072052005-10-28 14:48:37 +0100137 for_each_nodebank(bank, mi, node) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 unsigned int start, end;
139
Russell King92a8cbe2005-06-22 21:47:25 +0100140 start = mi->bank[bank].start >> PAGE_SHIFT;
141 end = (mi->bank[bank].size +
142 mi->bank[bank].start) >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
144 if (end < start_pfn)
145 continue;
146
147 if (start < start_pfn)
148 start = start_pfn;
149
150 if (end <= start)
151 continue;
152
153 if (end - start >= bootmap_pages) {
154 bootmap_pfn = start;
155 break;
156 }
157 }
158
159 if (bootmap_pfn == 0)
160 BUG();
161
162 return bootmap_pfn;
163}
164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165static int __init check_initrd(struct meminfo *mi)
166{
167 int initrd_node = -2;
168#ifdef CONFIG_BLK_DEV_INITRD
169 unsigned long end = phys_initrd_start + phys_initrd_size;
170
171 /*
172 * Make sure that the initrd is within a valid area of
173 * memory.
174 */
175 if (phys_initrd_size) {
176 unsigned int i;
177
178 initrd_node = -1;
179
180 for (i = 0; i < mi->nr_banks; i++) {
181 unsigned long bank_end;
182
183 bank_end = mi->bank[i].start + mi->bank[i].size;
184
185 if (mi->bank[i].start <= phys_initrd_start &&
186 end <= bank_end)
187 initrd_node = mi->bank[i].node;
188 }
189 }
190
191 if (initrd_node == -1) {
Russell Kingb962a282008-07-30 21:24:56 +0100192 printk(KERN_ERR "INITRD: 0x%08lx+0x%08lx extends beyond "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 "physical memory - disabling initrd\n",
Russell Kingb962a282008-07-30 21:24:56 +0100194 phys_initrd_start, phys_initrd_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 phys_initrd_start = phys_initrd_size = 0;
196 }
197#endif
198
199 return initrd_node;
200}
201
Russell King456335e2006-09-27 10:00:54 +0100202static inline void map_memory_bank(struct membank *bank)
203{
Russell Kingd111e8f2006-09-27 15:27:33 +0100204#ifdef CONFIG_MMU
Russell King456335e2006-09-27 10:00:54 +0100205 struct map_desc map;
206
207 map.pfn = __phys_to_pfn(bank->start);
208 map.virtual = __phys_to_virt(bank->start);
209 map.length = bank->size;
210 map.type = MT_MEMORY;
211
212 create_mapping(&map);
Russell Kingd111e8f2006-09-27 15:27:33 +0100213#endif
Russell King456335e2006-09-27 10:00:54 +0100214}
215
Russell King90072052005-10-28 14:48:37 +0100216static unsigned long __init
217bootmem_init_node(int node, int initrd_node, struct meminfo *mi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218{
Russell King90072052005-10-28 14:48:37 +0100219 unsigned long zone_size[MAX_NR_ZONES], zhole_size[MAX_NR_ZONES];
220 unsigned long start_pfn, end_pfn, boot_pfn;
221 unsigned int boot_pages;
222 pg_data_t *pgdat;
223 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
Russell King90072052005-10-28 14:48:37 +0100225 start_pfn = -1UL;
226 end_pfn = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
228 /*
Russell King90072052005-10-28 14:48:37 +0100229 * Calculate the pfn range, and map the memory banks for this node.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 */
Russell King90072052005-10-28 14:48:37 +0100231 for_each_nodebank(i, mi, node) {
Russell King456335e2006-09-27 10:00:54 +0100232 struct membank *bank = &mi->bank[i];
Russell King90072052005-10-28 14:48:37 +0100233 unsigned long start, end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Russell King456335e2006-09-27 10:00:54 +0100235 start = bank->start >> PAGE_SHIFT;
236 end = (bank->start + bank->size) >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Russell King90072052005-10-28 14:48:37 +0100238 if (start_pfn > start)
239 start_pfn = start;
240 if (end_pfn < end)
241 end_pfn = end;
242
Russell King456335e2006-09-27 10:00:54 +0100243 map_memory_bank(bank);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 }
245
Russell King90072052005-10-28 14:48:37 +0100246 /*
247 * If there is no memory in this node, ignore it.
248 */
249 if (end_pfn == 0)
250 return end_pfn;
251
252 /*
253 * Allocate the bootmem bitmap page.
254 */
255 boot_pages = bootmem_bootmap_pages(end_pfn - start_pfn);
256 boot_pfn = find_bootmap_pfn(node, mi, boot_pages);
257
258 /*
259 * Initialise the bootmem allocator for this node, handing the
260 * memory banks over to bootmem.
261 */
262 node_set_online(node);
263 pgdat = NODE_DATA(node);
264 init_bootmem_node(pgdat, boot_pfn, start_pfn, end_pfn);
265
266 for_each_nodebank(i, mi, node)
267 free_bootmem_node(pgdat, mi->bank[i].start, mi->bank[i].size);
268
269 /*
270 * Reserve the bootmem bitmap for this node.
271 */
272 reserve_bootmem_node(pgdat, boot_pfn << PAGE_SHIFT,
Bernhard Walle72a7fe32008-02-07 00:15:17 -0800273 boot_pages << PAGE_SHIFT, BOOTMEM_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
Russell Kingb962a282008-07-30 21:24:56 +0100275 /*
276 * Reserve any special node zero regions.
277 */
278 if (node == 0)
279 reserve_node_zero(pgdat);
280
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281#ifdef CONFIG_BLK_DEV_INITRD
Russell King90072052005-10-28 14:48:37 +0100282 /*
283 * If the initrd is in this node, reserve its memory.
284 */
285 if (node == initrd_node) {
Russell Kingb962a282008-07-30 21:24:56 +0100286 int res = reserve_bootmem_node(pgdat, phys_initrd_start,
287 phys_initrd_size, BOOTMEM_EXCLUSIVE);
288
289 if (res == 0) {
290 initrd_start = __phys_to_virt(phys_initrd_start);
291 initrd_end = initrd_start + phys_initrd_size;
292 } else {
293 printk(KERN_ERR
294 "INITRD: 0x%08lx+0x%08lx overlaps in-use "
295 "memory region - disabling initrd\n",
296 phys_initrd_start, phys_initrd_size);
297 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 }
299#endif
300
Russell King90072052005-10-28 14:48:37 +0100301 /*
Russell King90072052005-10-28 14:48:37 +0100302 * initialise the zones within this node.
303 */
304 memset(zone_size, 0, sizeof(zone_size));
305 memset(zhole_size, 0, sizeof(zhole_size));
306
307 /*
308 * The size of this node has already been determined. If we need
309 * to do anything fancy with the allocation of this memory to the
310 * zones, now is the time to do it.
311 */
312 zone_size[0] = end_pfn - start_pfn;
313
314 /*
315 * For each bank in this node, calculate the size of the holes.
316 * holes = node_size - sum(bank_sizes_in_node)
317 */
318 zhole_size[0] = zone_size[0];
319 for_each_nodebank(i, mi, node)
320 zhole_size[0] -= mi->bank[i].size >> PAGE_SHIFT;
321
322 /*
323 * Adjust the sizes according to any special requirements for
324 * this machine type.
325 */
326 arch_adjust_zones(node, zone_size, zhole_size);
327
Johannes Weiner9109fb72008-07-23 21:27:20 -0700328 free_area_init_node(node, zone_size, start_pfn, zhole_size);
Russell King90072052005-10-28 14:48:37 +0100329
330 return end_pfn;
331}
332
Russell Kingd111e8f2006-09-27 15:27:33 +0100333void __init bootmem_init(struct meminfo *mi)
Russell King90072052005-10-28 14:48:37 +0100334{
Russell King456335e2006-09-27 10:00:54 +0100335 unsigned long memend_pfn = 0;
Russell King90072052005-10-28 14:48:37 +0100336 int node, initrd_node, i;
337
338 /*
339 * Invalidate the node number for empty or invalid memory banks
340 */
341 for (i = 0; i < mi->nr_banks; i++)
342 if (mi->bank[i].size == 0 || mi->bank[i].node >= MAX_NUMNODES)
343 mi->bank[i].node = -1;
344
345 memcpy(&meminfo, mi, sizeof(meminfo));
346
Russell King90072052005-10-28 14:48:37 +0100347 /*
348 * Locate which node contains the ramdisk image, if any.
349 */
350 initrd_node = check_initrd(mi);
351
352 /*
353 * Run through each node initialising the bootmem allocator.
354 */
355 for_each_node(node) {
356 unsigned long end_pfn;
357
358 end_pfn = bootmem_init_node(node, initrd_node, mi);
359
360 /*
361 * Remember the highest memory PFN.
362 */
363 if (end_pfn > memend_pfn)
364 memend_pfn = end_pfn;
365 }
366
367 high_memory = __va(memend_pfn << PAGE_SHIFT);
368
369 /*
370 * This doesn't seem to be used by the Linux memory manager any
371 * more, but is used by ll_rw_block. If we can get rid of it, we
372 * also get rid of some of the stuff above as well.
373 *
374 * Note: max_low_pfn and max_pfn reflect the number of _pages_ in
375 * the system, not the maximum PFN.
376 */
377 max_pfn = max_low_pfn = memend_pfn - PHYS_PFN_OFFSET;
378}
379
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380static inline void free_area(unsigned long addr, unsigned long end, char *s)
381{
382 unsigned int size = (end - addr) >> 10;
383
384 for (; addr < end; addr += PAGE_SIZE) {
385 struct page *page = virt_to_page(addr);
386 ClearPageReserved(page);
Nick Piggin7835e982006-03-22 00:08:40 -0800387 init_page_count(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 free_page(addr);
389 totalram_pages++;
390 }
391
392 if (size && s)
393 printk(KERN_INFO "Freeing %s memory: %dK\n", s, size);
394}
395
Russell Kinga0130532005-06-27 14:16:47 +0100396static inline void
397free_memmap(int node, unsigned long start_pfn, unsigned long end_pfn)
398{
399 struct page *start_pg, *end_pg;
400 unsigned long pg, pgend;
401
402 /*
403 * Convert start_pfn/end_pfn to a struct page pointer.
404 */
405 start_pg = pfn_to_page(start_pfn);
406 end_pg = pfn_to_page(end_pfn);
407
408 /*
409 * Convert to physical addresses, and
410 * round start upwards and end downwards.
411 */
412 pg = PAGE_ALIGN(__pa(start_pg));
413 pgend = __pa(end_pg) & PAGE_MASK;
414
415 /*
416 * If there are free pages between these,
417 * free the section of the memmap array.
418 */
419 if (pg < pgend)
420 free_bootmem_node(NODE_DATA(node), pg, pgend - pg);
421}
422
423/*
424 * The mem_map array can get very big. Free the unused area of the memory map.
425 */
426static void __init free_unused_memmap_node(int node, struct meminfo *mi)
427{
428 unsigned long bank_start, prev_bank_end = 0;
429 unsigned int i;
430
431 /*
432 * [FIXME] This relies on each bank being in address order. This
433 * may not be the case, especially if the user has provided the
434 * information on the command line.
435 */
Russell King90072052005-10-28 14:48:37 +0100436 for_each_nodebank(i, mi, node) {
Russell Kinga0130532005-06-27 14:16:47 +0100437 bank_start = mi->bank[i].start >> PAGE_SHIFT;
438 if (bank_start < prev_bank_end) {
439 printk(KERN_ERR "MEM: unordered memory banks. "
440 "Not freeing memmap.\n");
441 break;
442 }
443
444 /*
445 * If we had a previous bank, and there is a space
446 * between the current bank and the previous, free it.
447 */
448 if (prev_bank_end && prev_bank_end != bank_start)
449 free_memmap(node, prev_bank_end, bank_start);
450
451 prev_bank_end = (mi->bank[i].start +
452 mi->bank[i].size) >> PAGE_SHIFT;
453 }
454}
455
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456/*
457 * mem_init() marks the free areas in the mem_map and tells us how much
458 * memory is free. This is done after various parts of the system have
459 * claimed their memory after the kernel image.
460 */
461void __init mem_init(void)
462{
463 unsigned int codepages, datapages, initpages;
464 int i, node;
465
466 codepages = &_etext - &_text;
467 datapages = &_end - &__data_start;
468 initpages = &__init_end - &__init_begin;
469
470#ifndef CONFIG_DISCONTIGMEM
471 max_mapnr = virt_to_page(high_memory) - mem_map;
472#endif
473
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 /* this will put all unused low memory onto the freelists */
475 for_each_online_node(node) {
476 pg_data_t *pgdat = NODE_DATA(node);
477
Russell Kinga0130532005-06-27 14:16:47 +0100478 free_unused_memmap_node(node, &meminfo);
479
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 if (pgdat->node_spanned_pages != 0)
481 totalram_pages += free_all_bootmem_node(pgdat);
482 }
483
484#ifdef CONFIG_SA1111
485 /* now that our DMA memory is actually so designated, we can free it */
486 free_area(PAGE_OFFSET, (unsigned long)swapper_pg_dir, NULL);
487#endif
488
489 /*
490 * Since our memory may not be contiguous, calculate the
491 * real number of pages we have in this system
492 */
493 printk(KERN_INFO "Memory:");
494
495 num_physpages = 0;
496 for (i = 0; i < meminfo.nr_banks; i++) {
497 num_physpages += meminfo.bank[i].size >> PAGE_SHIFT;
498 printk(" %ldMB", meminfo.bank[i].size >> 20);
499 }
500
501 printk(" = %luMB total\n", num_physpages >> (20 - PAGE_SHIFT));
502 printk(KERN_NOTICE "Memory: %luKB available (%dK code, "
503 "%dK data, %dK init)\n",
504 (unsigned long) nr_free_pages() << (PAGE_SHIFT-10),
505 codepages >> 10, datapages >> 10, initpages >> 10);
506
507 if (PAGE_SIZE >= 16384 && num_physpages <= 128) {
508 extern int sysctl_overcommit_memory;
509 /*
510 * On a machine this small we won't get
511 * anywhere without overcommit, so turn
512 * it on by default.
513 */
514 sysctl_overcommit_memory = OVERCOMMIT_ALWAYS;
515 }
516}
517
518void free_initmem(void)
519{
520 if (!machine_is_integrator() && !machine_is_cintegrator()) {
521 free_area((unsigned long)(&__init_begin),
522 (unsigned long)(&__init_end),
523 "init");
524 }
525}
526
527#ifdef CONFIG_BLK_DEV_INITRD
528
529static int keep_initrd;
530
531void free_initrd_mem(unsigned long start, unsigned long end)
532{
533 if (!keep_initrd)
534 free_area(start, end, "initrd");
535}
536
537static int __init keepinitrd_setup(char *__unused)
538{
539 keep_initrd = 1;
540 return 1;
541}
542
543__setup("keepinitrd", keepinitrd_setup);
544#endif