1 // SPDX-License-Identifier: GPL-2.0
3 * Definitions and wrapper functions for kernel decompressor
5 * Copyright IBM Corp. 2010
7 * Author(s): Martin Schwidefsky <schwidefsky@de.ibm.com>
10 #include <linux/uaccess.h>
24 #define memmove memmove
25 #define memzero(s, n) memset((s), 0, (n))
27 /* Symbols defined by linker scripts */
28 extern char input_data
[];
31 extern char _bss
[], _ebss
[];
33 static void error(char *m
);
35 static unsigned long free_mem_ptr
;
36 static unsigned long free_mem_end_ptr
;
38 #ifdef CONFIG_HAVE_KERNEL_BZIP2
39 #define HEAP_SIZE 0x400000
41 #define HEAP_SIZE 0x10000
44 #ifdef CONFIG_KERNEL_GZIP
45 #include "../../../../lib/decompress_inflate.c"
48 #ifdef CONFIG_KERNEL_BZIP2
49 #include "../../../../lib/decompress_bunzip2.c"
52 #ifdef CONFIG_KERNEL_LZ4
53 #include "../../../../lib/decompress_unlz4.c"
56 #ifdef CONFIG_KERNEL_LZMA
57 #include "../../../../lib/decompress_unlzma.c"
60 #ifdef CONFIG_KERNEL_LZO
61 #include "../../../../lib/decompress_unlzo.c"
64 #ifdef CONFIG_KERNEL_XZ
65 #include "../../../../lib/decompress_unxz.c"
68 static int puts(const char *s
)
74 static void error(char *x
)
76 unsigned long long psw
= 0x000a0000deadbeefULL
;
80 puts("\n\n -- System halted");
82 asm volatile("lpsw %0" : : "Q" (psw
));
85 unsigned long decompress_kernel(void)
87 void *output
, *kernel_end
;
89 output
= (void *) ALIGN((unsigned long) _end
+ HEAP_SIZE
, PAGE_SIZE
);
90 kernel_end
= output
+ SZ__bss_start
;
92 #ifdef CONFIG_BLK_DEV_INITRD
94 * Move the initrd right behind the end of the decompressed
95 * kernel image. This also prevents initrd corruption caused by
96 * bss clearing since kernel_end will always be located behind the
97 * current bss section..
99 if (INITRD_START
&& INITRD_SIZE
&& kernel_end
> (void *) INITRD_START
) {
100 memmove(kernel_end
, (void *) INITRD_START
, INITRD_SIZE
);
101 INITRD_START
= (unsigned long) kernel_end
;
106 * Clear bss section. free_mem_ptr and free_mem_end_ptr need to be
107 * initialized afterwards since they reside in bss.
109 memset(_bss
, 0, _ebss
- _bss
);
110 free_mem_ptr
= (unsigned long) _end
;
111 free_mem_end_ptr
= free_mem_ptr
+ HEAP_SIZE
;
113 __decompress(input_data
, input_len
, NULL
, NULL
, output
, 0, NULL
, error
);
114 return (unsigned long) output
;