xref: /linux/arch/mips/kernel/setup.c (revision 6d4e9a8efe3d59f31367d79e970c2f328da139a4)
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.
11  * Copyright (C) 2000, 2001, 2002, 2007	 Maciej W. Rozycki
12  */
13 #include <linux/init.h>
14 #include <linux/ioport.h>
15 #include <linux/export.h>
16 #include <linux/screen_info.h>
17 #include <linux/memblock.h>
18 #include <linux/initrd.h>
19 #include <linux/root_dev.h>
20 #include <linux/highmem.h>
21 #include <linux/console.h>
22 #include <linux/pfn.h>
23 #include <linux/debugfs.h>
24 #include <linux/kexec.h>
25 #include <linux/sizes.h>
26 #include <linux/device.h>
27 #include <linux/dma-map-ops.h>
28 #include <linux/decompress/generic.h>
29 #include <linux/of_fdt.h>
30 #include <linux/dmi.h>
31 
32 #include <asm/addrspace.h>
33 #include <asm/bootinfo.h>
34 #include <asm/bugs.h>
35 #include <asm/cache.h>
36 #include <asm/cdmm.h>
37 #include <asm/cpu.h>
38 #include <asm/debug.h>
39 #include <asm/sections.h>
40 #include <asm/setup.h>
41 #include <asm/smp-ops.h>
42 #include <asm/prom.h>
43 
44 #ifdef CONFIG_MIPS_ELF_APPENDED_DTB
45 const char __section(".appended_dtb") __appended_dtb[0x100000];
46 #endif /* CONFIG_MIPS_ELF_APPENDED_DTB */
47 
48 struct cpuinfo_mips cpu_data[NR_CPUS] __read_mostly;
49 
50 EXPORT_SYMBOL(cpu_data);
51 
52 #ifdef CONFIG_VT
53 struct screen_info screen_info;
54 #endif
55 
56 /*
57  * Setup information
58  *
59  * These are initialized so they are in the .data section
60  */
61 unsigned long mips_machtype __read_mostly = MACH_UNKNOWN;
62 
63 EXPORT_SYMBOL(mips_machtype);
64 
65 static char __initdata command_line[COMMAND_LINE_SIZE];
66 char __initdata arcs_cmdline[COMMAND_LINE_SIZE];
67 
68 #ifdef CONFIG_CMDLINE_BOOL
69 static const char builtin_cmdline[] __initconst = CONFIG_CMDLINE;
70 #else
71 static const char builtin_cmdline[] __initconst = "";
72 #endif
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  */
78 unsigned long mips_io_port_base = -1;
79 EXPORT_SYMBOL(mips_io_port_base);
80 
81 static struct resource code_resource = { .name = "Kernel code", };
82 static struct resource data_resource = { .name = "Kernel data", };
83 static struct resource bss_resource = { .name = "Kernel bss", };
84 
85 unsigned long __kaslr_offset __ro_after_init;
86 EXPORT_SYMBOL(__kaslr_offset);
87 
88 static void *detect_magic __initdata = detect_memory_region;
89 
90 #ifdef CONFIG_MIPS_AUTO_PFN_OFFSET
91 unsigned long ARCH_PFN_OFFSET;
92 EXPORT_SYMBOL(ARCH_PFN_OFFSET);
93 #endif
94 
95 void __init detect_memory_region(phys_addr_t start, phys_addr_t sz_min, phys_addr_t sz_max)
96 {
97 	void *dm = &detect_magic;
98 	phys_addr_t size;
99 
100 	for (size = sz_min; size < sz_max; size <<= 1) {
101 		if (!memcmp(dm, dm + size, sizeof(detect_magic)))
102 			break;
103 	}
104 
105 	pr_debug("Memory: %lluMB of RAM detected at 0x%llx (min: %lluMB, max: %lluMB)\n",
106 		((unsigned long long) size) / SZ_1M,
107 		(unsigned long long) start,
108 		((unsigned long long) sz_min) / SZ_1M,
109 		((unsigned long long) sz_max) / SZ_1M);
110 
111 	memblock_add(start, size);
112 }
113 
114 /*
115  * Manage initrd
116  */
117 #ifdef CONFIG_BLK_DEV_INITRD
118 
119 static int __init rd_start_early(char *p)
120 {
121 	unsigned long start = memparse(p, &p);
122 
123 #ifdef CONFIG_64BIT
124 	/* Guess if the sign extension was forgotten by bootloader */
125 	if (start < XKPHYS)
126 		start = (int)start;
127 #endif
128 	initrd_start = start;
129 	initrd_end += start;
130 	return 0;
131 }
132 early_param("rd_start", rd_start_early);
133 
134 static int __init rd_size_early(char *p)
135 {
136 	initrd_end += memparse(p, &p);
137 	return 0;
138 }
139 early_param("rd_size", rd_size_early);
140 
141 /* it returns the next free pfn after initrd */
142 static unsigned long __init init_initrd(void)
143 {
144 	unsigned long end;
145 
146 	/*
147 	 * Board specific code or command line parser should have
148 	 * already set up initrd_start and initrd_end. In these cases
149 	 * perfom sanity checks and use them if all looks good.
150 	 */
151 	if (!initrd_start || initrd_end <= initrd_start)
152 		goto disable;
153 
154 	if (initrd_start & ~PAGE_MASK) {
155 		pr_err("initrd start must be page aligned\n");
156 		goto disable;
157 	}
158 	if (initrd_start < PAGE_OFFSET) {
159 		pr_err("initrd start < PAGE_OFFSET\n");
160 		goto disable;
161 	}
162 
163 	/*
164 	 * Sanitize initrd addresses. For example firmware
165 	 * can't guess if they need to pass them through
166 	 * 64-bits values if the kernel has been built in pure
167 	 * 32-bit. We need also to switch from KSEG0 to XKPHYS
168 	 * addresses now, so the code can now safely use __pa().
169 	 */
170 	end = __pa(initrd_end);
171 	initrd_end = (unsigned long)__va(end);
172 	initrd_start = (unsigned long)__va(__pa(initrd_start));
173 
174 	ROOT_DEV = Root_RAM0;
175 	return PFN_UP(end);
176 disable:
177 	initrd_start = 0;
178 	initrd_end = 0;
179 	return 0;
180 }
181 
182 /* In some conditions (e.g. big endian bootloader with a little endian
183    kernel), the initrd might appear byte swapped.  Try to detect this and
184    byte swap it if needed.  */
185 static void __init maybe_bswap_initrd(void)
186 {
187 #if defined(CONFIG_CPU_CAVIUM_OCTEON)
188 	u64 buf;
189 
190 	/* Check for CPIO signature */
191 	if (!memcmp((void *)initrd_start, "070701", 6))
192 		return;
193 
194 	/* Check for compressed initrd */
195 	if (decompress_method((unsigned char *)initrd_start, 8, NULL))
196 		return;
197 
198 	/* Try again with a byte swapped header */
199 	buf = swab64p((u64 *)initrd_start);
200 	if (!memcmp(&buf, "070701", 6) ||
201 	    decompress_method((unsigned char *)(&buf), 8, NULL)) {
202 		unsigned long i;
203 
204 		pr_info("Byteswapped initrd detected\n");
205 		for (i = initrd_start; i < ALIGN(initrd_end, 8); i += 8)
206 			swab64s((u64 *)i);
207 	}
208 #endif
209 }
210 
211 static void __init finalize_initrd(void)
212 {
213 	unsigned long size = initrd_end - initrd_start;
214 
215 	if (size == 0) {
216 		printk(KERN_INFO "Initrd not found or empty");
217 		goto disable;
218 	}
219 	if (__pa(initrd_end) > PFN_PHYS(max_low_pfn)) {
220 		printk(KERN_ERR "Initrd extends beyond end of memory");
221 		goto disable;
222 	}
223 
224 	maybe_bswap_initrd();
225 
226 	memblock_reserve(__pa(initrd_start), size);
227 	initrd_below_start_ok = 1;
228 
229 	pr_info("Initial ramdisk at: 0x%lx (%lu bytes)\n",
230 		initrd_start, size);
231 	return;
232 disable:
233 	printk(KERN_CONT " - disabling initrd\n");
234 	initrd_start = 0;
235 	initrd_end = 0;
236 }
237 
238 #else  /* !CONFIG_BLK_DEV_INITRD */
239 
240 static unsigned long __init init_initrd(void)
241 {
242 	return 0;
243 }
244 
245 #define finalize_initrd()	do {} while (0)
246 
247 #endif
248 
249 /*
250  * Initialize the bootmem allocator. It also setup initrd related data
251  * if needed.
252  */
253 #if defined(CONFIG_SGI_IP27) || (defined(CONFIG_CPU_LOONGSON64) && defined(CONFIG_NUMA))
254 
255 static void __init bootmem_init(void)
256 {
257 	init_initrd();
258 	finalize_initrd();
259 }
260 
261 #else  /* !CONFIG_SGI_IP27 */
262 
263 static void __init bootmem_init(void)
264 {
265 	phys_addr_t ramstart, ramend;
266 	unsigned long start, end;
267 	int i;
268 
269 	ramstart = memblock_start_of_DRAM();
270 	ramend = memblock_end_of_DRAM();
271 
272 	/*
273 	 * Sanity check any INITRD first. We don't take it into account
274 	 * for bootmem setup initially, rely on the end-of-kernel-code
275 	 * as our memory range starting point. Once bootmem is inited we
276 	 * will reserve the area used for the initrd.
277 	 */
278 	init_initrd();
279 
280 	/* Reserve memory occupied by kernel. */
281 	memblock_reserve(__pa_symbol(&_text),
282 			__pa_symbol(&_end) - __pa_symbol(&_text));
283 
284 	/* max_low_pfn is not a number of pages but the end pfn of low mem */
285 
286 #ifdef CONFIG_MIPS_AUTO_PFN_OFFSET
287 	ARCH_PFN_OFFSET = PFN_UP(ramstart);
288 #else
289 	/*
290 	 * Reserve any memory between the start of RAM and PHYS_OFFSET
291 	 */
292 	if (ramstart > PHYS_OFFSET)
293 		memblock_reserve(PHYS_OFFSET, ramstart - PHYS_OFFSET);
294 
295 	if (PFN_UP(ramstart) > ARCH_PFN_OFFSET) {
296 		pr_info("Wasting %lu bytes for tracking %lu unused pages\n",
297 			(unsigned long)((PFN_UP(ramstart) - ARCH_PFN_OFFSET) * sizeof(struct page)),
298 			(unsigned long)(PFN_UP(ramstart) - ARCH_PFN_OFFSET));
299 	}
300 #endif
301 
302 	min_low_pfn = ARCH_PFN_OFFSET;
303 	max_pfn = PFN_DOWN(ramend);
304 	for_each_mem_pfn_range(i, MAX_NUMNODES, &start, &end, NULL) {
305 		/*
306 		 * Skip highmem here so we get an accurate max_low_pfn if low
307 		 * memory stops short of high memory.
308 		 * If the region overlaps HIGHMEM_START, end is clipped so
309 		 * max_pfn excludes the highmem portion.
310 		 */
311 		if (start >= PFN_DOWN(HIGHMEM_START))
312 			continue;
313 		if (end > PFN_DOWN(HIGHMEM_START))
314 			end = PFN_DOWN(HIGHMEM_START);
315 		if (end > max_low_pfn)
316 			max_low_pfn = end;
317 	}
318 
319 	if (min_low_pfn >= max_low_pfn)
320 		panic("Incorrect memory mapping !!!");
321 
322 	if (max_pfn > PFN_DOWN(HIGHMEM_START)) {
323 #ifdef CONFIG_HIGHMEM
324 		highstart_pfn = PFN_DOWN(HIGHMEM_START);
325 		highend_pfn = max_pfn;
326 #else
327 		max_low_pfn = PFN_DOWN(HIGHMEM_START);
328 		max_pfn = max_low_pfn;
329 #endif
330 	}
331 
332 	/*
333 	 * Reserve initrd memory if needed.
334 	 */
335 	finalize_initrd();
336 }
337 
338 #endif	/* CONFIG_SGI_IP27 */
339 
340 static int usermem __initdata;
341 
342 static int __init early_parse_mem(char *p)
343 {
344 	phys_addr_t start, size;
345 
346 	/*
347 	 * If a user specifies memory size, we
348 	 * blow away any automatically generated
349 	 * size.
350 	 */
351 	if (usermem == 0) {
352 		usermem = 1;
353 		memblock_remove(memblock_start_of_DRAM(),
354 			memblock_end_of_DRAM() - memblock_start_of_DRAM());
355 	}
356 	start = 0;
357 	size = memparse(p, &p);
358 	if (*p == '@')
359 		start = memparse(p + 1, &p);
360 
361 	memblock_add(start, size);
362 
363 	return 0;
364 }
365 early_param("mem", early_parse_mem);
366 
367 static int __init early_parse_memmap(char *p)
368 {
369 	char *oldp;
370 	u64 start_at, mem_size;
371 
372 	if (!p)
373 		return -EINVAL;
374 
375 	if (!strncmp(p, "exactmap", 8)) {
376 		pr_err("\"memmap=exactmap\" invalid on MIPS\n");
377 		return 0;
378 	}
379 
380 	oldp = p;
381 	mem_size = memparse(p, &p);
382 	if (p == oldp)
383 		return -EINVAL;
384 
385 	if (*p == '@') {
386 		start_at = memparse(p+1, &p);
387 		memblock_add(start_at, mem_size);
388 	} else if (*p == '#') {
389 		pr_err("\"memmap=nn#ss\" (force ACPI data) invalid on MIPS\n");
390 		return -EINVAL;
391 	} else if (*p == '$') {
392 		start_at = memparse(p+1, &p);
393 		memblock_add(start_at, mem_size);
394 		memblock_reserve(start_at, mem_size);
395 	} else {
396 		pr_err("\"memmap\" invalid format!\n");
397 		return -EINVAL;
398 	}
399 
400 	if (*p == '\0') {
401 		usermem = 1;
402 		return 0;
403 	} else
404 		return -EINVAL;
405 }
406 early_param("memmap", early_parse_memmap);
407 
408 #ifdef CONFIG_PROC_VMCORE
409 static unsigned long setup_elfcorehdr, setup_elfcorehdr_size;
410 static int __init early_parse_elfcorehdr(char *p)
411 {
412 	phys_addr_t start, end;
413 	u64 i;
414 
415 	setup_elfcorehdr = memparse(p, &p);
416 
417 	for_each_mem_range(i, &start, &end) {
418 		if (setup_elfcorehdr >= start && setup_elfcorehdr < end) {
419 			/*
420 			 * Reserve from the elf core header to the end of
421 			 * the memory segment, that should all be kdump
422 			 * reserved memory.
423 			 */
424 			setup_elfcorehdr_size = end - setup_elfcorehdr;
425 			break;
426 		}
427 	}
428 	/*
429 	 * If we don't find it in the memory map, then we shouldn't
430 	 * have to worry about it, as the new kernel won't use it.
431 	 */
432 	return 0;
433 }
434 early_param("elfcorehdr", early_parse_elfcorehdr);
435 #endif
436 
437 #ifdef CONFIG_KEXEC
438 
439 /* 64M alignment for crash kernel regions */
440 #define CRASH_ALIGN	SZ_64M
441 #define CRASH_ADDR_MAX	SZ_512M
442 
443 static void __init mips_parse_crashkernel(void)
444 {
445 	unsigned long long total_mem;
446 	unsigned long long crash_size, crash_base;
447 	int ret;
448 
449 	total_mem = memblock_phys_mem_size();
450 	ret = parse_crashkernel(boot_command_line, total_mem,
451 				&crash_size, &crash_base);
452 	if (ret != 0 || crash_size <= 0)
453 		return;
454 
455 	if (crash_base <= 0) {
456 		crash_base = memblock_find_in_range(CRASH_ALIGN, CRASH_ADDR_MAX,
457 							crash_size, CRASH_ALIGN);
458 		if (!crash_base) {
459 			pr_warn("crashkernel reservation failed - No suitable area found.\n");
460 			return;
461 		}
462 	} else {
463 		unsigned long long start;
464 
465 		start = memblock_find_in_range(crash_base, crash_base + crash_size,
466 						crash_size, 1);
467 		if (start != crash_base) {
468 			pr_warn("Invalid memory region reserved for crash kernel\n");
469 			return;
470 		}
471 	}
472 
473 	crashk_res.start = crash_base;
474 	crashk_res.end	 = crash_base + crash_size - 1;
475 }
476 
477 static void __init request_crashkernel(struct resource *res)
478 {
479 	int ret;
480 
481 	if (crashk_res.start == crashk_res.end)
482 		return;
483 
484 	ret = request_resource(res, &crashk_res);
485 	if (!ret)
486 		pr_info("Reserving %ldMB of memory at %ldMB for crashkernel\n",
487 			(unsigned long)(resource_size(&crashk_res) >> 20),
488 			(unsigned long)(crashk_res.start  >> 20));
489 }
490 #else /* !defined(CONFIG_KEXEC)		*/
491 static void __init mips_parse_crashkernel(void)
492 {
493 }
494 
495 static void __init request_crashkernel(struct resource *res)
496 {
497 }
498 #endif /* !defined(CONFIG_KEXEC)  */
499 
500 static void __init check_kernel_sections_mem(void)
501 {
502 	phys_addr_t start = __pa_symbol(&_text);
503 	phys_addr_t size = __pa_symbol(&_end) - start;
504 
505 	if (!memblock_is_region_memory(start, size)) {
506 		pr_info("Kernel sections are not in the memory maps\n");
507 		memblock_add(start, size);
508 	}
509 }
510 
511 static void __init bootcmdline_append(const char *s, size_t max)
512 {
513 	if (!s[0] || !max)
514 		return;
515 
516 	if (boot_command_line[0])
517 		strlcat(boot_command_line, " ", COMMAND_LINE_SIZE);
518 
519 	strlcat(boot_command_line, s, max);
520 }
521 
522 #ifdef CONFIG_OF_EARLY_FLATTREE
523 
524 static int __init bootcmdline_scan_chosen(unsigned long node, const char *uname,
525 					  int depth, void *data)
526 {
527 	bool *dt_bootargs = data;
528 	const char *p;
529 	int l;
530 
531 	if (depth != 1 || !data ||
532 	    (strcmp(uname, "chosen") != 0 && strcmp(uname, "chosen@0") != 0))
533 		return 0;
534 
535 	p = of_get_flat_dt_prop(node, "bootargs", &l);
536 	if (p != NULL && l > 0) {
537 		bootcmdline_append(p, min(l, COMMAND_LINE_SIZE));
538 		*dt_bootargs = true;
539 	}
540 
541 	return 1;
542 }
543 
544 #endif /* CONFIG_OF_EARLY_FLATTREE */
545 
546 static void __init bootcmdline_init(void)
547 {
548 	bool dt_bootargs = false;
549 
550 	/*
551 	 * If CMDLINE_OVERRIDE is enabled then initializing the command line is
552 	 * trivial - we simply use the built-in command line unconditionally &
553 	 * unmodified.
554 	 */
555 	if (IS_ENABLED(CONFIG_CMDLINE_OVERRIDE)) {
556 		strlcpy(boot_command_line, builtin_cmdline, COMMAND_LINE_SIZE);
557 		return;
558 	}
559 
560 	/*
561 	 * If the user specified a built-in command line &
562 	 * MIPS_CMDLINE_BUILTIN_EXTEND, then the built-in command line is
563 	 * prepended to arguments from the bootloader or DT so we'll copy them
564 	 * to the start of boot_command_line here. Otherwise, empty
565 	 * boot_command_line to undo anything early_init_dt_scan_chosen() did.
566 	 */
567 	if (IS_ENABLED(CONFIG_MIPS_CMDLINE_BUILTIN_EXTEND))
568 		strlcpy(boot_command_line, builtin_cmdline, COMMAND_LINE_SIZE);
569 	else
570 		boot_command_line[0] = 0;
571 
572 #ifdef CONFIG_OF_EARLY_FLATTREE
573 	/*
574 	 * If we're configured to take boot arguments from DT, look for those
575 	 * now.
576 	 */
577 	if (IS_ENABLED(CONFIG_MIPS_CMDLINE_FROM_DTB) ||
578 	    IS_ENABLED(CONFIG_MIPS_CMDLINE_DTB_EXTEND))
579 		of_scan_flat_dt(bootcmdline_scan_chosen, &dt_bootargs);
580 #endif
581 
582 	/*
583 	 * If we didn't get any arguments from DT (regardless of whether that's
584 	 * because we weren't configured to look for them, or because we looked
585 	 * & found none) then we'll take arguments from the bootloader.
586 	 * plat_mem_setup() should have filled arcs_cmdline with arguments from
587 	 * the bootloader.
588 	 */
589 	if (IS_ENABLED(CONFIG_MIPS_CMDLINE_DTB_EXTEND) || !dt_bootargs)
590 		bootcmdline_append(arcs_cmdline, COMMAND_LINE_SIZE);
591 
592 	/*
593 	 * If the user specified a built-in command line & we didn't already
594 	 * prepend it, we append it to boot_command_line here.
595 	 */
596 	if (IS_ENABLED(CONFIG_CMDLINE_BOOL) &&
597 	    !IS_ENABLED(CONFIG_MIPS_CMDLINE_BUILTIN_EXTEND))
598 		bootcmdline_append(builtin_cmdline, COMMAND_LINE_SIZE);
599 }
600 
601 /*
602  * arch_mem_init - initialize memory management subsystem
603  *
604  *  o plat_mem_setup() detects the memory configuration and will record detected
605  *    memory areas using memblock_add.
606  *
607  * At this stage the memory configuration of the system is known to the
608  * kernel but generic memory management system is still entirely uninitialized.
609  *
610  *  o bootmem_init()
611  *  o sparse_init()
612  *  o paging_init()
613  *  o dma_contiguous_reserve()
614  *
615  * At this stage the bootmem allocator is ready to use.
616  *
617  * NOTE: historically plat_mem_setup did the entire platform initialization.
618  *	 This was rather impractical because it meant plat_mem_setup had to
619  * get away without any kind of memory allocator.  To keep old code from
620  * breaking plat_setup was just renamed to plat_mem_setup and a second platform
621  * initialization hook for anything else was introduced.
622  */
623 static void __init arch_mem_init(char **cmdline_p)
624 {
625 	/* call board setup routine */
626 	plat_mem_setup();
627 	memblock_set_bottom_up(true);
628 
629 	bootcmdline_init();
630 	strlcpy(command_line, boot_command_line, COMMAND_LINE_SIZE);
631 	*cmdline_p = command_line;
632 
633 	parse_early_param();
634 
635 	if (usermem)
636 		pr_info("User-defined physical RAM map overwrite\n");
637 
638 	check_kernel_sections_mem();
639 
640 	early_init_fdt_reserve_self();
641 	early_init_fdt_scan_reserved_mem();
642 
643 #ifndef CONFIG_NUMA
644 	memblock_set_node(0, PHYS_ADDR_MAX, &memblock.memory, 0);
645 #endif
646 	bootmem_init();
647 
648 	/*
649 	 * Prevent memblock from allocating high memory.
650 	 * This cannot be done before max_low_pfn is detected, so up
651 	 * to this point is possible to only reserve physical memory
652 	 * with memblock_reserve; memblock_alloc* can be used
653 	 * only after this point
654 	 */
655 	memblock_set_current_limit(PFN_PHYS(max_low_pfn));
656 
657 #ifdef CONFIG_PROC_VMCORE
658 	if (setup_elfcorehdr && setup_elfcorehdr_size) {
659 		printk(KERN_INFO "kdump reserved memory at %lx-%lx\n",
660 		       setup_elfcorehdr, setup_elfcorehdr_size);
661 		memblock_reserve(setup_elfcorehdr, setup_elfcorehdr_size);
662 	}
663 #endif
664 
665 	mips_parse_crashkernel();
666 #ifdef CONFIG_KEXEC
667 	if (crashk_res.start != crashk_res.end)
668 		memblock_reserve(crashk_res.start, resource_size(&crashk_res));
669 #endif
670 	device_tree_init();
671 
672 	/*
673 	 * In order to reduce the possibility of kernel panic when failed to
674 	 * get IO TLB memory under CONFIG_SWIOTLB, it is better to allocate
675 	 * low memory as small as possible before plat_swiotlb_setup(), so
676 	 * make sparse_init() using top-down allocation.
677 	 */
678 	memblock_set_bottom_up(false);
679 	sparse_init();
680 	memblock_set_bottom_up(true);
681 
682 	plat_swiotlb_setup();
683 
684 	dma_contiguous_reserve(PFN_PHYS(max_low_pfn));
685 
686 	/* Reserve for hibernation. */
687 	memblock_reserve(__pa_symbol(&__nosave_begin),
688 		__pa_symbol(&__nosave_end) - __pa_symbol(&__nosave_begin));
689 
690 	early_memtest(PFN_PHYS(ARCH_PFN_OFFSET), PFN_PHYS(max_low_pfn));
691 }
692 
693 static void __init resource_init(void)
694 {
695 	phys_addr_t start, end;
696 	u64 i;
697 
698 	if (UNCAC_BASE != IO_BASE)
699 		return;
700 
701 	code_resource.start = __pa_symbol(&_text);
702 	code_resource.end = __pa_symbol(&_etext) - 1;
703 	data_resource.start = __pa_symbol(&_etext);
704 	data_resource.end = __pa_symbol(&_edata) - 1;
705 	bss_resource.start = __pa_symbol(&__bss_start);
706 	bss_resource.end = __pa_symbol(&__bss_stop) - 1;
707 
708 	for_each_mem_range(i, &start, &end) {
709 		struct resource *res;
710 
711 		res = memblock_alloc(sizeof(struct resource), SMP_CACHE_BYTES);
712 		if (!res)
713 			panic("%s: Failed to allocate %zu bytes\n", __func__,
714 			      sizeof(struct resource));
715 
716 		res->start = start;
717 		/*
718 		 * In memblock, end points to the first byte after the
719 		 * range while in resourses, end points to the last byte in
720 		 * the range.
721 		 */
722 		res->end = end - 1;
723 		res->flags = IORESOURCE_SYSTEM_RAM | IORESOURCE_BUSY;
724 		res->name = "System RAM";
725 
726 		request_resource(&iomem_resource, res);
727 
728 		/*
729 		 *  We don't know which RAM region contains kernel data,
730 		 *  so we try it repeatedly and let the resource manager
731 		 *  test it.
732 		 */
733 		request_resource(res, &code_resource);
734 		request_resource(res, &data_resource);
735 		request_resource(res, &bss_resource);
736 		request_crashkernel(res);
737 	}
738 }
739 
740 #ifdef CONFIG_SMP
741 static void __init prefill_possible_map(void)
742 {
743 	int i, possible = num_possible_cpus();
744 
745 	if (possible > nr_cpu_ids)
746 		possible = nr_cpu_ids;
747 
748 	for (i = 0; i < possible; i++)
749 		set_cpu_possible(i, true);
750 	for (; i < NR_CPUS; i++)
751 		set_cpu_possible(i, false);
752 
753 	nr_cpu_ids = possible;
754 }
755 #else
756 static inline void prefill_possible_map(void) {}
757 #endif
758 
759 void __init setup_arch(char **cmdline_p)
760 {
761 	cpu_probe();
762 	mips_cm_probe();
763 	prom_init();
764 
765 	setup_early_fdc_console();
766 #ifdef CONFIG_EARLY_PRINTK
767 	setup_early_printk();
768 #endif
769 	cpu_report();
770 	check_bugs_early();
771 
772 #if defined(CONFIG_VT)
773 #if defined(CONFIG_VGA_CONSOLE)
774 	conswitchp = &vga_con;
775 #endif
776 #endif
777 
778 	arch_mem_init(cmdline_p);
779 	dmi_setup();
780 
781 	resource_init();
782 	plat_smp_setup();
783 	prefill_possible_map();
784 
785 	cpu_cache_init();
786 	paging_init();
787 
788 	memblock_dump_all();
789 }
790 
791 unsigned long kernelsp[NR_CPUS];
792 unsigned long fw_arg0, fw_arg1, fw_arg2, fw_arg3;
793 
794 #ifdef CONFIG_DEBUG_FS
795 struct dentry *mips_debugfs_dir;
796 static int __init debugfs_mips(void)
797 {
798 	mips_debugfs_dir = debugfs_create_dir("mips", NULL);
799 	return 0;
800 }
801 arch_initcall(debugfs_mips);
802 #endif
803 
804 #ifdef CONFIG_DMA_MAYBE_COHERENT
805 static int __init setcoherentio(char *str)
806 {
807 	dma_default_coherent = true;
808 	pr_info("Hardware DMA cache coherency (command line)\n");
809 	return 0;
810 }
811 early_param("coherentio", setcoherentio);
812 
813 static int __init setnocoherentio(char *str)
814 {
815 	dma_default_coherent = true;
816 	pr_info("Software DMA cache coherency (command line)\n");
817 	return 0;
818 }
819 early_param("nocoherentio", setnocoherentio);
820 #endif
821