blob: c00c4ddf45148133a0cb1c405e9aefb17ea57c3f [file] [log] [blame]
Wu Zhangjin1b93b3c2009-10-14 18:12:16 +08001/*
Wu Zhangjin1b93b3c2009-10-14 18:12:16 +08002 * Copyright 2001 MontaVista Software Inc.
Wu Zhangjin1e1a77d2010-06-16 15:52:20 +08003 * Author: Matt Porter <mporter@mvista.com>
Wu Zhangjin1b93b3c2009-10-14 18:12:16 +08004 *
Wu Zhangjinf7a904d2010-01-04 17:16:51 +08005 * Copyright (C) 2009 Lemote, Inc.
6 * Author: Wu Zhangjin <wuzhangjin@gmail.com>
Wu Zhangjin1b93b3c2009-10-14 18:12:16 +08007 *
Ralf Baechle70342282013-01-22 12:59:30 +01008 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
Wu Zhangjin1b93b3c2009-10-14 18:12:16 +080010 * Free Software Foundation; either version 2 of the License, or (at your
11 * option) any later version.
12 */
13
14#include <linux/types.h>
15#include <linux/kernel.h>
16
17#include <asm/addrspace.h>
18
Wu Zhangjin1e1a77d2010-06-16 15:52:20 +080019/*
20 * These two variables specify the free mem region
Wu Zhangjin1b93b3c2009-10-14 18:12:16 +080021 * that can be used for temporary malloc area
22 */
23unsigned long free_mem_ptr;
24unsigned long free_mem_end_ptr;
Wu Zhangjin1b93b3c2009-10-14 18:12:16 +080025
26/* The linker tells us where the image is. */
27extern unsigned char __image_begin, __image_end;
Wu Zhangjin1b93b3c2009-10-14 18:12:16 +080028
29/* debug interfaces */
30extern void puts(const char *s);
31extern void puthex(unsigned long long val);
32
33void error(char *x)
34{
35 puts("\n\n");
36 puts(x);
37 puts("\n\n -- System halted");
38
39 while (1)
40 ; /* Halt */
41}
42
43/* activate the code for pre-boot environment */
44#define STATIC static
45
Florian Fainelli4e23eb62013-09-11 11:51:41 +010046#ifdef CONFIG_KERNEL_GZIP
Wu Zhangjin1b93b3c2009-10-14 18:12:16 +080047#include "../../../../lib/decompress_inflate.c"
48#endif
49
50#ifdef CONFIG_KERNEL_BZIP2
Wu Zhangjin1b93b3c2009-10-14 18:12:16 +080051#include "../../../../lib/decompress_bunzip2.c"
52#endif
53
Florian Fainelli31c48672013-09-16 16:55:20 +010054#ifdef CONFIG_KERNEL_LZ4
55#include "../../../../lib/decompress_unlz4.c"
56#endif
57
Wu Zhangjin1b93b3c2009-10-14 18:12:16 +080058#ifdef CONFIG_KERNEL_LZMA
59#include "../../../../lib/decompress_unlzma.c"
60#endif
61
Wu Zhangjinfe1d45e2010-01-15 20:34:46 +080062#ifdef CONFIG_KERNEL_LZO
63#include "../../../../lib/decompress_unlzo.c"
64#endif
65
Florian Fainelli4e23eb62013-09-11 11:51:41 +010066#ifdef CONFIG_KERNEL_XZ
67#include "../../../../lib/decompress_unxz.c"
68#endif
69
Wu Zhangjin1b93b3c2009-10-14 18:12:16 +080070void decompress_kernel(unsigned long boot_heap_start)
71{
Wu Zhangjin1e1a77d2010-06-16 15:52:20 +080072 unsigned long zimage_start, zimage_size;
Wu Zhangjin1b93b3c2009-10-14 18:12:16 +080073
Wu Zhangjin1e1a77d2010-06-16 15:52:20 +080074 zimage_start = (unsigned long)(&__image_begin);
Wu Zhangjin1b93b3c2009-10-14 18:12:16 +080075 zimage_size = (unsigned long)(&__image_end) -
76 (unsigned long)(&__image_begin);
77
Wu Zhangjin1b93b3c2009-10-14 18:12:16 +080078 puts("zimage at: ");
Wu Zhangjin1e1a77d2010-06-16 15:52:20 +080079 puthex(zimage_start);
Wu Zhangjin1b93b3c2009-10-14 18:12:16 +080080 puts(" ");
Wu Zhangjin1e1a77d2010-06-16 15:52:20 +080081 puthex(zimage_size + zimage_start);
Wu Zhangjin1b93b3c2009-10-14 18:12:16 +080082 puts("\n");
83
Wu Zhangjin1e1a77d2010-06-16 15:52:20 +080084 /* This area are prepared for mallocing when decompressing */
Wu Zhangjin1b93b3c2009-10-14 18:12:16 +080085 free_mem_ptr = boot_heap_start;
86 free_mem_end_ptr = boot_heap_start + BOOT_HEAP_SIZE;
87
Wu Zhangjin1e1a77d2010-06-16 15:52:20 +080088 /* Display standard Linux/MIPS boot prompt */
Wu Zhangjin1b93b3c2009-10-14 18:12:16 +080089 puts("Uncompressing Linux at load address ");
90 puthex(VMLINUX_LOAD_ADDRESS_ULL);
91 puts("\n");
Wu Zhangjin1e1a77d2010-06-16 15:52:20 +080092
Wu Zhangjin1b93b3c2009-10-14 18:12:16 +080093 /* Decompress the kernel with according algorithm */
Wu Zhangjin1e1a77d2010-06-16 15:52:20 +080094 decompress((char *)zimage_start, zimage_size, 0, 0,
Wu Zhangjin1b93b3c2009-10-14 18:12:16 +080095 (void *)VMLINUX_LOAD_ADDRESS_ULL, 0, error);
Wu Zhangjin1e1a77d2010-06-16 15:52:20 +080096
97 /* FIXME: should we flush cache here? */
Wu Zhangjin1b93b3c2009-10-14 18:12:16 +080098 puts("Now, booting the kernel...\n");
99}