mm: remove include/linux/bootmem.h
[linux-2.6-block.git] / arch / unicore32 / mm / init.c
1 /*
2  *  linux/arch/unicore32/mm/init.c
3  *
4  *  Copyright (C) 2010 GUAN Xue-tao
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/memblock.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/sort.h>
21 #include <linux/dma-mapping.h>
22 #include <linux/export.h>
23
24 #include <asm/sections.h>
25 #include <asm/setup.h>
26 #include <asm/sizes.h>
27 #include <asm/tlb.h>
28 #include <asm/memblock.h>
29 #include <mach/map.h>
30
31 #include "mm.h"
32
33 static unsigned long phys_initrd_start __initdata = 0x01000000;
34 static unsigned long phys_initrd_size __initdata = SZ_8M;
35
36 static int __init early_initrd(char *p)
37 {
38         unsigned long start, size;
39         char *endp;
40
41         start = memparse(p, &endp);
42         if (*endp == ',') {
43                 size = memparse(endp + 1, NULL);
44
45                 phys_initrd_start = start;
46                 phys_initrd_size = size;
47         }
48         return 0;
49 }
50 early_param("initrd", early_initrd);
51
52 /*
53  * This keeps memory configuration data used by a couple memory
54  * initialization functions, as well as show_mem() for the skipping
55  * of holes in the memory map.  It is populated by uc32_add_memory().
56  */
57 struct meminfo meminfo;
58
59 static void __init find_limits(unsigned long *min, unsigned long *max_low,
60         unsigned long *max_high)
61 {
62         struct meminfo *mi = &meminfo;
63         int i;
64
65         *min = -1UL;
66         *max_low = *max_high = 0;
67
68         for_each_bank(i, mi) {
69                 struct membank *bank = &mi->bank[i];
70                 unsigned long start, end;
71
72                 start = bank_pfn_start(bank);
73                 end = bank_pfn_end(bank);
74
75                 if (*min > start)
76                         *min = start;
77                 if (*max_high < end)
78                         *max_high = end;
79                 if (bank->highmem)
80                         continue;
81                 if (*max_low < end)
82                         *max_low = end;
83         }
84 }
85
86 static void __init uc32_bootmem_free(unsigned long min, unsigned long max_low,
87         unsigned long max_high)
88 {
89         unsigned long zone_size[MAX_NR_ZONES], zhole_size[MAX_NR_ZONES];
90         struct memblock_region *reg;
91
92         /*
93          * initialise the zones.
94          */
95         memset(zone_size, 0, sizeof(zone_size));
96
97         /*
98          * The memory size has already been determined.  If we need
99          * to do anything fancy with the allocation of this memory
100          * to the zones, now is the time to do it.
101          */
102         zone_size[0] = max_low - min;
103
104         /*
105          * Calculate the size of the holes.
106          *  holes = node_size - sum(bank_sizes)
107          */
108         memcpy(zhole_size, zone_size, sizeof(zhole_size));
109         for_each_memblock(memory, reg) {
110                 unsigned long start = memblock_region_memory_base_pfn(reg);
111                 unsigned long end = memblock_region_memory_end_pfn(reg);
112
113                 if (start < max_low) {
114                         unsigned long low_end = min(end, max_low);
115                         zhole_size[0] -= low_end - start;
116                 }
117         }
118
119         /*
120          * Adjust the sizes according to any special requirements for
121          * this machine type.
122          */
123         arch_adjust_zones(zone_size, zhole_size);
124
125         free_area_init_node(0, zone_size, min, zhole_size);
126 }
127
128 int pfn_valid(unsigned long pfn)
129 {
130         return memblock_is_memory(pfn << PAGE_SHIFT);
131 }
132 EXPORT_SYMBOL(pfn_valid);
133
134 static void uc32_memory_present(void)
135 {
136 }
137
138 static int __init meminfo_cmp(const void *_a, const void *_b)
139 {
140         const struct membank *a = _a, *b = _b;
141         long cmp = bank_pfn_start(a) - bank_pfn_start(b);
142         return cmp < 0 ? -1 : cmp > 0 ? 1 : 0;
143 }
144
145 void __init uc32_memblock_init(struct meminfo *mi)
146 {
147         int i;
148
149         sort(&meminfo.bank, meminfo.nr_banks, sizeof(meminfo.bank[0]),
150                 meminfo_cmp, NULL);
151
152         for (i = 0; i < mi->nr_banks; i++)
153                 memblock_add(mi->bank[i].start, mi->bank[i].size);
154
155         /* Register the kernel text, kernel data and initrd with memblock. */
156         memblock_reserve(__pa(_text), _end - _text);
157
158 #ifdef CONFIG_BLK_DEV_INITRD
159         if (phys_initrd_size) {
160                 memblock_reserve(phys_initrd_start, phys_initrd_size);
161
162                 /* Now convert initrd to virtual addresses */
163                 initrd_start = __phys_to_virt(phys_initrd_start);
164                 initrd_end = initrd_start + phys_initrd_size;
165         }
166 #endif
167
168         uc32_mm_memblock_reserve();
169
170         memblock_allow_resize();
171         memblock_dump_all();
172 }
173
174 void __init bootmem_init(void)
175 {
176         unsigned long min, max_low, max_high;
177
178         max_low = max_high = 0;
179
180         find_limits(&min, &max_low, &max_high);
181
182         node_set_online(0);
183
184         /*
185          * Sparsemem tries to allocate bootmem in memory_present(),
186          * so must be done after the fixed reservations
187          */
188         uc32_memory_present();
189
190         /*
191          * sparse_init() needs the bootmem allocator up and running.
192          */
193         sparse_init();
194
195         /*
196          * Now free the memory - free_area_init_node needs
197          * the sparse mem_map arrays initialized by sparse_init()
198          * for memmap_init_zone(), otherwise all PFNs are invalid.
199          */
200         uc32_bootmem_free(min, max_low, max_high);
201
202         high_memory = __va((max_low << PAGE_SHIFT) - 1) + 1;
203
204         /*
205          * This doesn't seem to be used by the Linux memory manager any
206          * more, but is used by ll_rw_block.  If we can get rid of it, we
207          * also get rid of some of the stuff above as well.
208          *
209          * Note: max_low_pfn and max_pfn reflect the number of _pages_ in
210          * the system, not the maximum PFN.
211          */
212         max_low_pfn = max_low - PHYS_PFN_OFFSET;
213         max_pfn = max_high - PHYS_PFN_OFFSET;
214 }
215
216 static inline void
217 free_memmap(unsigned long start_pfn, unsigned long end_pfn)
218 {
219         struct page *start_pg, *end_pg;
220         unsigned long pg, pgend;
221
222         /*
223          * Convert start_pfn/end_pfn to a struct page pointer.
224          */
225         start_pg = pfn_to_page(start_pfn - 1) + 1;
226         end_pg = pfn_to_page(end_pfn);
227
228         /*
229          * Convert to physical addresses, and
230          * round start upwards and end downwards.
231          */
232         pg = PAGE_ALIGN(__pa(start_pg));
233         pgend = __pa(end_pg) & PAGE_MASK;
234
235         /*
236          * If there are free pages between these,
237          * free the section of the memmap array.
238          */
239         if (pg < pgend)
240                 memblock_free(pg, pgend - pg);
241 }
242
243 /*
244  * The mem_map array can get very big.  Free the unused area of the memory map.
245  */
246 static void __init free_unused_memmap(struct meminfo *mi)
247 {
248         unsigned long bank_start, prev_bank_end = 0;
249         unsigned int i;
250
251         /*
252          * This relies on each bank being in address order.
253          * The banks are sorted previously in bootmem_init().
254          */
255         for_each_bank(i, mi) {
256                 struct membank *bank = &mi->bank[i];
257
258                 bank_start = bank_pfn_start(bank);
259
260                 /*
261                  * If we had a previous bank, and there is a space
262                  * between the current bank and the previous, free it.
263                  */
264                 if (prev_bank_end && prev_bank_end < bank_start)
265                         free_memmap(prev_bank_end, bank_start);
266
267                 /*
268                  * Align up here since the VM subsystem insists that the
269                  * memmap entries are valid from the bank end aligned to
270                  * MAX_ORDER_NR_PAGES.
271                  */
272                 prev_bank_end = ALIGN(bank_pfn_end(bank), MAX_ORDER_NR_PAGES);
273         }
274 }
275
276 /*
277  * mem_init() marks the free areas in the mem_map and tells us how much
278  * memory is free.  This is done after various parts of the system have
279  * claimed their memory after the kernel image.
280  */
281 void __init mem_init(void)
282 {
283         max_mapnr   = pfn_to_page(max_pfn + PHYS_PFN_OFFSET) - mem_map;
284
285         free_unused_memmap(&meminfo);
286
287         /* this will put all unused low memory onto the freelists */
288         memblock_free_all();
289
290         mem_init_print_info(NULL);
291         printk(KERN_NOTICE "Virtual kernel memory layout:\n"
292                 "    vector  : 0x%08lx - 0x%08lx   (%4ld kB)\n"
293                 "    vmalloc : 0x%08lx - 0x%08lx   (%4ld MB)\n"
294                 "    lowmem  : 0x%08lx - 0x%08lx   (%4ld MB)\n"
295                 "    modules : 0x%08lx - 0x%08lx   (%4ld MB)\n"
296                 "      .init : 0x%p" " - 0x%p" "   (%4d kB)\n"
297                 "      .text : 0x%p" " - 0x%p" "   (%4d kB)\n"
298                 "      .data : 0x%p" " - 0x%p" "   (%4d kB)\n",
299
300                 VECTORS_BASE, VECTORS_BASE + PAGE_SIZE,
301                 DIV_ROUND_UP(PAGE_SIZE, SZ_1K),
302                 VMALLOC_START, VMALLOC_END,
303                 DIV_ROUND_UP((VMALLOC_END - VMALLOC_START), SZ_1M),
304                 PAGE_OFFSET, (unsigned long)high_memory,
305                 DIV_ROUND_UP(((unsigned long)high_memory - PAGE_OFFSET), SZ_1M),
306                 MODULES_VADDR, MODULES_END,
307                 DIV_ROUND_UP((MODULES_END - MODULES_VADDR), SZ_1M),
308
309                 __init_begin, __init_end,
310                 DIV_ROUND_UP((__init_end - __init_begin), SZ_1K),
311                 _stext, _etext,
312                 DIV_ROUND_UP((_etext - _stext), SZ_1K),
313                 _sdata, _edata,
314                 DIV_ROUND_UP((_edata - _sdata), SZ_1K));
315
316         BUILD_BUG_ON(TASK_SIZE                          > MODULES_VADDR);
317         BUG_ON(TASK_SIZE                                > MODULES_VADDR);
318
319         if (PAGE_SIZE >= 16384 && get_num_physpages() <= 128) {
320                 /*
321                  * On a machine this small we won't get
322                  * anywhere without overcommit, so turn
323                  * it on by default.
324                  */
325                 sysctl_overcommit_memory = OVERCOMMIT_ALWAYS;
326         }
327 }
328
329 void free_initmem(void)
330 {
331         free_initmem_default(-1);
332 }
333
334 #ifdef CONFIG_BLK_DEV_INITRD
335
336 static int keep_initrd;
337
338 void free_initrd_mem(unsigned long start, unsigned long end)
339 {
340         if (!keep_initrd)
341                 free_reserved_area((void *)start, (void *)end, -1, "initrd");
342 }
343
344 static int __init keepinitrd_setup(char *__unused)
345 {
346         keep_initrd = 1;
347         return 1;
348 }
349
350 __setup("keepinitrd", keepinitrd_setup);
351 #endif