xref: /openbmc/linux/arch/arm/mm/init.c (revision 5e6f6aa1)
1 /*
2  *  linux/arch/arm/mm/init.c
3  *
4  *  Copyright (C) 1995-2005 Russell King
5  *
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  */
10 #include <linux/kernel.h>
11 #include <linux/errno.h>
12 #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 #include <linux/highmem.h>
19 #include <linux/gfp.h>
20 #include <linux/memblock.h>
21 
22 #include <asm/mach-types.h>
23 #include <asm/sections.h>
24 #include <asm/setup.h>
25 #include <asm/sizes.h>
26 #include <asm/tlb.h>
27 #include <asm/fixmap.h>
28 
29 #include <asm/mach/arch.h>
30 #include <asm/mach/map.h>
31 
32 #include "mm.h"
33 
34 static unsigned long phys_initrd_start __initdata = 0;
35 static unsigned long phys_initrd_size __initdata = 0;
36 
37 static int __init early_initrd(char *p)
38 {
39 	unsigned long start, size;
40 	char *endp;
41 
42 	start = memparse(p, &endp);
43 	if (*endp == ',') {
44 		size = memparse(endp + 1, NULL);
45 
46 		phys_initrd_start = start;
47 		phys_initrd_size = size;
48 	}
49 	return 0;
50 }
51 early_param("initrd", early_initrd);
52 
53 static 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 
64 static 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);
72 
73 /*
74  * 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().
77  */
78 struct meminfo meminfo;
79 
80 void show_mem(void)
81 {
82 	int free = 0, total = 0, reserved = 0;
83 	int shared = 0, cached = 0, slab = 0, i;
84 	struct meminfo * mi = &meminfo;
85 
86 	printk("Mem-info:\n");
87 	show_free_areas();
88 
89 	for_each_bank (i, mi) {
90 		struct membank *bank = &mi->bank[i];
91 		unsigned int pfn1, pfn2;
92 		struct page *page, *end;
93 
94 		pfn1 = bank_pfn_start(bank);
95 		pfn2 = bank_pfn_end(bank);
96 
97 		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);
114 	}
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 
124 static void __init find_limits(struct meminfo *mi,
125 	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 
132 	for_each_bank (i, mi) {
133 		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 
150 static void __init arm_bootmem_init(struct meminfo *mi,
151 	unsigned long start_pfn, unsigned long end_pfn)
152 {
153 	unsigned int boot_pages;
154 	phys_addr_t bitmap;
155 	pg_data_t *pgdat;
156 	int i;
157 
158 	/*
159 	 * Allocate the bootmem bitmap page.  This must be in a region
160 	 * of memory which has already been mapped.
161 	 */
162 	boot_pages = bootmem_bootmap_pages(end_pfn - start_pfn);
163 	bitmap = memblock_alloc_base(boot_pages << PAGE_SHIFT, L1_CACHE_BYTES,
164 				__pfn_to_phys(end_pfn));
165 
166 	/*
167 	 * Initialise the bootmem allocator, handing the
168 	 * memory banks over to bootmem.
169 	 */
170 	node_set_online(0);
171 	pgdat = NODE_DATA(0);
172 	init_bootmem_node(pgdat, __phys_to_pfn(bitmap), start_pfn, end_pfn);
173 
174 	for_each_bank(i, mi) {
175 		struct membank *bank = &mi->bank[i];
176 		if (!bank->highmem)
177 			free_bootmem(bank_phys_start(bank), bank_phys_size(bank));
178 	}
179 
180 	/*
181 	 * Reserve the memblock reserved regions in bootmem.
182 	 */
183 	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);
190 	}
191 }
192 
193 static void __init arm_bootmem_free(struct meminfo *mi, unsigned long min,
194 	unsigned long max_low, unsigned long max_high)
195 {
196 	unsigned long zone_size[MAX_NR_ZONES], zhole_size[MAX_NR_ZONES];
197 	int i;
198 
199 	/*
200 	 * initialise the zones.
201 	 */
202 	memset(zone_size, 0, sizeof(zone_size));
203 
204 	/*
205 	 * 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.
208 	 */
209 	zone_size[0] = max_low - min;
210 #ifdef CONFIG_HIGHMEM
211 	zone_size[ZONE_HIGHMEM] = max_high - max_low;
212 #endif
213 
214 	/*
215 	 * Calculate the size of the holes.
216 	 *  holes = node_size - sum(bank_sizes)
217 	 */
218 	memcpy(zhole_size, zone_size, sizeof(zhole_size));
219 	for_each_bank(i, mi) {
220 		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 	}
227 
228 	/*
229 	 * Adjust the sizes according to any special requirements for
230 	 * this machine type.
231 	 */
232 	arch_adjust_zones(zone_size, zhole_size);
233 
234 	free_area_init_node(0, zone_size, min, zhole_size);
235 }
236 
237 #ifndef CONFIG_SPARSEMEM
238 int pfn_valid(unsigned long pfn)
239 {
240 	return memblock_is_memory(pfn << PAGE_SHIFT);
241 }
242 EXPORT_SYMBOL(pfn_valid);
243 
244 static void arm_memory_present(void)
245 {
246 }
247 #else
248 static void arm_memory_present(void)
249 {
250 	int i;
251 	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));
254 }
255 #endif
256 
257 void __init arm_memblock_init(struct meminfo *mi, struct machine_desc *mdesc)
258 {
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 
283 	/* reserve any platform specific memblock areas */
284 	if (mdesc->reserve)
285 		mdesc->reserve();
286 
287 	memblock_analyze();
288 	memblock_dump_all();
289 }
290 
291 void __init bootmem_init(void)
292 {
293 	struct meminfo *mi = &meminfo;
294 	unsigned long min, max_low, max_high;
295 
296 	max_low = max_high = 0;
297 
298 	find_limits(mi, &min, &max_low, &max_high);
299 
300 	arm_bootmem_init(mi, min, max_low);
301 
302 	/*
303 	 * Sparsemem tries to allocate bootmem in memory_present(),
304 	 * so must be done after the fixed reservations
305 	 */
306 	arm_memory_present();
307 
308 	/*
309 	 * sparse_init() needs the bootmem allocator up and running.
310 	 */
311 	sparse_init();
312 
313 	/*
314 	 * Now free the memory - free_area_init_node needs
315 	 * the sparse mem_map arrays initialized by sparse_init()
316 	 * for memmap_init_zone(), otherwise all PFNs are invalid.
317 	 */
318 	arm_bootmem_free(mi, min, max_low, max_high);
319 
320 	high_memory = __va((max_low << PAGE_SHIFT) - 1) + 1;
321 
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 	 */
330 	max_low_pfn = max_low - PHYS_PFN_OFFSET;
331 	max_pfn = max_high - PHYS_PFN_OFFSET;
332 }
333 
334 static inline int free_area(unsigned long pfn, unsigned long end, char *s)
335 {
336 	unsigned int pages = 0, size = (end - pfn) << (PAGE_SHIFT - 10);
337 
338 	for (; pfn < end; pfn++) {
339 		struct page *page = pfn_to_page(pfn);
340 		ClearPageReserved(page);
341 		init_page_count(page);
342 		__free_page(page);
343 		pages++;
344 	}
345 
346 	if (size && s)
347 		printk(KERN_INFO "Freeing %s memory: %dK\n", s, size);
348 
349 	return pages;
350 }
351 
352 static inline void
353 free_memmap(unsigned long start_pfn, unsigned long end_pfn)
354 {
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 	 */
361 	start_pg = pfn_to_page(start_pfn - 1) + 1;
362 	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)
376 		free_bootmem(pg, pgend - pg);
377 }
378 
379 /*
380  * The mem_map array can get very big.  Free the unused area of the memory map.
381  */
382 static void __init free_unused_memmap(struct meminfo *mi)
383 {
384 	unsigned long bank_start, prev_bank_end = 0;
385 	unsigned int i;
386 
387 	/*
388 	 * This relies on each bank being in address order.
389 	 * The banks are sorted previously in bootmem_init().
390 	 */
391 	for_each_bank(i, mi) {
392 		struct membank *bank = &mi->bank[i];
393 
394 		bank_start = bank_pfn_start(bank);
395 
396 		/*
397 		 * If we had a previous bank, and there is a space
398 		 * between the current bank and the previous, free it.
399 		 */
400 		if (prev_bank_end && prev_bank_end < bank_start)
401 			free_memmap(prev_bank_end, bank_start);
402 
403 		/*
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);
409 	}
410 }
411 
412 /*
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  */
417 void __init mem_init(void)
418 {
419 	unsigned long reserved_pages, free_pages;
420 	int i;
421 #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
426 
427 	max_mapnr   = pfn_to_page(max_pfn + PHYS_PFN_OFFSET) - mem_map;
428 
429 	/* this will put all unused low memory onto the freelists */
430 	free_unused_memmap(&meminfo);
431 
432 	totalram_pages += free_all_bootmem();
433 
434 #ifdef CONFIG_SA1111
435 	/* now that our DMA memory is actually so designated, we can free it */
436 	totalram_pages += free_area(PHYS_PFN_OFFSET,
437 				    __phys_to_pfn(__pa(swapper_pg_dir)), NULL);
438 #endif
439 
440 #ifdef CONFIG_HIGHMEM
441 	/* set highmem page free */
442 	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);
447 	}
448 	totalram_pages += totalhigh_pages;
449 #endif
450 
451 	reserved_pages = free_pages = 0;
452 
453 	for_each_bank(i, &meminfo) {
454 		struct membank *bank = &meminfo.bank[i];
455 		unsigned int pfn1, pfn2;
456 		struct page *page, *end;
457 
458 		pfn1 = bank_pfn_start(bank);
459 		pfn2 = bank_pfn_end(bank);
460 
461 		page = pfn_to_page(pfn1);
462 		end  = pfn_to_page(pfn2 - 1) + 1;
463 
464 		do {
465 			if (PageReserved(page))
466 				reserved_pages++;
467 			else if (!page_count(page))
468 				free_pages++;
469 			page++;
470 		} while (page < end);
471 	}
472 
473 	/*
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:");
478 	num_physpages = 0;
479 	for (i = 0; i < meminfo.nr_banks; i++) {
480 		num_physpages += bank_pfn_size(&meminfo.bank[i]);
481 		printk(" %ldMB", bank_phys_size(&meminfo.bank[i]) >> 20);
482 	}
483 	printk(" = %luMB total\n", num_physpages >> (20 - PAGE_SHIFT));
484 
485 	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),
489 		totalhigh_pages << (PAGE_SHIFT-10));
490 
491 #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"
497 #ifdef CONFIG_HAVE_TCM
498 			"    DTCM    : 0x%08lx - 0x%08lx   (%4ld kB)\n"
499 			"    ITCM    : 0x%08lx - 0x%08lx   (%4ld kB)\n"
500 #endif
501 			"    fixmap  : 0x%08lx - 0x%08lx   (%4ld kB)\n"
502 #ifdef CONFIG_MMU
503 			"    DMA     : 0x%08lx - 0x%08lx   (%4ld MB)\n"
504 #endif
505 			"    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)),
517 #ifdef CONFIG_HAVE_TCM
518 			MLK(DTCM_OFFSET, (unsigned long) dtcm_end),
519 			MLK(ITCM_OFFSET, (unsigned long) itcm_end),
520 #endif
521 			MLK(FIXADDR_START, FIXADDR_TOP),
522 #ifdef CONFIG_MMU
523 			MLM(CONSISTENT_BASE, CONSISTENT_END),
524 #endif
525 			MLM(VMALLOC_START, VMALLOC_END),
526 			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 
541 	/*
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 
558 	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 
569 void free_initmem(void)
570 {
571 #ifdef CONFIG_HAVE_TCM
572 	extern char __tcm_start, __tcm_end;
573 
574 	totalram_pages += free_area(__phys_to_pfn(__pa(&__tcm_start)),
575 				    __phys_to_pfn(__pa(&__tcm_end)),
576 				    "TCM link");
577 #endif
578 
579 	if (!machine_is_integrator() && !machine_is_cintegrator())
580 		totalram_pages += free_area(__phys_to_pfn(__pa(__init_begin)),
581 					    __phys_to_pfn(__pa(__init_end)),
582 					    "init");
583 }
584 
585 #ifdef CONFIG_BLK_DEV_INITRD
586 
587 static int keep_initrd;
588 
589 void free_initrd_mem(unsigned long start, unsigned long end)
590 {
591 	if (!keep_initrd)
592 		totalram_pages += free_area(__phys_to_pfn(__pa(start)),
593 					    __phys_to_pfn(__pa(end)),
594 					    "initrd");
595 }
596 
597 static int __init keepinitrd_setup(char *__unused)
598 {
599 	keep_initrd = 1;
600 	return 1;
601 }
602 
603 __setup("keepinitrd", keepinitrd_setup);
604 #endif
605