1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Copyright 2001 MontaVista Software Inc.
6 * Copyright (C) 2009 Lemote, Inc.
10 #define DISABLE_BRANCH_PROFILING
13 #include <linux/types.h>
14 #include <linux/kernel.h>
15 #include <linux/string.h>
16 #include <linux/libfdt.h>
18 #include <asm/addrspace.h>
19 #include <asm/unaligned.h>
20 #include <asm-generic/vmlinux.lds.h>
23 * These two variables specify the free mem region
24 * that can be used for temporary malloc area
26 unsigned long free_mem_ptr;
27 unsigned long free_mem_end_ptr;
29 /* The linker tells us where the image is. */
30 extern unsigned char __image_begin[], __image_end[];
32 /* debug interfaces */
33 #ifdef CONFIG_DEBUG_ZBOOT
34 extern void puts(const char *s);
35 extern void puthex(unsigned long long val);
37 #define puts(s) do {} while (0)
38 #define puthex(val) do {} while (0)
41 extern char __appended_dtb[];
47 puts("\n\n -- System halted");
53 /* activate the code for pre-boot environment */
56 #ifdef CONFIG_KERNEL_GZIP
57 #include "../../../../lib/decompress_inflate.c"
60 #ifdef CONFIG_KERNEL_BZIP2
61 #include "../../../../lib/decompress_bunzip2.c"
64 #ifdef CONFIG_KERNEL_LZ4
65 #include "../../../../lib/decompress_unlz4.c"
68 #ifdef CONFIG_KERNEL_LZMA
69 #include "../../../../lib/decompress_unlzma.c"
72 #ifdef CONFIG_KERNEL_LZO
73 #include "../../../../lib/decompress_unlzo.c"
76 #ifdef CONFIG_KERNEL_XZ
77 #include "../../../../lib/decompress_unxz.c"
80 #ifdef CONFIG_KERNEL_ZSTD
81 #include "../../../../lib/decompress_unzstd.c"
84 const unsigned long __stack_chk_guard = 0x000a0dff;
86 void __stack_chk_fail(void)
88 error("stack-protector: Kernel stack is corrupted\n");
91 void decompress_kernel(unsigned long boot_heap_start)
93 unsigned long zimage_start, zimage_size;
95 zimage_start = (unsigned long)(__image_begin);
96 zimage_size = (unsigned long)(__image_end) -
97 (unsigned long)(__image_begin);
100 puthex(zimage_start);
102 puthex(zimage_size + zimage_start);
105 /* This area are prepared for mallocing when decompressing */
106 free_mem_ptr = boot_heap_start;
107 free_mem_end_ptr = boot_heap_start + BOOT_HEAP_SIZE;
109 /* Display standard Linux/MIPS boot prompt */
110 puts("Uncompressing Linux at load address ");
111 puthex(VMLINUX_LOAD_ADDRESS_ULL);
114 /* Decompress the kernel with according algorithm */
115 __decompress((char *)zimage_start, zimage_size, 0, 0,
116 (void *)VMLINUX_LOAD_ADDRESS_ULL, 0, 0, error);
118 if (IS_ENABLED(CONFIG_MIPS_RAW_APPENDED_DTB) &&
119 fdt_magic((void *)&__appended_dtb) == FDT_MAGIC) {
120 unsigned int image_size, dtb_size;
122 dtb_size = fdt_totalsize((void *)&__appended_dtb);
124 /* last four bytes is always image size in little endian */
125 image_size = get_unaligned_le32((void *)__image_end - 4);
127 /* The device tree's address must be properly aligned */
128 image_size = ALIGN(image_size, STRUCT_ALIGNMENT);
130 puts("Copy device tree to address ");
131 puthex(VMLINUX_LOAD_ADDRESS_ULL + image_size);
134 /* copy dtb to where the booted kernel will expect it */
135 memcpy((void *)VMLINUX_LOAD_ADDRESS_ULL + image_size,
136 __appended_dtb, dtb_size);
139 /* FIXME: should we flush cache here? */
140 puts("Now, booting the kernel...\n");