memblock: stop using implicit alignment to SMP_CACHE_BYTES
[linux-2.6-block.git] / arch / mips / kernel / setup.c
CommitLineData
1da177e4
LT
1/*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
5 *
6 * Copyright (C) 1995 Linus Torvalds
7 * Copyright (C) 1995 Waldorf Electronics
8 * Copyright (C) 1994, 95, 96, 97, 98, 99, 2000, 01, 02, 03 Ralf Baechle
9 * Copyright (C) 1996 Stoned Elipot
10 * Copyright (C) 1999 Silicon Graphics, Inc.
70342287 11 * Copyright (C) 2000, 2001, 2002, 2007 Maciej W. Rozycki
1da177e4 12 */
1da177e4
LT
13#include <linux/init.h>
14#include <linux/ioport.h>
73bc256d 15#include <linux/export.h>
894673ee 16#include <linux/screen_info.h>
9d15ffc8 17#include <linux/memblock.h>
1da177e4 18#include <linux/initrd.h>
1da177e4
LT
19#include <linux/root_dev.h>
20#include <linux/highmem.h>
21#include <linux/console.h>
22a9835c 22#include <linux/pfn.h>
6312e0ee 23#include <linux/debugfs.h>
7aa1c8f4 24#include <linux/kexec.h>
4d9f77d2 25#include <linux/sizes.h>
f4649382
ZLK
26#include <linux/device.h>
27#include <linux/dma-contiguous.h>
8f4703aa 28#include <linux/decompress/generic.h>
73346081 29#include <linux/of_fdt.h>
1da177e4
LT
30
31#include <asm/addrspace.h>
32#include <asm/bootinfo.h>
20d60d99 33#include <asm/bugs.h>
ec74e361 34#include <asm/cache.h>
e934945d 35#include <asm/cdmm.h>
1da177e4 36#include <asm/cpu.h>
75dcfc1d 37#include <asm/debug.h>
aa4db775 38#include <asm/dma-coherence.h>
1da177e4
LT
39#include <asm/sections.h>
40#include <asm/setup.h>
87353d8a 41#include <asm/smp-ops.h>
f2ffa5ab 42#include <asm/prom.h>
1da177e4 43
87db537d
AK
44#ifdef CONFIG_MIPS_ELF_APPENDED_DTB
45const char __section(.appended_dtb) __appended_dtb[0x100000];
46#endif /* CONFIG_MIPS_ELF_APPENDED_DTB */
47
ec74e361 48struct cpuinfo_mips cpu_data[NR_CPUS] __read_mostly;
1da177e4
LT
49
50EXPORT_SYMBOL(cpu_data);
51
52#ifdef CONFIG_VT
53struct screen_info screen_info;
54#endif
55
1da177e4
LT
56/*
57 * Setup information
58 *
59 * These are initialized so they are in the .data section
60 */
ec74e361 61unsigned long mips_machtype __read_mostly = MACH_UNKNOWN;
1da177e4
LT
62
63EXPORT_SYMBOL(mips_machtype);
1da177e4
LT
64
65struct boot_mem_map boot_mem_map;
66
6acc7d48
DV
67static char __initdata command_line[COMMAND_LINE_SIZE];
68char __initdata arcs_cmdline[COMMAND_LINE_SIZE];
69
70#ifdef CONFIG_CMDLINE_BOOL
71static char __initdata builtin_cmdline[COMMAND_LINE_SIZE] = CONFIG_CMDLINE;
72#endif
1da177e4
LT
73
74/*
75 * mips_io_port_base is the begin of the address space to which x86 style
76 * I/O ports are mapped.
77 */
1befdd55 78const unsigned long mips_io_port_base = -1;
1da177e4
LT
79EXPORT_SYMBOL(mips_io_port_base);
80
1da177e4
LT
81static struct resource code_resource = { .name = "Kernel code", };
82static struct resource data_resource = { .name = "Kernel data", };
e0c5f36b 83static struct resource bss_resource = { .name = "Kernel bss", };
1da177e4 84
4d9f77d2
JC
85static void *detect_magic __initdata = detect_memory_region;
86
6c359eb1
PB
87#ifdef CONFIG_MIPS_AUTO_PFN_OFFSET
88unsigned long ARCH_PFN_OFFSET;
89EXPORT_SYMBOL(ARCH_PFN_OFFSET);
90#endif
91
15d45cce 92void __init add_memory_region(phys_addr_t start, phys_addr_t size, long type)
1da177e4
LT
93{
94 int x = boot_mem_map.nr_map;
0ec7ec75 95 int i;
1da177e4 96
58cae9b0
JH
97 /*
98 * If the region reaches the top of the physical address space, adjust
99 * the size slightly so that (start + size) doesn't overflow
100 */
d7dc899a 101 if (start + size - 1 == PHYS_ADDR_MAX)
58cae9b0
JH
102 --size;
103
b6f1f0de
FBH
104 /* Sanity check */
105 if (start + size < start) {
7178d2cd 106 pr_warn("Trying to add an invalid memory region, skipped\n");
b6f1f0de
FBH
107 return;
108 }
109
1da177e4 110 /*
0ec7ec75 111 * Try to merge with existing entry, if any.
1da177e4 112 */
0ec7ec75
RB
113 for (i = 0; i < boot_mem_map.nr_map; i++) {
114 struct boot_mem_map_entry *entry = boot_mem_map.map + i;
115 unsigned long top;
116
117 if (entry->type != type)
118 continue;
119
120 if (start + size < entry->addr)
121 continue; /* no overlap */
122
123 if (entry->addr + entry->size < start)
124 continue; /* no overlap */
125
126 top = max(entry->addr + entry->size, start + size);
127 entry->addr = min(entry->addr, start);
128 entry->size = top - entry->addr;
129
1da177e4
LT
130 return;
131 }
132
0ec7ec75 133 if (boot_mem_map.nr_map == BOOT_MEM_MAP_MAX) {
a64ae7a2 134 pr_err("Ooops! Too many entries in the memory map!\n");
1da177e4
LT
135 return;
136 }
137
138 boot_mem_map.map[x].addr = start;
139 boot_mem_map.map[x].size = size;
140 boot_mem_map.map[x].type = type;
141 boot_mem_map.nr_map++;
142}
143
15d45cce 144void __init detect_memory_region(phys_addr_t start, phys_addr_t sz_min, phys_addr_t sz_max)
4d9f77d2
JC
145{
146 void *dm = &detect_magic;
15d45cce 147 phys_addr_t size;
4d9f77d2
JC
148
149 for (size = sz_min; size < sz_max; size <<= 1) {
150 if (!memcmp(dm, dm + size, sizeof(detect_magic)))
151 break;
152 }
153
154 pr_debug("Memory: %lluMB of RAM detected at 0x%llx (min: %lluMB, max: %lluMB)\n",
155 ((unsigned long long) size) / SZ_1M,
156 (unsigned long long) start,
157 ((unsigned long long) sz_min) / SZ_1M,
158 ((unsigned long long) sz_max) / SZ_1M);
159
160 add_memory_region(start, size, BOOT_MEM_RAM);
161}
162
427aeea0
MM
163static bool __init __maybe_unused memory_region_available(phys_addr_t start,
164 phys_addr_t size)
d9b5b658
MN
165{
166 int i;
167 bool in_ram = false, free = true;
168
169 for (i = 0; i < boot_mem_map.nr_map; i++) {
170 phys_addr_t start_, end_;
171
172 start_ = boot_mem_map.map[i].addr;
173 end_ = boot_mem_map.map[i].addr + boot_mem_map.map[i].size;
174
175 switch (boot_mem_map.map[i].type) {
176 case BOOT_MEM_RAM:
177 if (start >= start_ && start + size <= end_)
178 in_ram = true;
179 break;
180 case BOOT_MEM_RESERVED:
181 if ((start >= start_ && start < end_) ||
182 (start < start_ && start + size >= start_))
183 free = false;
184 break;
185 default:
186 continue;
187 }
188 }
189
190 return in_ram && free;
191}
192
1da177e4
LT
193static void __init print_memory_map(void)
194{
195 int i;
196 const int field = 2 * sizeof(unsigned long);
197
198 for (i = 0; i < boot_mem_map.nr_map; i++) {
a64ae7a2 199 printk(KERN_INFO " memory: %0*Lx @ %0*Lx ",
1da177e4
LT
200 field, (unsigned long long) boot_mem_map.map[i].size,
201 field, (unsigned long long) boot_mem_map.map[i].addr);
202
203 switch (boot_mem_map.map[i].type) {
204 case BOOT_MEM_RAM:
a64ae7a2 205 printk(KERN_CONT "(usable)\n");
1da177e4 206 break;
43064c0c
DD
207 case BOOT_MEM_INIT_RAM:
208 printk(KERN_CONT "(usable after init)\n");
209 break;
1da177e4 210 case BOOT_MEM_ROM_DATA:
a64ae7a2 211 printk(KERN_CONT "(ROM data)\n");
1da177e4
LT
212 break;
213 case BOOT_MEM_RESERVED:
a64ae7a2 214 printk(KERN_CONT "(reserved)\n");
1da177e4
LT
215 break;
216 default:
a64ae7a2 217 printk(KERN_CONT "type %lu\n", boot_mem_map.map[i].type);
1da177e4
LT
218 break;
219 }
220 }
221}
222
d2043ca8
FBH
223/*
224 * Manage initrd
225 */
226#ifdef CONFIG_BLK_DEV_INITRD
227
a09fc446 228static int __init rd_start_early(char *p)
1da177e4 229{
a09fc446 230 unsigned long start = memparse(p, &p);
1da177e4 231
875d43e7 232#ifdef CONFIG_64BIT
a7837b76
FBH
233 /* Guess if the sign extension was forgotten by bootloader */
234 if (start < XKPHYS)
235 start = (int)start;
1da177e4 236#endif
a09fc446
FBH
237 initrd_start = start;
238 initrd_end += start;
a09fc446
FBH
239 return 0;
240}
241early_param("rd_start", rd_start_early);
242
243static int __init rd_size_early(char *p)
244{
245 initrd_end += memparse(p, &p);
1da177e4
LT
246 return 0;
247}
a09fc446 248early_param("rd_size", rd_size_early);
1da177e4 249
a7837b76 250/* it returns the next free pfn after initrd */
d2043ca8
FBH
251static unsigned long __init init_initrd(void)
252{
a7837b76 253 unsigned long end;
d2043ca8 254
d2043ca8 255 /*
a09fc446
FBH
256 * Board specific code or command line parser should have
257 * already set up initrd_start and initrd_end. In these cases
258 * perfom sanity checks and use them if all looks good.
d2043ca8 259 */
32028f1f 260 if (!initrd_start || initrd_end <= initrd_start)
a7837b76 261 goto disable;
a7837b76 262
a7837b76 263 if (initrd_start & ~PAGE_MASK) {
a64ae7a2 264 pr_err("initrd start must be page aligned\n");
a7837b76 265 goto disable;
d2043ca8 266 }
a7837b76 267 if (initrd_start < PAGE_OFFSET) {
a64ae7a2 268 pr_err("initrd start < PAGE_OFFSET\n");
a7837b76
FBH
269 goto disable;
270 }
271
272 /*
273 * Sanitize initrd addresses. For example firmware
274 * can't guess if they need to pass them through
275 * 64-bits values if the kernel has been built in pure
276 * 32-bit. We need also to switch from KSEG0 to XKPHYS
277 * addresses now, so the code can now safely use __pa().
278 */
279 end = __pa(initrd_end);
280 initrd_end = (unsigned long)__va(end);
281 initrd_start = (unsigned long)__va(__pa(initrd_start));
282
283 ROOT_DEV = Root_RAM0;
284 return PFN_UP(end);
285disable:
286 initrd_start = 0;
287 initrd_end = 0;
288 return 0;
d2043ca8
FBH
289}
290
8f4703aa
AJ
291/* In some conditions (e.g. big endian bootloader with a little endian
292 kernel), the initrd might appear byte swapped. Try to detect this and
293 byte swap it if needed. */
294static void __init maybe_bswap_initrd(void)
295{
296#if defined(CONFIG_CPU_CAVIUM_OCTEON)
297 u64 buf;
298
299 /* Check for CPIO signature */
300 if (!memcmp((void *)initrd_start, "070701", 6))
301 return;
302
303 /* Check for compressed initrd */
304 if (decompress_method((unsigned char *)initrd_start, 8, NULL))
305 return;
306
307 /* Try again with a byte swapped header */
308 buf = swab64p((u64 *)initrd_start);
309 if (!memcmp(&buf, "070701", 6) ||
310 decompress_method((unsigned char *)(&buf), 8, NULL)) {
311 unsigned long i;
312
313 pr_info("Byteswapped initrd detected\n");
314 for (i = initrd_start; i < ALIGN(initrd_end, 8); i += 8)
315 swab64s((u64 *)i);
316 }
317#endif
318}
319
d2043ca8
FBH
320static void __init finalize_initrd(void)
321{
322 unsigned long size = initrd_end - initrd_start;
323
324 if (size == 0) {
325 printk(KERN_INFO "Initrd not found or empty");
326 goto disable;
327 }
d4df6d4e 328 if (__pa(initrd_end) > PFN_PHYS(max_low_pfn)) {
a64ae7a2 329 printk(KERN_ERR "Initrd extends beyond end of memory");
d2043ca8
FBH
330 goto disable;
331 }
332
8f4703aa
AJ
333 maybe_bswap_initrd();
334
bcec54bf 335 memblock_reserve(__pa(initrd_start), size);
d2043ca8
FBH
336 initrd_below_start_ok = 1;
337
a64ae7a2
MC
338 pr_info("Initial ramdisk at: 0x%lx (%lu bytes)\n",
339 initrd_start, size);
d2043ca8
FBH
340 return;
341disable:
a64ae7a2 342 printk(KERN_CONT " - disabling initrd\n");
d2043ca8
FBH
343 initrd_start = 0;
344 initrd_end = 0;
345}
346
347#else /* !CONFIG_BLK_DEV_INITRD */
348
9ba126cf
RB
349static unsigned long __init init_initrd(void)
350{
351 return 0;
352}
353
d2043ca8
FBH
354#define finalize_initrd() do {} while (0)
355
356#endif
357
b6f1f0de
FBH
358/*
359 * Initialize the bootmem allocator. It also setup initrd related data
360 * if needed.
361 */
c4617318 362#if defined(CONFIG_SGI_IP27) || (defined(CONFIG_CPU_LOONGSON3) && defined(CONFIG_NUMA))
d2043ca8 363
b6f1f0de 364static void __init bootmem_init(void)
1da177e4 365{
d2043ca8
FBH
366 init_initrd();
367 finalize_initrd();
368}
369
370#else /* !CONFIG_SGI_IP27 */
371
372static void __init bootmem_init(void)
373{
e452e94e 374 unsigned long reserved_end;
d7dc899a 375 phys_addr_t ramstart = PHYS_ADDR_MAX;
1da177e4 376 int i;
1da177e4
LT
377
378 /*
f9a7febd
GU
379 * Sanity check any INITRD first. We don't take it into account
380 * for bootmem setup initially, rely on the end-of-kernel-code
381 * as our memory range starting point. Once bootmem is inited we
382 * will reserve the area used for the initrd.
1da177e4 383 */
f9a7febd
GU
384 init_initrd();
385 reserved_end = (unsigned long) PFN_UP(__pa_symbol(&_end));
1da177e4 386
bcec54bf
MR
387 memblock_reserve(PHYS_OFFSET, reserved_end << PAGE_SHIFT);
388
db84dc61
FBH
389 /*
390 * max_low_pfn is not a number of pages. The number of pages
391 * of the system is given by 'max_low_pfn - min_low_pfn'.
392 */
393 min_low_pfn = ~0UL;
394 max_low_pfn = 0;
395
b6f1f0de 396 /*
67a3ba25
MN
397 * Find the highest page frame number we have available
398 * and the lowest used RAM address
b6f1f0de 399 */
1da177e4
LT
400 for (i = 0; i < boot_mem_map.nr_map; i++) {
401 unsigned long start, end;
402
403 if (boot_mem_map.map[i].type != BOOT_MEM_RAM)
404 continue;
405
406 start = PFN_UP(boot_mem_map.map[i].addr);
407 end = PFN_DOWN(boot_mem_map.map[i].addr
b6f1f0de 408 + boot_mem_map.map[i].size);
1da177e4 409
67a3ba25
MN
410 ramstart = min(ramstart, boot_mem_map.map[i].addr);
411
16a767ec
JH
412#ifndef CONFIG_HIGHMEM
413 /*
414 * Skip highmem here so we get an accurate max_low_pfn if low
415 * memory stops short of high memory.
416 * If the region overlaps HIGHMEM_START, end is clipped so
417 * max_pfn excludes the highmem portion.
418 */
419 if (start >= PFN_DOWN(HIGHMEM_START))
420 continue;
421 if (end > PFN_DOWN(HIGHMEM_START))
422 end = PFN_DOWN(HIGHMEM_START);
423#endif
424
db84dc61
FBH
425 if (end > max_low_pfn)
426 max_low_pfn = end;
427 if (start < min_low_pfn)
428 min_low_pfn = start;
b6f1f0de 429 if (end <= reserved_end)
1da177e4 430 continue;
a6335fa1 431#ifdef CONFIG_BLK_DEV_INITRD
88d34269 432 /* Skip zones before initrd and initrd itself */
a6335fa1
AS
433 if (initrd_end && end <= (unsigned long)PFN_UP(__pa(initrd_end)))
434 continue;
435#endif
1da177e4
LT
436 }
437
6c359eb1
PB
438 if (min_low_pfn >= max_low_pfn)
439 panic("Incorrect memory mapping !!!");
440
441#ifdef CONFIG_MIPS_AUTO_PFN_OFFSET
442 ARCH_PFN_OFFSET = PFN_UP(ramstart);
443#else
67a3ba25
MN
444 /*
445 * Reserve any memory between the start of RAM and PHYS_OFFSET
446 */
bcec54bf 447 if (ramstart > PHYS_OFFSET) {
67a3ba25
MN
448 add_memory_region(PHYS_OFFSET, ramstart - PHYS_OFFSET,
449 BOOT_MEM_RESERVED);
bcec54bf
MR
450 memblock_reserve(PHYS_OFFSET, ramstart - PHYS_OFFSET);
451 }
67a3ba25 452
6f284a2c 453 if (min_low_pfn > ARCH_PFN_OFFSET) {
a64ae7a2
MC
454 pr_info("Wasting %lu bytes for tracking %lu unused pages\n",
455 (min_low_pfn - ARCH_PFN_OFFSET) * sizeof(struct page),
456 min_low_pfn - ARCH_PFN_OFFSET);
ab3d8441 457 } else if (ARCH_PFN_OFFSET - min_low_pfn > 0UL) {
a64ae7a2
MC
458 pr_info("%lu free pages won't be used\n",
459 ARCH_PFN_OFFSET - min_low_pfn);
db84dc61 460 }
6f284a2c 461 min_low_pfn = ARCH_PFN_OFFSET;
6c359eb1 462#endif
db84dc61 463
1da177e4
LT
464 /*
465 * Determine low and high memory ranges
466 */
dc3bf353 467 max_pfn = max_low_pfn;
db84dc61 468 if (max_low_pfn > PFN_DOWN(HIGHMEM_START)) {
b6f1f0de
FBH
469#ifdef CONFIG_HIGHMEM
470 highstart_pfn = PFN_DOWN(HIGHMEM_START);
db84dc61 471 highend_pfn = max_low_pfn;
1da177e4 472#endif
db84dc61 473 max_low_pfn = PFN_DOWN(HIGHMEM_START);
1da177e4
LT
474 }
475
cce335ae
RB
476 for (i = 0; i < boot_mem_map.nr_map; i++) {
477 unsigned long start, end;
478
479 start = PFN_UP(boot_mem_map.map[i].addr);
480 end = PFN_DOWN(boot_mem_map.map[i].addr
481 + boot_mem_map.map[i].size);
482
e452e94e
AN
483 if (start <= min_low_pfn)
484 start = min_low_pfn;
cce335ae
RB
485 if (start >= end)
486 continue;
487
488#ifndef CONFIG_HIGHMEM
489 if (end > max_low_pfn)
490 end = max_low_pfn;
491
492 /*
493 * ... finally, is the area going away?
494 */
495 if (end <= start)
496 continue;
497#endif
498
9d15ffc8 499 memblock_add_node(PFN_PHYS(start), PFN_PHYS(end - start), 0);
cce335ae
RB
500 }
501
1da177e4
LT
502 /*
503 * Register fully available low RAM pages with the bootmem allocator.
504 */
505 for (i = 0; i < boot_mem_map.nr_map; i++) {
b6f1f0de 506 unsigned long start, end, size;
1da177e4 507
43064c0c
DD
508 start = PFN_UP(boot_mem_map.map[i].addr);
509 end = PFN_DOWN(boot_mem_map.map[i].addr
510 + boot_mem_map.map[i].size);
511
1da177e4
LT
512 /*
513 * Reserve usable memory.
514 */
43064c0c
DD
515 switch (boot_mem_map.map[i].type) {
516 case BOOT_MEM_RAM:
517 break;
518 case BOOT_MEM_INIT_RAM:
519 memory_present(0, start, end);
1da177e4 520 continue;
43064c0c
DD
521 default:
522 /* Not usable memory */
e89ef66d 523 if (start > min_low_pfn && end < max_low_pfn)
bcec54bf
MR
524 memblock_reserve(boot_mem_map.map[i].addr,
525 boot_mem_map.map[i].size);
526
43064c0c
DD
527 continue;
528 }
1da177e4 529
1da177e4 530 /*
b6f1f0de
FBH
531 * We are rounding up the start address of usable memory
532 * and at the end of the usable range downwards.
1da177e4 533 */
b6f1f0de 534 if (start >= max_low_pfn)
1da177e4 535 continue;
b6f1f0de
FBH
536 if (start < reserved_end)
537 start = reserved_end;
538 if (end > max_low_pfn)
539 end = max_low_pfn;
1da177e4
LT
540
541 /*
b6f1f0de 542 * ... finally, is the area going away?
1da177e4 543 */
b6f1f0de 544 if (end <= start)
1da177e4 545 continue;
b6f1f0de 546 size = end - start;
1da177e4
LT
547
548 /* Register lowmem ranges */
b6f1f0de 549 memory_present(0, start, end);
1da177e4
LT
550 }
551
61cd52d4
MR
552#ifdef CONFIG_RELOCATABLE
553 /*
554 * The kernel reserves all memory below its _end symbol as bootmem,
555 * but the kernel may now be at a much higher address. The memory
556 * between the original and new locations may be returned to the system.
557 */
558 if (__pa_symbol(_text) > __pa_symbol(VMLINUX_LOAD_ADDRESS)) {
559 unsigned long offset;
919beb4e 560 extern void show_kernel_relocation(const char *level);
61cd52d4
MR
561
562 offset = __pa_symbol(_text) - __pa_symbol(VMLINUX_LOAD_ADDRESS);
2013288f 563 memblock_free(__pa_symbol(VMLINUX_LOAD_ADDRESS), offset);
919beb4e
MR
564
565#if defined(CONFIG_DEBUG_KERNEL) && defined(CONFIG_DEBUG_INFO)
566 /*
567 * This information is necessary when debugging the kernel
568 * But is a security vulnerability otherwise!
569 */
570 show_kernel_relocation(KERN_INFO);
571#endif
61cd52d4
MR
572 }
573#endif
574
d2043ca8
FBH
575 /*
576 * Reserve initrd memory if needed.
577 */
578 finalize_initrd();
1da177e4
LT
579}
580
d2043ca8
FBH
581#endif /* CONFIG_SGI_IP27 */
582
982f6ffe 583static int usermem __initdata;
a09fc446
FBH
584
585static int __init early_parse_mem(char *p)
586{
ad8f723a 587 phys_addr_t start, size;
a09fc446
FBH
588
589 /*
590 * If a user specifies memory size, we
591 * blow away any automatically generated
592 * size.
593 */
594 if (usermem == 0) {
595 boot_mem_map.nr_map = 0;
596 usermem = 1;
70342287 597 }
a09fc446
FBH
598 start = 0;
599 size = memparse(p, &p);
600 if (*p == '@')
601 start = memparse(p + 1, &p);
602
603 add_memory_region(start, size, BOOT_MEM_RAM);
73fbc1eb 604
a09fc446
FBH
605 return 0;
606}
607early_param("mem", early_parse_mem);
2925aba4 608
296a7624
MD
609static int __init early_parse_memmap(char *p)
610{
611 char *oldp;
612 u64 start_at, mem_size;
613
614 if (!p)
615 return -EINVAL;
616
617 if (!strncmp(p, "exactmap", 8)) {
618 pr_err("\"memmap=exactmap\" invalid on MIPS\n");
619 return 0;
620 }
621
622 oldp = p;
623 mem_size = memparse(p, &p);
624 if (p == oldp)
625 return -EINVAL;
626
627 if (*p == '@') {
628 start_at = memparse(p+1, &p);
629 add_memory_region(start_at, mem_size, BOOT_MEM_RAM);
630 } else if (*p == '#') {
631 pr_err("\"memmap=nn#ss\" (force ACPI data) invalid on MIPS\n");
632 return -EINVAL;
633 } else if (*p == '$') {
634 start_at = memparse(p+1, &p);
635 add_memory_region(start_at, mem_size, BOOT_MEM_RESERVED);
636 } else {
637 pr_err("\"memmap\" invalid format!\n");
638 return -EINVAL;
639 }
640
641 if (*p == '\0') {
642 usermem = 1;
643 return 0;
644 } else
645 return -EINVAL;
646}
647early_param("memmap", early_parse_memmap);
648
4893fc88
CM
649#ifdef CONFIG_PROC_VMCORE
650unsigned long setup_elfcorehdr, setup_elfcorehdr_size;
651static int __init early_parse_elfcorehdr(char *p)
652{
653 int i;
654
655 setup_elfcorehdr = memparse(p, &p);
656
657 for (i = 0; i < boot_mem_map.nr_map; i++) {
658 unsigned long start = boot_mem_map.map[i].addr;
659 unsigned long end = (boot_mem_map.map[i].addr +
660 boot_mem_map.map[i].size);
661 if (setup_elfcorehdr >= start && setup_elfcorehdr < end) {
662 /*
663 * Reserve from the elf core header to the end of
664 * the memory segment, that should all be kdump
665 * reserved memory.
666 */
667 setup_elfcorehdr_size = end - setup_elfcorehdr;
668 break;
669 }
670 }
671 /*
672 * If we don't find it in the memory map, then we shouldn't
673 * have to worry about it, as the new kernel won't use it.
674 */
675 return 0;
676}
677early_param("elfcorehdr", early_parse_elfcorehdr);
678#endif
679
15d45cce 680static void __init arch_mem_addpart(phys_addr_t mem, phys_addr_t end, int type)
2925aba4 681{
15d45cce 682 phys_addr_t size;
d3ff9338 683 int i;
43064c0c 684
d3ff9338
CM
685 size = end - mem;
686 if (!size)
687 return;
688
689 /* Make sure it is in the boot_mem_map */
690 for (i = 0; i < boot_mem_map.nr_map; i++) {
691 if (mem >= boot_mem_map.map[i].addr &&
692 mem < (boot_mem_map.map[i].addr +
693 boot_mem_map.map[i].size))
694 return;
695 }
696 add_memory_region(mem, size, type);
697}
43064c0c 698
c2882b7f
PM
699#ifdef CONFIG_KEXEC
700static inline unsigned long long get_total_mem(void)
701{
702 unsigned long long total;
703
704 total = max_pfn - min_low_pfn;
705 return total << PAGE_SHIFT;
706}
707
708static void __init mips_parse_crashkernel(void)
709{
710 unsigned long long total_mem;
711 unsigned long long crash_size, crash_base;
712 int ret;
713
714 total_mem = get_total_mem();
715 ret = parse_crashkernel(boot_command_line, total_mem,
716 &crash_size, &crash_base);
717 if (ret != 0 || crash_size <= 0)
718 return;
719
a8f108d7
MN
720 if (!memory_region_available(crash_base, crash_size)) {
721 pr_warn("Invalid memory region reserved for crash kernel\n");
722 return;
723 }
724
c2882b7f
PM
725 crashk_res.start = crash_base;
726 crashk_res.end = crash_base + crash_size - 1;
727}
728
729static void __init request_crashkernel(struct resource *res)
730{
731 int ret;
732
269aa43a
MN
733 if (crashk_res.start == crashk_res.end)
734 return;
735
c2882b7f
PM
736 ret = request_resource(res, &crashk_res);
737 if (!ret)
738 pr_info("Reserving %ldMB of memory at %ldMB for crashkernel\n",
739 (unsigned long)((crashk_res.end -
740 crashk_res.start + 1) >> 20),
741 (unsigned long)(crashk_res.start >> 20));
742}
743#else /* !defined(CONFIG_KEXEC) */
744static void __init mips_parse_crashkernel(void)
745{
746}
747
748static void __init request_crashkernel(struct resource *res)
749{
750}
751#endif /* !defined(CONFIG_KEXEC) */
752
2024972e
JG
753#define USE_PROM_CMDLINE IS_ENABLED(CONFIG_MIPS_CMDLINE_FROM_BOOTLOADER)
754#define USE_DTB_CMDLINE IS_ENABLED(CONFIG_MIPS_CMDLINE_FROM_DTB)
2549cc96 755#define EXTEND_WITH_PROM IS_ENABLED(CONFIG_MIPS_CMDLINE_DTB_EXTEND)
ed47e153
RV
756#define BUILTIN_EXTEND_WITH_PROM \
757 IS_ENABLED(CONFIG_MIPS_CMDLINE_BUILTIN_EXTEND)
2024972e 758
52c985ac
PB
759/*
760 * arch_mem_init - initialize memory management subsystem
761 *
762 * o plat_mem_setup() detects the memory configuration and will record detected
763 * memory areas using add_memory_region.
764 *
765 * At this stage the memory configuration of the system is known to the
766 * kernel but generic memory management system is still entirely uninitialized.
767 *
768 * o bootmem_init()
769 * o sparse_init()
770 * o paging_init()
771 * o dma_contiguous_reserve()
772 *
773 * At this stage the bootmem allocator is ready to use.
774 *
775 * NOTE: historically plat_mem_setup did the entire platform initialization.
776 * This was rather impractical because it meant plat_mem_setup had to
777 * get away without any kind of memory allocator. To keep old code from
778 * breaking plat_setup was just renamed to plat_mem_setup and a second platform
779 * initialization hook for anything else was introduced.
780 */
d3ff9338
CM
781static void __init arch_mem_init(char **cmdline_p)
782{
f4649382 783 struct memblock_region *reg;
a09fc446
FBH
784 extern void plat_mem_setup(void);
785
951d223c
PB
786 /*
787 * Initialize boot_command_line to an innocuous but non-empty string in
788 * order to prevent early_init_dt_scan_chosen() from copying
789 * CONFIG_CMDLINE into it without our knowledge. We handle
790 * CONFIG_CMDLINE ourselves below & don't want to duplicate its
791 * content because repeating arguments can be problematic.
792 */
793 strlcpy(boot_command_line, " ", COMMAND_LINE_SIZE);
794
795 /* call board setup routine */
796 plat_mem_setup();
797
798 /*
799 * Make sure all kernel memory is in the maps. The "UP" and
800 * "DOWN" are opposite for initdata since if it crosses over
801 * into another memory section you don't want that to be
802 * freed when the initdata is freed.
803 */
804 arch_mem_addpart(PFN_DOWN(__pa_symbol(&_text)) << PAGE_SHIFT,
805 PFN_UP(__pa_symbol(&_edata)) << PAGE_SHIFT,
806 BOOT_MEM_RAM);
807 arch_mem_addpart(PFN_UP(__pa_symbol(&__init_begin)) << PAGE_SHIFT,
808 PFN_DOWN(__pa_symbol(&__init_end)) << PAGE_SHIFT,
809 BOOT_MEM_INIT_RAM);
810
811 pr_info("Determined physical RAM map:\n");
812 print_memory_map();
813
2024972e 814#if defined(CONFIG_CMDLINE_BOOL) && defined(CONFIG_CMDLINE_OVERRIDE)
6acc7d48
DV
815 strlcpy(boot_command_line, builtin_cmdline, COMMAND_LINE_SIZE);
816#else
2024972e
JG
817 if ((USE_PROM_CMDLINE && arcs_cmdline[0]) ||
818 (USE_DTB_CMDLINE && !boot_command_line[0]))
819 strlcpy(boot_command_line, arcs_cmdline, COMMAND_LINE_SIZE);
820
821 if (EXTEND_WITH_PROM && arcs_cmdline[0]) {
e54ad8c5
RV
822 if (boot_command_line[0])
823 strlcat(boot_command_line, " ", COMMAND_LINE_SIZE);
2024972e
JG
824 strlcat(boot_command_line, arcs_cmdline, COMMAND_LINE_SIZE);
825 }
826
827#if defined(CONFIG_CMDLINE_BOOL)
6acc7d48 828 if (builtin_cmdline[0]) {
e54ad8c5
RV
829 if (boot_command_line[0])
830 strlcat(boot_command_line, " ", COMMAND_LINE_SIZE);
2024972e 831 strlcat(boot_command_line, builtin_cmdline, COMMAND_LINE_SIZE);
6acc7d48 832 }
ed47e153
RV
833
834 if (BUILTIN_EXTEND_WITH_PROM && arcs_cmdline[0]) {
835 if (boot_command_line[0])
836 strlcat(boot_command_line, " ", COMMAND_LINE_SIZE);
837 strlcat(boot_command_line, arcs_cmdline, COMMAND_LINE_SIZE);
838 }
6acc7d48 839#endif
6acc7d48
DV
840#endif
841 strlcpy(command_line, boot_command_line, COMMAND_LINE_SIZE);
2925aba4
RB
842
843 *cmdline_p = command_line;
844
a09fc446
FBH
845 parse_early_param();
846
847 if (usermem) {
a64ae7a2 848 pr_info("User-defined physical RAM map:\n");
a09fc446
FBH
849 print_memory_map();
850 }
851
73346081
MN
852 early_init_fdt_reserve_self();
853 early_init_fdt_scan_reserved_mem();
854
2925aba4 855 bootmem_init();
bcec54bf
MR
856
857 /*
858 * Prevent memblock from allocating high memory.
859 * This cannot be done before max_low_pfn is detected, so up
860 * to this point is possible to only reserve physical memory
eb31d559 861 * with memblock_reserve; memblock_alloc* can be used
bcec54bf
MR
862 * only after this point
863 */
864 memblock_set_current_limit(PFN_PHYS(max_low_pfn));
865
4893fc88
CM
866#ifdef CONFIG_PROC_VMCORE
867 if (setup_elfcorehdr && setup_elfcorehdr_size) {
868 printk(KERN_INFO "kdump reserved memory at %lx-%lx\n",
869 setup_elfcorehdr, setup_elfcorehdr_size);
bcec54bf 870 memblock_reserve(setup_elfcorehdr, setup_elfcorehdr_size);
4893fc88
CM
871 }
872#endif
c2882b7f
PM
873
874 mips_parse_crashkernel();
7aa1c8f4
RB
875#ifdef CONFIG_KEXEC
876 if (crashk_res.start != crashk_res.end)
bcec54bf
MR
877 memblock_reserve(crashk_res.start,
878 crashk_res.end - crashk_res.start + 1);
7aa1c8f4 879#endif
f2ffa5ab 880 device_tree_init();
2925aba4 881 sparse_init();
ee71b7d2 882 plat_swiotlb_setup();
f4649382
ZLK
883
884 dma_contiguous_reserve(PFN_PHYS(max_low_pfn));
885 /* Tell bootmem about cma reserved memblock section */
886 for_each_memblock(reserved, reg)
30fa0530 887 if (reg->size != 0)
bcec54bf 888 memblock_reserve(reg->base, reg->size);
a95d0692
HC
889
890 reserve_bootmem_region(__pa_symbol(&__nosave_begin),
891 __pa_symbol(&__nosave_end)); /* Reserve for hibernation */
2925aba4
RB
892}
893
8df32c63 894static void __init resource_init(void)
1da177e4
LT
895{
896 int i;
897
6adb5fe7
RB
898 if (UNCAC_BASE != IO_BASE)
899 return;
900
f5bffe3a
FBH
901 code_resource.start = __pa_symbol(&_text);
902 code_resource.end = __pa_symbol(&_etext) - 1;
903 data_resource.start = __pa_symbol(&_etext);
904 data_resource.end = __pa_symbol(&_edata) - 1;
e0c5f36b
DD
905 bss_resource.start = __pa_symbol(&__bss_start);
906 bss_resource.end = __pa_symbol(&__bss_stop) - 1;
1da177e4 907
1da177e4
LT
908 for (i = 0; i < boot_mem_map.nr_map; i++) {
909 struct resource *res;
910 unsigned long start, end;
911
912 start = boot_mem_map.map[i].addr;
913 end = boot_mem_map.map[i].addr + boot_mem_map.map[i].size - 1;
1c6fd44d 914 if (start >= HIGHMEM_START)
1da177e4 915 continue;
1c6fd44d
FBH
916 if (end >= HIGHMEM_START)
917 end = HIGHMEM_START - 1;
1da177e4 918
7e1c4e27 919 res = memblock_alloc(sizeof(struct resource), SMP_CACHE_BYTES);
35d98e93
TK
920
921 res->start = start;
922 res->end = end;
923 res->flags = IORESOURCE_MEM | IORESOURCE_BUSY;
924
1da177e4
LT
925 switch (boot_mem_map.map[i].type) {
926 case BOOT_MEM_RAM:
43064c0c 927 case BOOT_MEM_INIT_RAM:
1da177e4
LT
928 case BOOT_MEM_ROM_DATA:
929 res->name = "System RAM";
35d98e93 930 res->flags |= IORESOURCE_SYSRAM;
1da177e4
LT
931 break;
932 case BOOT_MEM_RESERVED:
933 default:
934 res->name = "reserved";
935 }
936
1da177e4
LT
937 request_resource(&iomem_resource, res);
938
939 /*
940 * We don't know which RAM region contains kernel data,
941 * so we try it repeatedly and let the resource manager
942 * test it.
943 */
944 request_resource(res, &code_resource);
945 request_resource(res, &data_resource);
e0c5f36b 946 request_resource(res, &bss_resource);
7aa1c8f4 947 request_crashkernel(res);
1da177e4
LT
948 }
949}
950
0f3f506b
HC
951#ifdef CONFIG_SMP
952static void __init prefill_possible_map(void)
953{
954 int i, possible = num_possible_cpus();
955
956 if (possible > nr_cpu_ids)
957 possible = nr_cpu_ids;
958
959 for (i = 0; i < possible; i++)
960 set_cpu_possible(i, true);
961 for (; i < NR_CPUS; i++)
962 set_cpu_possible(i, false);
963
964 nr_cpu_ids = possible;
965}
966#else
967static inline void prefill_possible_map(void) {}
968#endif
969
1da177e4
LT
970void __init setup_arch(char **cmdline_p)
971{
972 cpu_probe();
3af5a67c 973 mips_cm_probe();
1da177e4 974 prom_init();
36a88530 975
e934945d 976 setup_early_fdc_console();
36a88530 977#ifdef CONFIG_EARLY_PRINTK
07cdb784 978 setup_early_printk();
36a88530 979#endif
1da177e4 980 cpu_report();
20d60d99 981 check_bugs_early();
1da177e4
LT
982
983#if defined(CONFIG_VT)
984#if defined(CONFIG_VGA_CONSOLE)
e0daad44 985 conswitchp = &vga_con;
1da177e4 986#elif defined(CONFIG_DUMMY_CONSOLE)
e0daad44 987 conswitchp = &dummy_con;
1da177e4
LT
988#endif
989#endif
990
2925aba4 991 arch_mem_init(cmdline_p);
1da177e4 992
1da177e4 993 resource_init();
9b6695a8 994 plat_smp_setup();
0f3f506b 995 prefill_possible_map();
6650df3c
DD
996
997 cpu_cache_init();
058effe7 998 paging_init();
1da177e4
LT
999}
1000
69a6c312
AN
1001unsigned long kernelsp[NR_CPUS];
1002unsigned long fw_arg0, fw_arg1, fw_arg2, fw_arg3;
6312e0ee 1003
15f37e15
JG
1004#ifdef CONFIG_USE_OF
1005unsigned long fw_passed_dtb;
1006#endif
1007
6312e0ee
AN
1008#ifdef CONFIG_DEBUG_FS
1009struct dentry *mips_debugfs_dir;
1010static int __init debugfs_mips(void)
1011{
1012 struct dentry *d;
1013
1014 d = debugfs_create_dir("mips", NULL);
b517531c
Z
1015 if (!d)
1016 return -ENOMEM;
6312e0ee
AN
1017 mips_debugfs_dir = d;
1018 return 0;
1019}
1020arch_initcall(debugfs_mips);
1021#endif
aa4db775 1022
5748e1b3 1023#ifdef CONFIG_DMA_MAYBE_COHERENT
aa4db775
CH
1024/* User defined DMA coherency from command line. */
1025enum coherent_io_user_state coherentio = IO_COHERENCE_DEFAULT;
1026EXPORT_SYMBOL_GPL(coherentio);
1027int hw_coherentio = 0; /* Actual hardware supported DMA coherency setting. */
1028
1029static int __init setcoherentio(char *str)
1030{
1031 coherentio = IO_COHERENCE_ENABLED;
1032 pr_info("Hardware DMA cache coherency (command line)\n");
1033 return 0;
1034}
1035early_param("coherentio", setcoherentio);
1036
1037static int __init setnocoherentio(char *str)
1038{
1039 coherentio = IO_COHERENCE_DISABLED;
1040 pr_info("Software DMA cache coherency (command line)\n");
1041 return 0;
1042}
1043early_param("nocoherentio", setnocoherentio);
1044#endif