xref: /openbmc/linux/arch/xtensa/mm/init.c (revision dbe67df4)
13f65ce4dSChris Zankel /*
23f65ce4dSChris Zankel  * arch/xtensa/mm/init.c
33f65ce4dSChris Zankel  *
43f65ce4dSChris Zankel  * Derived from MIPS, PPC.
53f65ce4dSChris Zankel  *
63f65ce4dSChris Zankel  * This file is subject to the terms and conditions of the GNU General Public
73f65ce4dSChris Zankel  * License.  See the file "COPYING" in the main directory of this archive
83f65ce4dSChris Zankel  * for more details.
93f65ce4dSChris Zankel  *
103f65ce4dSChris Zankel  * Copyright (C) 2001 - 2005 Tensilica Inc.
113f65ce4dSChris Zankel  *
123f65ce4dSChris Zankel  * Chris Zankel	<chris@zankel.net>
133f65ce4dSChris Zankel  * Joe Taylor	<joe@tensilica.com, joetylr@yahoo.com>
143f65ce4dSChris Zankel  * Marc Gauthier
153f65ce4dSChris Zankel  * Kevin Chea
163f65ce4dSChris Zankel  */
173f65ce4dSChris Zankel 
183f65ce4dSChris Zankel #include <linux/kernel.h>
193f65ce4dSChris Zankel #include <linux/errno.h>
203f65ce4dSChris Zankel #include <linux/bootmem.h>
215a0e3ad6STejun Heo #include <linux/gfp.h>
223f65ce4dSChris Zankel #include <linux/swap.h>
236656920bSChris Zankel #include <linux/mman.h>
246656920bSChris Zankel #include <linux/nodemask.h>
256656920bSChris Zankel #include <linux/mm.h>
263f65ce4dSChris Zankel 
273f65ce4dSChris Zankel #include <asm/bootparam.h>
283f65ce4dSChris Zankel #include <asm/page.h>
29f022d0faSGeert Uytterhoeven #include <asm/sections.h>
303f65ce4dSChris Zankel 
313f65ce4dSChris Zankel /*
323f65ce4dSChris Zankel  * mem_reserve(start, end, must_exist)
333f65ce4dSChris Zankel  *
343f65ce4dSChris Zankel  * Reserve some memory from the memory pool.
353f65ce4dSChris Zankel  *
363f65ce4dSChris Zankel  * Parameters:
373f65ce4dSChris Zankel  *  start	Start of region,
383f65ce4dSChris Zankel  *  end		End of region,
393f65ce4dSChris Zankel  *  must_exist	Must exist in memory pool.
403f65ce4dSChris Zankel  *
413f65ce4dSChris Zankel  * Returns:
423f65ce4dSChris Zankel  *  0 (memory area couldn't be mapped)
433f65ce4dSChris Zankel  * -1 (success)
443f65ce4dSChris Zankel  */
453f65ce4dSChris Zankel 
463f65ce4dSChris Zankel int __init mem_reserve(unsigned long start, unsigned long end, int must_exist)
473f65ce4dSChris Zankel {
483f65ce4dSChris Zankel 	int i;
493f65ce4dSChris Zankel 
503f65ce4dSChris Zankel 	if (start == end)
513f65ce4dSChris Zankel 		return 0;
523f65ce4dSChris Zankel 
533f65ce4dSChris Zankel 	start = start & PAGE_MASK;
543f65ce4dSChris Zankel 	end = PAGE_ALIGN(end);
553f65ce4dSChris Zankel 
563f65ce4dSChris Zankel 	for (i = 0; i < sysmem.nr_banks; i++)
573f65ce4dSChris Zankel 		if (start < sysmem.bank[i].end
583f65ce4dSChris Zankel 		    && end >= sysmem.bank[i].start)
593f65ce4dSChris Zankel 			break;
603f65ce4dSChris Zankel 
613f65ce4dSChris Zankel 	if (i == sysmem.nr_banks) {
623f65ce4dSChris Zankel 		if (must_exist)
633f65ce4dSChris Zankel 			printk (KERN_WARNING "mem_reserve: [0x%0lx, 0x%0lx) "
643f65ce4dSChris Zankel 				"not in any region!\n", start, end);
653f65ce4dSChris Zankel 		return 0;
663f65ce4dSChris Zankel 	}
673f65ce4dSChris Zankel 
683f65ce4dSChris Zankel 	if (start > sysmem.bank[i].start) {
693f65ce4dSChris Zankel 		if (end < sysmem.bank[i].end) {
703f65ce4dSChris Zankel 			/* split entry */
713f65ce4dSChris Zankel 			if (sysmem.nr_banks >= SYSMEM_BANKS_MAX)
723f65ce4dSChris Zankel 				panic("meminfo overflow\n");
733f65ce4dSChris Zankel 			sysmem.bank[sysmem.nr_banks].start = end;
743f65ce4dSChris Zankel 			sysmem.bank[sysmem.nr_banks].end = sysmem.bank[i].end;
753f65ce4dSChris Zankel 			sysmem.nr_banks++;
763f65ce4dSChris Zankel 		}
773f65ce4dSChris Zankel 		sysmem.bank[i].end = start;
78c4c4594bSChris Zankel 
79c4c4594bSChris Zankel 	} else if (end < sysmem.bank[i].end) {
803f65ce4dSChris Zankel 		sysmem.bank[i].start = end;
81c4c4594bSChris Zankel 
82c4c4594bSChris Zankel 	} else {
833f65ce4dSChris Zankel 		/* remove entry */
843f65ce4dSChris Zankel 		sysmem.nr_banks--;
853f65ce4dSChris Zankel 		sysmem.bank[i].start = sysmem.bank[sysmem.nr_banks].start;
863f65ce4dSChris Zankel 		sysmem.bank[i].end   = sysmem.bank[sysmem.nr_banks].end;
873f65ce4dSChris Zankel 	}
883f65ce4dSChris Zankel 	return -1;
893f65ce4dSChris Zankel }
903f65ce4dSChris Zankel 
913f65ce4dSChris Zankel 
923f65ce4dSChris Zankel /*
933f65ce4dSChris Zankel  * Initialize the bootmem system and give it all the memory we have available.
943f65ce4dSChris Zankel  */
953f65ce4dSChris Zankel 
963f65ce4dSChris Zankel void __init bootmem_init(void)
973f65ce4dSChris Zankel {
983f65ce4dSChris Zankel 	unsigned long pfn;
993f65ce4dSChris Zankel 	unsigned long bootmap_start, bootmap_size;
1003f65ce4dSChris Zankel 	int i;
1013f65ce4dSChris Zankel 
1023f65ce4dSChris Zankel 	max_low_pfn = max_pfn = 0;
1033f65ce4dSChris Zankel 	min_low_pfn = ~0;
1043f65ce4dSChris Zankel 
1053f65ce4dSChris Zankel 	for (i=0; i < sysmem.nr_banks; i++) {
1063f65ce4dSChris Zankel 		pfn = PAGE_ALIGN(sysmem.bank[i].start) >> PAGE_SHIFT;
1073f65ce4dSChris Zankel 		if (pfn < min_low_pfn)
1083f65ce4dSChris Zankel 			min_low_pfn = pfn;
1093f65ce4dSChris Zankel 		pfn = PAGE_ALIGN(sysmem.bank[i].end - 1) >> PAGE_SHIFT;
1103f65ce4dSChris Zankel 		if (pfn > max_pfn)
1113f65ce4dSChris Zankel 			max_pfn = pfn;
1123f65ce4dSChris Zankel 	}
1133f65ce4dSChris Zankel 
1143f65ce4dSChris Zankel 	if (min_low_pfn > max_pfn)
1153f65ce4dSChris Zankel 		panic("No memory found!\n");
1163f65ce4dSChris Zankel 
117173d6681SChris Zankel 	max_low_pfn = max_pfn < MAX_MEM_PFN >> PAGE_SHIFT ?
118173d6681SChris Zankel 		max_pfn : MAX_MEM_PFN >> PAGE_SHIFT;
1193f65ce4dSChris Zankel 
1203f65ce4dSChris Zankel 	/* Find an area to use for the bootmem bitmap. */
1213f65ce4dSChris Zankel 
122264da9f7SJohannes Weiner 	bootmap_size = bootmem_bootmap_pages(max_low_pfn - min_low_pfn);
123264da9f7SJohannes Weiner 	bootmap_size <<= PAGE_SHIFT;
1243f65ce4dSChris Zankel 	bootmap_start = ~0;
1253f65ce4dSChris Zankel 
1263f65ce4dSChris Zankel 	for (i=0; i<sysmem.nr_banks; i++)
1273f65ce4dSChris Zankel 		if (sysmem.bank[i].end - sysmem.bank[i].start >= bootmap_size) {
1283f65ce4dSChris Zankel 			bootmap_start = sysmem.bank[i].start;
1293f65ce4dSChris Zankel 			break;
1303f65ce4dSChris Zankel 		}
1313f65ce4dSChris Zankel 
1323f65ce4dSChris Zankel 	if (bootmap_start == ~0UL)
1333f65ce4dSChris Zankel 		panic("Cannot find %ld bytes for bootmap\n", bootmap_size);
1343f65ce4dSChris Zankel 
1353f65ce4dSChris Zankel 	/* Reserve the bootmem bitmap area */
1363f65ce4dSChris Zankel 
1373f65ce4dSChris Zankel 	mem_reserve(bootmap_start, bootmap_start + bootmap_size, 1);
1380bef42e5SJohannes Weiner 	bootmap_size = init_bootmem_node(NODE_DATA(0),
1393f65ce4dSChris Zankel 					 bootmap_start >> PAGE_SHIFT,
1400bef42e5SJohannes Weiner 					 min_low_pfn,
1413f65ce4dSChris Zankel 					 max_low_pfn);
1423f65ce4dSChris Zankel 
1433f65ce4dSChris Zankel 	/* Add all remaining memory pieces into the bootmem map */
1443f65ce4dSChris Zankel 
1453f65ce4dSChris Zankel 	for (i=0; i<sysmem.nr_banks; i++)
1463f65ce4dSChris Zankel 		free_bootmem(sysmem.bank[i].start,
1473f65ce4dSChris Zankel 			     sysmem.bank[i].end - sysmem.bank[i].start);
1483f65ce4dSChris Zankel 
1493f65ce4dSChris Zankel }
1503f65ce4dSChris Zankel 
1513f65ce4dSChris Zankel 
152e5083a63SJohannes Weiner void __init zones_init(void)
1533f65ce4dSChris Zankel {
1543f65ce4dSChris Zankel 	unsigned long zones_size[MAX_NR_ZONES];
1553f65ce4dSChris Zankel 	int i;
1563f65ce4dSChris Zankel 
1573f65ce4dSChris Zankel 	/* All pages are DMA-able, so we put them all in the DMA zone. */
1583f65ce4dSChris Zankel 
159c947a585SJohannes Weiner 	zones_size[ZONE_DMA] = max_low_pfn - ARCH_PFN_OFFSET;
1603f65ce4dSChris Zankel 	for (i = 1; i < MAX_NR_ZONES; i++)
1613f65ce4dSChris Zankel 		zones_size[i] = 0;
1623f65ce4dSChris Zankel 
1633f65ce4dSChris Zankel #ifdef CONFIG_HIGHMEM
1643f65ce4dSChris Zankel 	zones_size[ZONE_HIGHMEM] = max_pfn - max_low_pfn;
1653f65ce4dSChris Zankel #endif
1663f65ce4dSChris Zankel 
167c947a585SJohannes Weiner 	free_area_init_node(0, zones_size, ARCH_PFN_OFFSET, NULL);
1683f65ce4dSChris Zankel }
1693f65ce4dSChris Zankel 
1703f65ce4dSChris Zankel /*
1713f65ce4dSChris Zankel  * Initialize memory pages.
1723f65ce4dSChris Zankel  */
1733f65ce4dSChris Zankel 
1743f65ce4dSChris Zankel void __init mem_init(void)
1753f65ce4dSChris Zankel {
1763f65ce4dSChris Zankel 	unsigned long codesize, reservedpages, datasize, initsize;
1773f65ce4dSChris Zankel 	unsigned long highmemsize, tmp, ram;
1783f65ce4dSChris Zankel 
179c947a585SJohannes Weiner 	max_mapnr = num_physpages = max_low_pfn - ARCH_PFN_OFFSET;
180c947a585SJohannes Weiner 	high_memory = (void *) __va(max_low_pfn << PAGE_SHIFT);
1813f65ce4dSChris Zankel 	highmemsize = 0;
1823f65ce4dSChris Zankel 
183288a60cfSChris Zankel #ifdef CONFIG_HIGHMEM
1843f65ce4dSChris Zankel #error HIGHGMEM not implemented in init.c
1853f65ce4dSChris Zankel #endif
1863f65ce4dSChris Zankel 
1873f65ce4dSChris Zankel 	totalram_pages += free_all_bootmem();
1883f65ce4dSChris Zankel 
1893f65ce4dSChris Zankel 	reservedpages = ram = 0;
190c947a585SJohannes Weiner 	for (tmp = 0; tmp < max_mapnr; tmp++) {
1913f65ce4dSChris Zankel 		ram++;
1923f65ce4dSChris Zankel 		if (PageReserved(mem_map+tmp))
1933f65ce4dSChris Zankel 			reservedpages++;
1943f65ce4dSChris Zankel 	}
1953f65ce4dSChris Zankel 
196f022d0faSGeert Uytterhoeven 	codesize =  (unsigned long) _etext - (unsigned long) _stext;
197f022d0faSGeert Uytterhoeven 	datasize =  (unsigned long) _edata - (unsigned long) _sdata;
198f022d0faSGeert Uytterhoeven 	initsize =  (unsigned long) __init_end - (unsigned long) __init_begin;
1993f65ce4dSChris Zankel 
2003f65ce4dSChris Zankel 	printk("Memory: %luk/%luk available (%ldk kernel code, %ldk reserved, "
2013f65ce4dSChris Zankel 	       "%ldk data, %ldk init %ldk highmem)\n",
202cc013a88SGeert Uytterhoeven 	       nr_free_pages() << (PAGE_SHIFT-10),
2033f65ce4dSChris Zankel 	       ram << (PAGE_SHIFT-10),
2043f65ce4dSChris Zankel 	       codesize >> 10,
2053f65ce4dSChris Zankel 	       reservedpages << (PAGE_SHIFT-10),
2063f65ce4dSChris Zankel 	       datasize >> 10,
2073f65ce4dSChris Zankel 	       initsize >> 10,
2083f65ce4dSChris Zankel 	       highmemsize >> 10);
2093f65ce4dSChris Zankel }
2103f65ce4dSChris Zankel 
2113f65ce4dSChris Zankel #ifdef CONFIG_BLK_DEV_INITRD
2123f65ce4dSChris Zankel extern int initrd_is_mapped;
2133f65ce4dSChris Zankel 
2143f65ce4dSChris Zankel void free_initrd_mem(unsigned long start, unsigned long end)
2153f65ce4dSChris Zankel {
2167acb2c2eSJiang Liu 	if (initrd_is_mapped)
217dbe67df4SJiang Liu 		free_reserved_area((void *)start, (void *)end, -1, "initrd");
2183f65ce4dSChris Zankel }
2193f65ce4dSChris Zankel #endif
2203f65ce4dSChris Zankel 
2213f65ce4dSChris Zankel void free_initmem(void)
2223f65ce4dSChris Zankel {
223dbe67df4SJiang Liu 	free_initmem_default(-1);
2243f65ce4dSChris Zankel }
225