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
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
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-contiguous.h>
28 #include <linux/decompress/generic.h>
29 #include <linux/of_fdt.h>
31 #include <asm/addrspace.h>
32 #include <asm/bootinfo.h>
34 #include <asm/cache.h>
37 #include <asm/debug.h>
38 #include <asm/dma-coherence.h>
39 #include <asm/sections.h>
40 #include <asm/setup.h>
41 #include <asm/smp-ops.h>
44 #ifdef CONFIG_MIPS_ELF_APPENDED_DTB
45 const char __section(.appended_dtb
) __appended_dtb
[0x100000];
46 #endif /* CONFIG_MIPS_ELF_APPENDED_DTB */
48 struct cpuinfo_mips cpu_data
[NR_CPUS
] __read_mostly
;
50 EXPORT_SYMBOL(cpu_data
);
53 struct screen_info screen_info
;
59 * These are initialized so they are in the .data section
61 unsigned long mips_machtype __read_mostly
= MACH_UNKNOWN
;
63 EXPORT_SYMBOL(mips_machtype
);
65 struct boot_mem_map boot_mem_map
;
67 static char __initdata command_line
[COMMAND_LINE_SIZE
];
68 char __initdata arcs_cmdline
[COMMAND_LINE_SIZE
];
70 #ifdef CONFIG_CMDLINE_BOOL
71 static char __initdata builtin_cmdline
[COMMAND_LINE_SIZE
] = CONFIG_CMDLINE
;
75 * mips_io_port_base is the begin of the address space to which x86 style
76 * I/O ports are mapped.
78 const unsigned long mips_io_port_base
= -1;
79 EXPORT_SYMBOL(mips_io_port_base
);
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", };
85 static void *detect_magic __initdata
= detect_memory_region
;
87 #ifdef CONFIG_MIPS_AUTO_PFN_OFFSET
88 unsigned long ARCH_PFN_OFFSET
;
89 EXPORT_SYMBOL(ARCH_PFN_OFFSET
);
92 void __init
add_memory_region(phys_addr_t start
, phys_addr_t size
, long type
)
94 int x
= boot_mem_map
.nr_map
;
98 * If the region reaches the top of the physical address space, adjust
99 * the size slightly so that (start + size) doesn't overflow
101 if (start
+ size
- 1 == PHYS_ADDR_MAX
)
105 if (start
+ size
< start
) {
106 pr_warn("Trying to add an invalid memory region, skipped\n");
111 * Try to merge with existing entry, if any.
113 for (i
= 0; i
< boot_mem_map
.nr_map
; i
++) {
114 struct boot_mem_map_entry
*entry
= boot_mem_map
.map
+ i
;
117 if (entry
->type
!= type
)
120 if (start
+ size
< entry
->addr
)
121 continue; /* no overlap */
123 if (entry
->addr
+ entry
->size
< start
)
124 continue; /* no overlap */
126 top
= max(entry
->addr
+ entry
->size
, start
+ size
);
127 entry
->addr
= min(entry
->addr
, start
);
128 entry
->size
= top
- entry
->addr
;
133 if (boot_mem_map
.nr_map
== BOOT_MEM_MAP_MAX
) {
134 pr_err("Ooops! Too many entries in the memory map!\n");
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
++;
144 void __init
detect_memory_region(phys_addr_t start
, phys_addr_t sz_min
, phys_addr_t sz_max
)
146 void *dm
= &detect_magic
;
149 for (size
= sz_min
; size
< sz_max
; size
<<= 1) {
150 if (!memcmp(dm
, dm
+ size
, sizeof(detect_magic
)))
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
);
160 add_memory_region(start
, size
, BOOT_MEM_RAM
);
163 static bool __init __maybe_unused
memory_region_available(phys_addr_t start
,
167 bool in_ram
= false, free
= true;
169 for (i
= 0; i
< boot_mem_map
.nr_map
; i
++) {
170 phys_addr_t start_
, end_
;
172 start_
= boot_mem_map
.map
[i
].addr
;
173 end_
= boot_mem_map
.map
[i
].addr
+ boot_mem_map
.map
[i
].size
;
175 switch (boot_mem_map
.map
[i
].type
) {
177 if (start
>= start_
&& start
+ size
<= end_
)
180 case BOOT_MEM_RESERVED
:
181 if ((start
>= start_
&& start
< end_
) ||
182 (start
< start_
&& start
+ size
>= start_
))
190 return in_ram
&& free
;
193 static void __init
print_memory_map(void)
196 const int field
= 2 * sizeof(unsigned long);
198 for (i
= 0; i
< boot_mem_map
.nr_map
; i
++) {
199 printk(KERN_INFO
" memory: %0*Lx @ %0*Lx ",
200 field
, (unsigned long long) boot_mem_map
.map
[i
].size
,
201 field
, (unsigned long long) boot_mem_map
.map
[i
].addr
);
203 switch (boot_mem_map
.map
[i
].type
) {
205 printk(KERN_CONT
"(usable)\n");
207 case BOOT_MEM_INIT_RAM
:
208 printk(KERN_CONT
"(usable after init)\n");
210 case BOOT_MEM_ROM_DATA
:
211 printk(KERN_CONT
"(ROM data)\n");
213 case BOOT_MEM_RESERVED
:
214 printk(KERN_CONT
"(reserved)\n");
217 printk(KERN_CONT
"type %lu\n", boot_mem_map
.map
[i
].type
);
226 #ifdef CONFIG_BLK_DEV_INITRD
228 static int __init
rd_start_early(char *p
)
230 unsigned long start
= memparse(p
, &p
);
233 /* Guess if the sign extension was forgotten by bootloader */
237 initrd_start
= start
;
241 early_param("rd_start", rd_start_early
);
243 static int __init
rd_size_early(char *p
)
245 initrd_end
+= memparse(p
, &p
);
248 early_param("rd_size", rd_size_early
);
250 /* it returns the next free pfn after initrd */
251 static unsigned long __init
init_initrd(void)
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.
260 if (!initrd_start
|| initrd_end
<= initrd_start
)
263 if (initrd_start
& ~PAGE_MASK
) {
264 pr_err("initrd start must be page aligned\n");
267 if (initrd_start
< PAGE_OFFSET
) {
268 pr_err("initrd start < PAGE_OFFSET\n");
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().
279 end
= __pa(initrd_end
);
280 initrd_end
= (unsigned long)__va(end
);
281 initrd_start
= (unsigned long)__va(__pa(initrd_start
));
283 ROOT_DEV
= Root_RAM0
;
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. */
294 static void __init
maybe_bswap_initrd(void)
296 #if defined(CONFIG_CPU_CAVIUM_OCTEON)
299 /* Check for CPIO signature */
300 if (!memcmp((void *)initrd_start
, "070701", 6))
303 /* Check for compressed initrd */
304 if (decompress_method((unsigned char *)initrd_start
, 8, NULL
))
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
)) {
313 pr_info("Byteswapped initrd detected\n");
314 for (i
= initrd_start
; i
< ALIGN(initrd_end
, 8); i
+= 8)
320 static void __init
finalize_initrd(void)
322 unsigned long size
= initrd_end
- initrd_start
;
325 printk(KERN_INFO
"Initrd not found or empty");
328 if (__pa(initrd_end
) > PFN_PHYS(max_low_pfn
)) {
329 printk(KERN_ERR
"Initrd extends beyond end of memory");
333 maybe_bswap_initrd();
335 memblock_reserve(__pa(initrd_start
), size
);
336 initrd_below_start_ok
= 1;
338 pr_info("Initial ramdisk at: 0x%lx (%lu bytes)\n",
342 printk(KERN_CONT
" - disabling initrd\n");
347 #else /* !CONFIG_BLK_DEV_INITRD */
349 static unsigned long __init
init_initrd(void)
354 #define finalize_initrd() do {} while (0)
359 * Initialize the bootmem allocator. It also setup initrd related data
362 #if defined(CONFIG_SGI_IP27) || (defined(CONFIG_CPU_LOONGSON3) && defined(CONFIG_NUMA))
364 static void __init
bootmem_init(void)
370 #else /* !CONFIG_SGI_IP27 */
372 static void __init
bootmem_init(void)
374 unsigned long reserved_end
;
375 phys_addr_t ramstart
= PHYS_ADDR_MAX
;
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.
385 reserved_end
= (unsigned long) PFN_UP(__pa_symbol(&_end
));
387 memblock_reserve(PHYS_OFFSET
, reserved_end
<< PAGE_SHIFT
);
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'.
397 * Find the highest page frame number we have available
398 * and the lowest used RAM address
400 for (i
= 0; i
< boot_mem_map
.nr_map
; i
++) {
401 unsigned long start
, end
;
403 if (boot_mem_map
.map
[i
].type
!= BOOT_MEM_RAM
)
406 start
= PFN_UP(boot_mem_map
.map
[i
].addr
);
407 end
= PFN_DOWN(boot_mem_map
.map
[i
].addr
408 + boot_mem_map
.map
[i
].size
);
410 ramstart
= min(ramstart
, boot_mem_map
.map
[i
].addr
);
412 #ifndef CONFIG_HIGHMEM
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.
419 if (start
>= PFN_DOWN(HIGHMEM_START
))
421 if (end
> PFN_DOWN(HIGHMEM_START
))
422 end
= PFN_DOWN(HIGHMEM_START
);
425 if (end
> max_low_pfn
)
427 if (start
< min_low_pfn
)
429 if (end
<= reserved_end
)
431 #ifdef CONFIG_BLK_DEV_INITRD
432 /* Skip zones before initrd and initrd itself */
433 if (initrd_end
&& end
<= (unsigned long)PFN_UP(__pa(initrd_end
)))
438 if (min_low_pfn
>= max_low_pfn
)
439 panic("Incorrect memory mapping !!!");
441 #ifdef CONFIG_MIPS_AUTO_PFN_OFFSET
442 ARCH_PFN_OFFSET
= PFN_UP(ramstart
);
445 * Reserve any memory between the start of RAM and PHYS_OFFSET
447 if (ramstart
> PHYS_OFFSET
) {
448 add_memory_region(PHYS_OFFSET
, ramstart
- PHYS_OFFSET
,
450 memblock_reserve(PHYS_OFFSET
, ramstart
- PHYS_OFFSET
);
453 if (min_low_pfn
> ARCH_PFN_OFFSET
) {
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
);
457 } else if (ARCH_PFN_OFFSET
- min_low_pfn
> 0UL) {
458 pr_info("%lu free pages won't be used\n",
459 ARCH_PFN_OFFSET
- min_low_pfn
);
461 min_low_pfn
= ARCH_PFN_OFFSET
;
465 * Determine low and high memory ranges
467 max_pfn
= max_low_pfn
;
468 if (max_low_pfn
> PFN_DOWN(HIGHMEM_START
)) {
469 #ifdef CONFIG_HIGHMEM
470 highstart_pfn
= PFN_DOWN(HIGHMEM_START
);
471 highend_pfn
= max_low_pfn
;
473 max_low_pfn
= PFN_DOWN(HIGHMEM_START
);
476 for (i
= 0; i
< boot_mem_map
.nr_map
; i
++) {
477 unsigned long start
, end
;
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
);
483 if (start
<= min_low_pfn
)
488 #ifndef CONFIG_HIGHMEM
489 if (end
> max_low_pfn
)
493 * ... finally, is the area going away?
499 memblock_add_node(PFN_PHYS(start
), PFN_PHYS(end
- start
), 0);
503 * Register fully available low RAM pages with the bootmem allocator.
505 for (i
= 0; i
< boot_mem_map
.nr_map
; i
++) {
506 unsigned long start
, end
, size
;
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
);
513 * Reserve usable memory.
515 switch (boot_mem_map
.map
[i
].type
) {
518 case BOOT_MEM_INIT_RAM
:
519 memory_present(0, start
, end
);
522 /* Not usable memory */
523 if (start
> min_low_pfn
&& end
< max_low_pfn
)
524 memblock_reserve(boot_mem_map
.map
[i
].addr
,
525 boot_mem_map
.map
[i
].size
);
531 * We are rounding up the start address of usable memory
532 * and at the end of the usable range downwards.
534 if (start
>= max_low_pfn
)
536 if (start
< reserved_end
)
537 start
= reserved_end
;
538 if (end
> max_low_pfn
)
542 * ... finally, is the area going away?
548 /* Register lowmem ranges */
549 memory_present(0, start
, end
);
552 #ifdef CONFIG_RELOCATABLE
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.
558 if (__pa_symbol(_text
) > __pa_symbol(VMLINUX_LOAD_ADDRESS
)) {
559 unsigned long offset
;
560 extern void show_kernel_relocation(const char *level
);
562 offset
= __pa_symbol(_text
) - __pa_symbol(VMLINUX_LOAD_ADDRESS
);
563 memblock_free(__pa_symbol(VMLINUX_LOAD_ADDRESS
), offset
);
565 #if defined(CONFIG_DEBUG_KERNEL) && defined(CONFIG_DEBUG_INFO)
567 * This information is necessary when debugging the kernel
568 * But is a security vulnerability otherwise!
570 show_kernel_relocation(KERN_INFO
);
576 * Reserve initrd memory if needed.
581 #endif /* CONFIG_SGI_IP27 */
583 static int usermem __initdata
;
585 static int __init
early_parse_mem(char *p
)
587 phys_addr_t start
, size
;
590 * If a user specifies memory size, we
591 * blow away any automatically generated
595 boot_mem_map
.nr_map
= 0;
599 size
= memparse(p
, &p
);
601 start
= memparse(p
+ 1, &p
);
603 add_memory_region(start
, size
, BOOT_MEM_RAM
);
607 early_param("mem", early_parse_mem
);
609 static int __init
early_parse_memmap(char *p
)
612 u64 start_at
, mem_size
;
617 if (!strncmp(p
, "exactmap", 8)) {
618 pr_err("\"memmap=exactmap\" invalid on MIPS\n");
623 mem_size
= memparse(p
, &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");
633 } else if (*p
== '$') {
634 start_at
= memparse(p
+1, &p
);
635 add_memory_region(start_at
, mem_size
, BOOT_MEM_RESERVED
);
637 pr_err("\"memmap\" invalid format!\n");
647 early_param("memmap", early_parse_memmap
);
649 #ifdef CONFIG_PROC_VMCORE
650 unsigned long setup_elfcorehdr
, setup_elfcorehdr_size
;
651 static int __init
early_parse_elfcorehdr(char *p
)
655 setup_elfcorehdr
= memparse(p
, &p
);
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
) {
663 * Reserve from the elf core header to the end of
664 * the memory segment, that should all be kdump
667 setup_elfcorehdr_size
= end
- setup_elfcorehdr
;
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.
677 early_param("elfcorehdr", early_parse_elfcorehdr
);
680 static void __init
arch_mem_addpart(phys_addr_t mem
, phys_addr_t end
, int type
)
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
))
696 add_memory_region(mem
, size
, type
);
700 static inline unsigned long long get_total_mem(void)
702 unsigned long long total
;
704 total
= max_pfn
- min_low_pfn
;
705 return total
<< PAGE_SHIFT
;
708 static void __init
mips_parse_crashkernel(void)
710 unsigned long long total_mem
;
711 unsigned long long crash_size
, crash_base
;
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)
720 if (!memory_region_available(crash_base
, crash_size
)) {
721 pr_warn("Invalid memory region reserved for crash kernel\n");
725 crashk_res
.start
= crash_base
;
726 crashk_res
.end
= crash_base
+ crash_size
- 1;
729 static void __init
request_crashkernel(struct resource
*res
)
733 if (crashk_res
.start
== crashk_res
.end
)
736 ret
= request_resource(res
, &crashk_res
);
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));
743 #else /* !defined(CONFIG_KEXEC) */
744 static void __init
mips_parse_crashkernel(void)
748 static void __init
request_crashkernel(struct resource
*res
)
751 #endif /* !defined(CONFIG_KEXEC) */
753 #define USE_PROM_CMDLINE IS_ENABLED(CONFIG_MIPS_CMDLINE_FROM_BOOTLOADER)
754 #define USE_DTB_CMDLINE IS_ENABLED(CONFIG_MIPS_CMDLINE_FROM_DTB)
755 #define EXTEND_WITH_PROM IS_ENABLED(CONFIG_MIPS_CMDLINE_DTB_EXTEND)
756 #define BUILTIN_EXTEND_WITH_PROM \
757 IS_ENABLED(CONFIG_MIPS_CMDLINE_BUILTIN_EXTEND)
760 * arch_mem_init - initialize memory management subsystem
762 * o plat_mem_setup() detects the memory configuration and will record detected
763 * memory areas using add_memory_region.
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.
771 * o dma_contiguous_reserve()
773 * At this stage the bootmem allocator is ready to use.
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.
781 static void __init
arch_mem_init(char **cmdline_p
)
783 struct memblock_region
*reg
;
784 extern void plat_mem_setup(void);
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.
793 strlcpy(boot_command_line
, " ", COMMAND_LINE_SIZE
);
795 /* call board setup routine */
797 memblock_set_bottom_up(true);
800 * Make sure all kernel memory is in the maps. The "UP" and
801 * "DOWN" are opposite for initdata since if it crosses over
802 * into another memory section you don't want that to be
803 * freed when the initdata is freed.
805 arch_mem_addpart(PFN_DOWN(__pa_symbol(&_text
)) << PAGE_SHIFT
,
806 PFN_UP(__pa_symbol(&_edata
)) << PAGE_SHIFT
,
808 arch_mem_addpart(PFN_UP(__pa_symbol(&__init_begin
)) << PAGE_SHIFT
,
809 PFN_DOWN(__pa_symbol(&__init_end
)) << PAGE_SHIFT
,
812 pr_info("Determined physical RAM map:\n");
815 #if defined(CONFIG_CMDLINE_BOOL) && defined(CONFIG_CMDLINE_OVERRIDE)
816 strlcpy(boot_command_line
, builtin_cmdline
, COMMAND_LINE_SIZE
);
818 if ((USE_PROM_CMDLINE
&& arcs_cmdline
[0]) ||
819 (USE_DTB_CMDLINE
&& !boot_command_line
[0]))
820 strlcpy(boot_command_line
, arcs_cmdline
, COMMAND_LINE_SIZE
);
822 if (EXTEND_WITH_PROM
&& arcs_cmdline
[0]) {
823 if (boot_command_line
[0])
824 strlcat(boot_command_line
, " ", COMMAND_LINE_SIZE
);
825 strlcat(boot_command_line
, arcs_cmdline
, COMMAND_LINE_SIZE
);
828 #if defined(CONFIG_CMDLINE_BOOL)
829 if (builtin_cmdline
[0]) {
830 if (boot_command_line
[0])
831 strlcat(boot_command_line
, " ", COMMAND_LINE_SIZE
);
832 strlcat(boot_command_line
, builtin_cmdline
, COMMAND_LINE_SIZE
);
835 if (BUILTIN_EXTEND_WITH_PROM
&& arcs_cmdline
[0]) {
836 if (boot_command_line
[0])
837 strlcat(boot_command_line
, " ", COMMAND_LINE_SIZE
);
838 strlcat(boot_command_line
, arcs_cmdline
, COMMAND_LINE_SIZE
);
842 strlcpy(command_line
, boot_command_line
, COMMAND_LINE_SIZE
);
844 *cmdline_p
= command_line
;
849 pr_info("User-defined physical RAM map:\n");
853 early_init_fdt_reserve_self();
854 early_init_fdt_scan_reserved_mem();
859 * Prevent memblock from allocating high memory.
860 * This cannot be done before max_low_pfn is detected, so up
861 * to this point is possible to only reserve physical memory
862 * with memblock_reserve; memblock_alloc* can be used
863 * only after this point
865 memblock_set_current_limit(PFN_PHYS(max_low_pfn
));
867 #ifdef CONFIG_PROC_VMCORE
868 if (setup_elfcorehdr
&& setup_elfcorehdr_size
) {
869 printk(KERN_INFO
"kdump reserved memory at %lx-%lx\n",
870 setup_elfcorehdr
, setup_elfcorehdr_size
);
871 memblock_reserve(setup_elfcorehdr
, setup_elfcorehdr_size
);
875 mips_parse_crashkernel();
877 if (crashk_res
.start
!= crashk_res
.end
)
878 memblock_reserve(crashk_res
.start
,
879 crashk_res
.end
- crashk_res
.start
+ 1);
883 plat_swiotlb_setup();
885 dma_contiguous_reserve(PFN_PHYS(max_low_pfn
));
886 /* Tell bootmem about cma reserved memblock section */
887 for_each_memblock(reserved
, reg
)
889 memblock_reserve(reg
->base
, reg
->size
);
891 reserve_bootmem_region(__pa_symbol(&__nosave_begin
),
892 __pa_symbol(&__nosave_end
)); /* Reserve for hibernation */
895 static void __init
resource_init(void)
899 if (UNCAC_BASE
!= IO_BASE
)
902 code_resource
.start
= __pa_symbol(&_text
);
903 code_resource
.end
= __pa_symbol(&_etext
) - 1;
904 data_resource
.start
= __pa_symbol(&_etext
);
905 data_resource
.end
= __pa_symbol(&_edata
) - 1;
906 bss_resource
.start
= __pa_symbol(&__bss_start
);
907 bss_resource
.end
= __pa_symbol(&__bss_stop
) - 1;
909 for (i
= 0; i
< boot_mem_map
.nr_map
; i
++) {
910 struct resource
*res
;
911 unsigned long start
, end
;
913 start
= boot_mem_map
.map
[i
].addr
;
914 end
= boot_mem_map
.map
[i
].addr
+ boot_mem_map
.map
[i
].size
- 1;
915 if (start
>= HIGHMEM_START
)
917 if (end
>= HIGHMEM_START
)
918 end
= HIGHMEM_START
- 1;
920 res
= memblock_alloc(sizeof(struct resource
), SMP_CACHE_BYTES
);
924 res
->flags
= IORESOURCE_MEM
| IORESOURCE_BUSY
;
926 switch (boot_mem_map
.map
[i
].type
) {
928 case BOOT_MEM_INIT_RAM
:
929 case BOOT_MEM_ROM_DATA
:
930 res
->name
= "System RAM";
931 res
->flags
|= IORESOURCE_SYSRAM
;
933 case BOOT_MEM_RESERVED
:
935 res
->name
= "reserved";
938 request_resource(&iomem_resource
, res
);
941 * We don't know which RAM region contains kernel data,
942 * so we try it repeatedly and let the resource manager
945 request_resource(res
, &code_resource
);
946 request_resource(res
, &data_resource
);
947 request_resource(res
, &bss_resource
);
948 request_crashkernel(res
);
953 static void __init
prefill_possible_map(void)
955 int i
, possible
= num_possible_cpus();
957 if (possible
> nr_cpu_ids
)
958 possible
= nr_cpu_ids
;
960 for (i
= 0; i
< possible
; i
++)
961 set_cpu_possible(i
, true);
962 for (; i
< NR_CPUS
; i
++)
963 set_cpu_possible(i
, false);
965 nr_cpu_ids
= possible
;
968 static inline void prefill_possible_map(void) {}
971 void __init
setup_arch(char **cmdline_p
)
977 setup_early_fdc_console();
978 #ifdef CONFIG_EARLY_PRINTK
979 setup_early_printk();
984 #if defined(CONFIG_VT)
985 #if defined(CONFIG_VGA_CONSOLE)
986 conswitchp
= &vga_con
;
987 #elif defined(CONFIG_DUMMY_CONSOLE)
988 conswitchp
= &dummy_con
;
992 arch_mem_init(cmdline_p
);
996 prefill_possible_map();
1002 unsigned long kernelsp
[NR_CPUS
];
1003 unsigned long fw_arg0
, fw_arg1
, fw_arg2
, fw_arg3
;
1005 #ifdef CONFIG_USE_OF
1006 unsigned long fw_passed_dtb
;
1009 #ifdef CONFIG_DEBUG_FS
1010 struct dentry
*mips_debugfs_dir
;
1011 static int __init
debugfs_mips(void)
1015 d
= debugfs_create_dir("mips", NULL
);
1018 mips_debugfs_dir
= d
;
1021 arch_initcall(debugfs_mips
);
1024 #ifdef CONFIG_DMA_MAYBE_COHERENT
1025 /* User defined DMA coherency from command line. */
1026 enum coherent_io_user_state coherentio
= IO_COHERENCE_DEFAULT
;
1027 EXPORT_SYMBOL_GPL(coherentio
);
1028 int hw_coherentio
= 0; /* Actual hardware supported DMA coherency setting. */
1030 static int __init
setcoherentio(char *str
)
1032 coherentio
= IO_COHERENCE_ENABLED
;
1033 pr_info("Hardware DMA cache coherency (command line)\n");
1036 early_param("coherentio", setcoherentio
);
1038 static int __init
setnocoherentio(char *str
)
1040 coherentio
= IO_COHERENCE_DISABLED
;
1041 pr_info("Software DMA cache coherency (command line)\n");
1044 early_param("nocoherentio", setnocoherentio
);