blob: 74c7bcc1e82d8da05b6775274f572fe17114d5f0 [file] [log] [blame]
Michal Simeka95d0e12009-03-27 14:25:29 +01001/*
2 * Copyright (C) 2007-2008 Michal Simek <monstr@monstr.eu>
3 * Copyright (C) 2006 Atmark Techno, Inc.
4 *
5 * This file is subject to the terms and conditions of the GNU General Public
6 * License. See the file "COPYING" in the main directory of this archive
7 * for more details.
8 */
9
10#include <linux/bootmem.h>
11#include <linux/init.h>
12#include <linux/kernel.h>
Yinghai Lu95f72d12010-07-12 14:36:09 +100013#include <linux/memblock.h>
Michal Simeka95d0e12009-03-27 14:25:29 +010014#include <linux/mm.h> /* mem_init */
15#include <linux/initrd.h>
16#include <linux/pagemap.h>
17#include <linux/pfn.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090018#include <linux/slab.h>
Michal Simeka95d0e12009-03-27 14:25:29 +010019#include <linux/swap.h>
Paul Gortmaker66421a62011-09-22 11:22:55 -040020#include <linux/export.h>
Michal Simeka95d0e12009-03-27 14:25:29 +010021
22#include <asm/page.h>
23#include <asm/mmu_context.h>
24#include <asm/pgalloc.h>
25#include <asm/sections.h>
26#include <asm/tlb.h>
Michal Simek41938762011-12-15 14:33:32 +010027#include <asm/fixmap.h>
Michal Simeka95d0e12009-03-27 14:25:29 +010028
Michal Simek79bf3a12010-01-20 15:17:08 +010029/* Use for MMU and noMMU because of PCI generic code */
30int mem_init_done;
31
Michal Simek4dc60832009-05-26 16:30:12 +020032#ifndef CONFIG_MMU
Michal Simeka95d0e12009-03-27 14:25:29 +010033unsigned int __page_offset;
Arnd Bergmann5af7fa62009-05-01 21:48:15 +000034EXPORT_SYMBOL(__page_offset);
Michal Simeka95d0e12009-03-27 14:25:29 +010035
Michal Simek4dc60832009-05-26 16:30:12 +020036#else
Michal Simek4dc60832009-05-26 16:30:12 +020037static int init_bootmem_done;
38#endif /* CONFIG_MMU */
39
Michal Simeka95d0e12009-03-27 14:25:29 +010040char *klimit = _end;
41
42/*
43 * Initialize the bootmem system and give it all the memory we
44 * have available.
45 */
Michal Simek4dc60832009-05-26 16:30:12 +020046unsigned long memory_start;
Michal Simekfd6ed512009-07-23 08:23:53 +020047EXPORT_SYMBOL(memory_start);
Michal Simek4dc60832009-05-26 16:30:12 +020048unsigned long memory_size;
Michal Simekee4bcdf2010-05-13 12:11:42 +020049EXPORT_SYMBOL(memory_size);
Michal Simek83a92522011-12-19 13:46:35 +010050unsigned long lowmem_size;
Michal Simeka95d0e12009-03-27 14:25:29 +010051
Michal Simek2f2f3712011-12-15 15:02:37 +010052#ifdef CONFIG_HIGHMEM
53pte_t *kmap_pte;
54EXPORT_SYMBOL(kmap_pte);
55pgprot_t kmap_prot;
56EXPORT_SYMBOL(kmap_prot);
57
58static inline pte_t *virt_to_kpte(unsigned long vaddr)
59{
60 return pte_offset_kernel(pmd_offset(pgd_offset_k(vaddr),
61 vaddr), vaddr);
62}
63
64static void __init highmem_init(void)
65{
66 pr_debug("%x\n", (u32)PKMAP_BASE);
67 map_page(PKMAP_BASE, 0, 0); /* XXX gross */
68 pkmap_page_table = virt_to_kpte(PKMAP_BASE);
69
70 kmap_pte = virt_to_kpte(__fix_to_virt(FIX_KMAP_BEGIN));
71 kmap_prot = PAGE_KERNEL;
72}
73
Jiang Liu6879ea82013-07-03 15:04:02 -070074static void highmem_setup(void)
Michal Simek2f2f3712011-12-15 15:02:37 +010075{
76 unsigned long pfn;
Michal Simek2f2f3712011-12-15 15:02:37 +010077
78 for (pfn = max_low_pfn; pfn < max_pfn; ++pfn) {
79 struct page *page = pfn_to_page(pfn);
80
81 /* FIXME not sure about */
Jiang Liu6879ea82013-07-03 15:04:02 -070082 if (!memblock_is_reserved(pfn << PAGE_SHIFT))
83 free_highmem_page(page);
Michal Simek2f2f3712011-12-15 15:02:37 +010084 }
Michal Simek2f2f3712011-12-15 15:02:37 +010085}
86#endif /* CONFIG_HIGHMEM */
87
Michal Simeka95d0e12009-03-27 14:25:29 +010088/*
89 * paging_init() sets up the page tables - in fact we've already done this.
90 */
91static void __init paging_init(void)
92{
Michal Simeka95d0e12009-03-27 14:25:29 +010093 unsigned long zones_size[MAX_NR_ZONES];
Michal Simek41938762011-12-15 14:33:32 +010094#ifdef CONFIG_MMU
95 int idx;
96
97 /* Setup fixmaps */
98 for (idx = 0; idx < __end_of_fixed_addresses; idx++)
99 clear_fixmap(idx);
100#endif
Michal Simeka95d0e12009-03-27 14:25:29 +0100101
Steve Magnani5af90432009-05-18 03:22:40 +0200102 /* Clean every zones */
103 memset(zones_size, 0, sizeof(zones_size));
104
Michal Simek2f2f3712011-12-15 15:02:37 +0100105#ifdef CONFIG_HIGHMEM
106 highmem_init();
107
108 zones_size[ZONE_DMA] = max_low_pfn;
109 zones_size[ZONE_HIGHMEM] = max_pfn;
110#else
Michal Simek83a92522011-12-19 13:46:35 +0100111 zones_size[ZONE_DMA] = max_pfn;
Michal Simek2f2f3712011-12-15 15:02:37 +0100112#endif
Michal Simeka95d0e12009-03-27 14:25:29 +0100113
Michal Simekbaab8a82011-12-15 15:47:16 +0100114 /* We don't have holes in memory map */
115 free_area_init_nodes(zones_size);
Michal Simeka95d0e12009-03-27 14:25:29 +0100116}
117
118void __init setup_memory(void)
119{
Michal Simeka95d0e12009-03-27 14:25:29 +0100120 unsigned long map_size;
Benjamin Herrenschmidt76bfcc82010-08-04 14:13:06 +1000121 struct memblock_region *reg;
122
Michal Simek4dc60832009-05-26 16:30:12 +0200123#ifndef CONFIG_MMU
Michal Simeka95d0e12009-03-27 14:25:29 +0100124 u32 kernel_align_start, kernel_align_size;
125
126 /* Find main memory where is the kernel */
Benjamin Herrenschmidt76bfcc82010-08-04 14:13:06 +1000127 for_each_memblock(memory, reg) {
128 memory_start = (u32)reg->base;
Michal Simek83a92522011-12-19 13:46:35 +0100129 lowmem_size = reg->size;
Michal Simeka95d0e12009-03-27 14:25:29 +0100130 if ((memory_start <= (u32)_text) &&
Michal Simek83a92522011-12-19 13:46:35 +0100131 ((u32)_text <= (memory_start + lowmem_size - 1))) {
132 memory_size = lowmem_size;
Michal Simeka95d0e12009-03-27 14:25:29 +0100133 PAGE_OFFSET = memory_start;
Michal Simek6bd55f02012-12-27 10:40:38 +0100134 pr_info("%s: Main mem: 0x%x, size 0x%08x\n",
135 __func__, (u32) memory_start,
Michal Simek83a92522011-12-19 13:46:35 +0100136 (u32) memory_size);
Michal Simeka95d0e12009-03-27 14:25:29 +0100137 break;
138 }
139 }
140
Michal Simek83a92522011-12-19 13:46:35 +0100141 if (!memory_start || !memory_size) {
142 panic("%s: Missing memory setting 0x%08x, size=0x%08x\n",
143 __func__, (u32) memory_start, (u32) memory_size);
Michal Simeka95d0e12009-03-27 14:25:29 +0100144 }
145
146 /* reservation of region where is the kernel */
147 kernel_align_start = PAGE_DOWN((u32)_text);
148 /* ALIGN can be remove because _end in vmlinux.lds.S is align */
149 kernel_align_size = PAGE_UP((u32)klimit) - kernel_align_start;
Michal Simek6bd55f02012-12-27 10:40:38 +0100150 pr_info("%s: kernel addr:0x%08x-0x%08x size=0x%08x\n",
Michal Simeka95d0e12009-03-27 14:25:29 +0100151 __func__, kernel_align_start, kernel_align_start
152 + kernel_align_size, kernel_align_size);
Michal Simek83a92522011-12-19 13:46:35 +0100153 memblock_reserve(kernel_align_start, kernel_align_size);
Michal Simek4dc60832009-05-26 16:30:12 +0200154#endif
Michal Simeka95d0e12009-03-27 14:25:29 +0100155 /*
156 * Kernel:
157 * start: base phys address of kernel - page align
158 * end: base phys address of kernel - page align
159 *
160 * min_low_pfn - the first page (mm/bootmem.c - node_boot_start)
161 * max_low_pfn
162 * max_mapnr - the first unused page (mm/bootmem.c - node_low_pfn)
Michal Simeka95d0e12009-03-27 14:25:29 +0100163 */
164
165 /* memory start is from the kernel end (aligned) to higher addr */
166 min_low_pfn = memory_start >> PAGE_SHIFT; /* minimum for allocation */
167 /* RAM is assumed contiguous */
Jiang Liu6879ea82013-07-03 15:04:02 -0700168 max_mapnr = memory_size >> PAGE_SHIFT;
Michal Simek83a92522011-12-19 13:46:35 +0100169 max_low_pfn = ((u64)memory_start + (u64)lowmem_size) >> PAGE_SHIFT;
170 max_pfn = ((u64)memory_start + (u64)memory_size) >> PAGE_SHIFT;
Michal Simeka95d0e12009-03-27 14:25:29 +0100171
Michal Simek6bd55f02012-12-27 10:40:38 +0100172 pr_info("%s: max_mapnr: %#lx\n", __func__, max_mapnr);
173 pr_info("%s: min_low_pfn: %#lx\n", __func__, min_low_pfn);
174 pr_info("%s: max_low_pfn: %#lx\n", __func__, max_low_pfn);
175 pr_info("%s: max_pfn: %#lx\n", __func__, max_pfn);
Michal Simeka95d0e12009-03-27 14:25:29 +0100176
177 /*
178 * Find an area to use for the bootmem bitmap.
179 * We look for the first area which is at least
180 * 128kB in length (128kB is enough for a bitmap
181 * for 4GB of memory, using 4kB pages), plus 1 page
182 * (in case the address isn't page-aligned).
183 */
Michal Simeke0581662010-05-27 11:17:35 +0200184 map_size = init_bootmem_node(NODE_DATA(0),
Michal Simek8f37b6c2009-08-11 12:36:12 +0200185 PFN_UP(TOPHYS((u32)klimit)), min_low_pfn, max_low_pfn);
Yinghai Lu95f72d12010-07-12 14:36:09 +1000186 memblock_reserve(PFN_UP(TOPHYS((u32)klimit)) << PAGE_SHIFT, map_size);
Michal Simeka95d0e12009-03-27 14:25:29 +0100187
Michal Simekbaab8a82011-12-15 15:47:16 +0100188 /* Add active regions with valid PFNs */
189 for_each_memblock(memory, reg) {
190 unsigned long start_pfn, end_pfn;
191
192 start_pfn = memblock_region_memory_base_pfn(reg);
193 end_pfn = memblock_region_memory_end_pfn(reg);
194 memblock_set_node(start_pfn << PAGE_SHIFT,
195 (end_pfn - start_pfn) << PAGE_SHIFT, 0);
196 }
197
Michal Simeka95d0e12009-03-27 14:25:29 +0100198 /* free bootmem is whole main memory */
Michal Simekbaab8a82011-12-15 15:47:16 +0100199 free_bootmem_with_active_regions(0, max_low_pfn);
Michal Simeka95d0e12009-03-27 14:25:29 +0100200
201 /* reserve allocate blocks */
Benjamin Herrenschmidt76bfcc82010-08-04 14:13:06 +1000202 for_each_memblock(reserved, reg) {
Michal Simek83a92522011-12-19 13:46:35 +0100203 unsigned long top = reg->base + reg->size - 1;
204
205 pr_debug("reserved - 0x%08x-0x%08x, %lx, %lx\n",
206 (u32) reg->base, (u32) reg->size, top,
207 memory_start + lowmem_size - 1);
208
209 if (top <= (memory_start + lowmem_size - 1)) {
210 reserve_bootmem(reg->base, reg->size, BOOTMEM_DEFAULT);
211 } else if (reg->base < (memory_start + lowmem_size - 1)) {
212 unsigned long trunc_size = memory_start + lowmem_size -
213 reg->base;
214 reserve_bootmem(reg->base, trunc_size, BOOTMEM_DEFAULT);
215 }
Michal Simeka95d0e12009-03-27 14:25:29 +0100216 }
Michal Simek83a92522011-12-19 13:46:35 +0100217
Michal Simekbaab8a82011-12-15 15:47:16 +0100218 /* XXX need to clip this if using highmem? */
219 sparse_memory_present_with_active_regions(0);
220
Michal Simek4dc60832009-05-26 16:30:12 +0200221#ifdef CONFIG_MMU
222 init_bootmem_done = 1;
223#endif
Michal Simeka95d0e12009-03-27 14:25:29 +0100224 paging_init();
225}
226
Michal Simeka95d0e12009-03-27 14:25:29 +0100227#ifdef CONFIG_BLK_DEV_INITRD
228void free_initrd_mem(unsigned long start, unsigned long end)
229{
Jiang Liudbe67df2013-07-03 15:02:51 -0700230 free_reserved_area((void *)start, (void *)end, -1, "initrd");
Michal Simeka95d0e12009-03-27 14:25:29 +0100231}
232#endif
233
234void free_initmem(void)
235{
Jiang Liudbe67df2013-07-03 15:02:51 -0700236 free_initmem_default(-1);
Michal Simeka95d0e12009-03-27 14:25:29 +0100237}
238
Michal Simeka95d0e12009-03-27 14:25:29 +0100239void __init mem_init(void)
240{
Michal Simek83a92522011-12-19 13:46:35 +0100241 high_memory = (void *)__va(memory_start + lowmem_size - 1);
242
Michal Simeka95d0e12009-03-27 14:25:29 +0100243 /* this will put all memory onto the freelists */
Jiang Liu0c988532013-07-03 15:03:24 -0700244 free_all_bootmem();
Michal Simek2f2f3712011-12-15 15:02:37 +0100245#ifdef CONFIG_HIGHMEM
Jiang Liu6879ea82013-07-03 15:04:02 -0700246 highmem_setup();
Michal Simek2f2f3712011-12-15 15:02:37 +0100247#endif
248
Jiang Liu6879ea82013-07-03 15:04:02 -0700249 mem_init_print_info(NULL);
Michal Simek83299792011-12-19 13:47:03 +0100250#ifdef CONFIG_MMU
251 pr_info("Kernel virtual memory layout:\n");
252 pr_info(" * 0x%08lx..0x%08lx : fixmap\n", FIXADDR_START, FIXADDR_TOP);
Michal Simek2f2f3712011-12-15 15:02:37 +0100253#ifdef CONFIG_HIGHMEM
254 pr_info(" * 0x%08lx..0x%08lx : highmem PTEs\n",
255 PKMAP_BASE, PKMAP_ADDR(LAST_PKMAP));
256#endif /* CONFIG_HIGHMEM */
Michal Simek83299792011-12-19 13:47:03 +0100257 pr_info(" * 0x%08lx..0x%08lx : early ioremap\n",
258 ioremap_bot, ioremap_base);
259 pr_info(" * 0x%08lx..0x%08lx : vmalloc & ioremap\n",
260 (unsigned long)VMALLOC_START, VMALLOC_END);
261#endif
Michal Simek4dc60832009-05-26 16:30:12 +0200262 mem_init_done = 1;
Michal Simeka95d0e12009-03-27 14:25:29 +0100263}
264
Michal Simek4dc60832009-05-26 16:30:12 +0200265#ifndef CONFIG_MMU
Michal Simek79bf3a12010-01-20 15:17:08 +0100266int page_is_ram(unsigned long pfn)
267{
268 return __range_ok(pfn, 0);
269}
Michal Simek4dc60832009-05-26 16:30:12 +0200270#else
271int page_is_ram(unsigned long pfn)
272{
273 return pfn < max_low_pfn;
274}
275
276/*
277 * Check for command-line options that affect what MMU_init will do.
278 */
279static void mm_cmdline_setup(void)
280{
281 unsigned long maxmem = 0;
282 char *p = cmd_line;
283
284 /* Look for mem= option on command line */
285 p = strstr(cmd_line, "mem=");
286 if (p) {
287 p += 4;
288 maxmem = memparse(p, &p);
289 if (maxmem && memory_size > maxmem) {
290 memory_size = maxmem;
Michal Simekda5ab112010-09-11 00:07:06 -0700291 memblock.memory.regions[0].size = memory_size;
Michal Simek4dc60832009-05-26 16:30:12 +0200292 }
293 }
294}
295
296/*
297 * MMU_init_hw does the chip-specific initialization of the MMU hardware.
298 */
299static void __init mmu_init_hw(void)
300{
301 /*
302 * The Zone Protection Register (ZPR) defines how protection will
303 * be applied to every page which is a member of a given zone. At
304 * present, we utilize only two of the zones.
305 * The zone index bits (of ZSEL) in the PTE are used for software
306 * indicators, except the LSB. For user access, zone 1 is used,
307 * for kernel access, zone 0 is used. We set all but zone 1
308 * to zero, allowing only kernel access as indicated in the PTE.
309 * For zone 1, we set a 01 binary (a value of 10 will not work)
310 * to allow user access as indicated in the PTE. This also allows
311 * kernel access as indicated in the PTE.
312 */
313 __asm__ __volatile__ ("ori r11, r0, 0x10000000;" \
314 "mts rzpr, r11;"
315 : : : "r11");
316}
317
318/*
319 * MMU_init sets up the basic memory mappings for the kernel,
320 * including both RAM and possibly some I/O regions,
321 * and sets up the page tables and the MMU hardware ready to go.
322 */
323
324/* called from head.S */
325asmlinkage void __init mmu_init(void)
326{
327 unsigned int kstart, ksize;
328
Yinghai Lu95f72d12010-07-12 14:36:09 +1000329 if (!memblock.reserved.cnt) {
Michal Simek6bd55f02012-12-27 10:40:38 +0100330 pr_emerg("Error memory count\n");
Michal Simek4dc60832009-05-26 16:30:12 +0200331 machine_restart(NULL);
332 }
333
Michal Simek95b0f9e2010-02-08 16:41:38 +0100334 if ((u32) memblock.memory.regions[0].size < 0x400000) {
Michal Simek6bd55f02012-12-27 10:40:38 +0100335 pr_emerg("Memory must be greater than 4MB\n");
Michal Simek4dc60832009-05-26 16:30:12 +0200336 machine_restart(NULL);
337 }
Michal Simek95b0f9e2010-02-08 16:41:38 +0100338
339 if ((u32) memblock.memory.regions[0].size < kernel_tlb) {
Michal Simek6bd55f02012-12-27 10:40:38 +0100340 pr_emerg("Kernel size is greater than memory node\n");
Michal Simek95b0f9e2010-02-08 16:41:38 +0100341 machine_restart(NULL);
342 }
343
Michal Simek4dc60832009-05-26 16:30:12 +0200344 /* Find main memory where the kernel is */
Michal Simekda5ab112010-09-11 00:07:06 -0700345 memory_start = (u32) memblock.memory.regions[0].base;
Michal Simek83a92522011-12-19 13:46:35 +0100346 lowmem_size = memory_size = (u32) memblock.memory.regions[0].size;
347
348 if (lowmem_size > CONFIG_LOWMEM_SIZE) {
349 lowmem_size = CONFIG_LOWMEM_SIZE;
Michal Simek2f2f3712011-12-15 15:02:37 +0100350#ifndef CONFIG_HIGHMEM
Michal Simek83a92522011-12-19 13:46:35 +0100351 memory_size = lowmem_size;
Michal Simek2f2f3712011-12-15 15:02:37 +0100352#endif
Michal Simek83a92522011-12-19 13:46:35 +0100353 }
Michal Simek4dc60832009-05-26 16:30:12 +0200354
355 mm_cmdline_setup(); /* FIXME parse args from command line - not used */
356
357 /*
358 * Map out the kernel text/data/bss from the available physical
359 * memory.
360 */
361 kstart = __pa(CONFIG_KERNEL_START); /* kernel start */
362 /* kernel size */
363 ksize = PAGE_ALIGN(((u32)_end - (u32)CONFIG_KERNEL_START));
Yinghai Lu95f72d12010-07-12 14:36:09 +1000364 memblock_reserve(kstart, ksize);
Michal Simek4dc60832009-05-26 16:30:12 +0200365
366#if defined(CONFIG_BLK_DEV_INITRD)
367 /* Remove the init RAM disk from the available memory. */
Michal Simek5eec2f02013-05-02 15:53:51 +0200368 if (initrd_start) {
369 unsigned long size;
370 size = initrd_end - initrd_start;
371 memblock_reserve(virt_to_phys(initrd_start), size);
372 }
Michal Simek4dc60832009-05-26 16:30:12 +0200373#endif /* CONFIG_BLK_DEV_INITRD */
374
375 /* Initialize the MMU hardware */
376 mmu_init_hw();
377
378 /* Map in all of RAM starting at CONFIG_KERNEL_START */
379 mapin_ram();
380
Michal Simek41938762011-12-15 14:33:32 +0100381 /* Extend vmalloc and ioremap area as big as possible */
Michal Simek2f2f3712011-12-15 15:02:37 +0100382#ifdef CONFIG_HIGHMEM
383 ioremap_base = ioremap_bot = PKMAP_BASE;
384#else
Michal Simek41938762011-12-15 14:33:32 +0100385 ioremap_base = ioremap_bot = FIXADDR_START;
Michal Simek2f2f3712011-12-15 15:02:37 +0100386#endif
Michal Simek41938762011-12-15 14:33:32 +0100387
Michal Simek4dc60832009-05-26 16:30:12 +0200388 /* Initialize the context management stuff */
389 mmu_context_init();
Michal Simek83a92522011-12-19 13:46:35 +0100390
391 /* Shortly after that, the entire linear mapping will be available */
392 /* This will also cause that unflatten device tree will be allocated
393 * inside 768MB limit */
394 memblock_set_current_limit(memory_start + lowmem_size - 1);
Michal Simek4dc60832009-05-26 16:30:12 +0200395}
396
397/* This is only called until mem_init is done. */
398void __init *early_get_page(void)
399{
400 void *p;
401 if (init_bootmem_done) {
402 p = alloc_bootmem_pages(PAGE_SIZE);
403 } else {
404 /*
Michal Simek95b0f9e2010-02-08 16:41:38 +0100405 * Mem start + kernel_tlb -> here is limit
Michal Simek4dc60832009-05-26 16:30:12 +0200406 * because of mem mapping from head.S
407 */
Yinghai Lu95f72d12010-07-12 14:36:09 +1000408 p = __va(memblock_alloc_base(PAGE_SIZE, PAGE_SIZE,
Michal Simek95b0f9e2010-02-08 16:41:38 +0100409 memory_start + kernel_tlb));
Michal Simek4dc60832009-05-26 16:30:12 +0200410 }
411 return p;
412}
Michal Simeka84642a2010-01-14 17:03:49 +0100413
Michal Simek79bf3a12010-01-20 15:17:08 +0100414#endif /* CONFIG_MMU */
415
Michal Simeka84642a2010-01-14 17:03:49 +0100416void * __init_refok alloc_maybe_bootmem(size_t size, gfp_t mask)
417{
418 if (mem_init_done)
419 return kmalloc(size, mask);
420 else
421 return alloc_bootmem(size);
422}
423
424void * __init_refok zalloc_maybe_bootmem(size_t size, gfp_t mask)
425{
426 void *p;
427
428 if (mem_init_done)
429 p = kzalloc(size, mask);
430 else {
431 p = alloc_bootmem(size);
432 if (p)
433 memset(p, 0, size);
434 }
435 return p;
436}