decompressor.c 2.0 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0
2 3 4 5 6 7 8 9
/*
 * Definitions and wrapper functions for kernel decompressor
 *
 * Copyright IBM Corp. 2010
 *
 * Author(s): Martin Schwidefsky <schwidefsky@de.ibm.com>
 */

10 11
#include <linux/kernel.h>
#include <linux/string.h>
12
#include <asm/page.h>
V
Vasily Gorbik 已提交
13
#include "decompressor.h"
14 15 16 17 18

/*
 * gzip declarations
 */
#define STATIC static
19
#define STATIC_RW_DATA static __section(.data)
20 21 22 23

#undef memset
#undef memcpy
#undef memmove
24
#define memmove memmove
25 26 27
#define memzero(s, n) memset((s), 0, (n))

/* Symbols defined by linker scripts */
V
Vasily Gorbik 已提交
28
extern char _end[];
29 30
extern unsigned char _compressed_start[];
extern unsigned char _compressed_end[];
31 32

#ifdef CONFIG_HAVE_KERNEL_BZIP2
33
#define BOOT_HEAP_SIZE	0x400000
34
#else
35
#define BOOT_HEAP_SIZE	0x10000
36 37
#endif

38
static unsigned long free_mem_ptr = (unsigned long) _end;
39
static unsigned long free_mem_end_ptr = (unsigned long) _end + BOOT_HEAP_SIZE;
40

41 42 43 44 45 46 47 48
#ifdef CONFIG_KERNEL_GZIP
#include "../../../../lib/decompress_inflate.c"
#endif

#ifdef CONFIG_KERNEL_BZIP2
#include "../../../../lib/decompress_bunzip2.c"
#endif

49 50 51 52
#ifdef CONFIG_KERNEL_LZ4
#include "../../../../lib/decompress_unlz4.c"
#endif

53 54 55 56
#ifdef CONFIG_KERNEL_LZMA
#include "../../../../lib/decompress_unlzma.c"
#endif

57 58 59 60
#ifdef CONFIG_KERNEL_LZO
#include "../../../../lib/decompress_unlzo.c"
#endif

61 62 63 64
#ifdef CONFIG_KERNEL_XZ
#include "../../../../lib/decompress_unxz.c"
#endif

65
#define decompress_offset ALIGN((unsigned long)_end + BOOT_HEAP_SIZE, PAGE_SIZE)
66

67 68
unsigned long mem_safe_offset(void)
{
69
	/*
70 71 72
	 * due to 4MB HEAD_SIZE for bzip2
	 * 'decompress_offset + vmlinux.image_size' could be larger than
	 * kernel at final position + its .bss, so take the larger of two
73
	 */
74 75 76 77 78 79 80
	return max(decompress_offset + vmlinux.image_size,
		   vmlinux.default_lma + vmlinux.image_size + vmlinux.bss_size);
}

void *decompress_kernel(void)
{
	void *output = (void *)decompress_offset;
81

82 83
	__decompress(_compressed_start, _compressed_end - _compressed_start,
		     NULL, NULL, output, 0, NULL, error);
V
Vasily Gorbik 已提交
84
	return output;
85
}