blob: 080cd53bac369158481785fd285733e7d5372e8c [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>
Aurelien Jarno29593fd2014-07-20 19:58:23 +020016#include <linux/string.h>
Wu Zhangjin1b93b3c2009-10-14 18:12:16 +080017
18#include <asm/addrspace.h>
19
Wu Zhangjin1e1a77d2010-06-16 15:52:20 +080020/*
21 * These two variables specify the free mem region
Wu Zhangjin1b93b3c2009-10-14 18:12:16 +080022 * that can be used for temporary malloc area
23 */
24unsigned long free_mem_ptr;
25unsigned long free_mem_end_ptr;
Wu Zhangjin1b93b3c2009-10-14 18:12:16 +080026
27/* The linker tells us where the image is. */
28extern unsigned char __image_begin, __image_end;
Wu Zhangjin1b93b3c2009-10-14 18:12:16 +080029
30/* debug interfaces */
Wu Zhangjin7ae7ef32010-12-25 23:11:49 +080031#ifdef CONFIG_DEBUG_ZBOOT
Wu Zhangjin1b93b3c2009-10-14 18:12:16 +080032extern void puts(const char *s);
33extern void puthex(unsigned long long val);
Wu Zhangjin7ae7ef32010-12-25 23:11:49 +080034#else
35#define puts(s) do {} while (0)
36#define puthex(val) do {} while (0)
37#endif
Wu Zhangjin1b93b3c2009-10-14 18:12:16 +080038
39void error(char *x)
40{
41 puts("\n\n");
42 puts(x);
43 puts("\n\n -- System halted");
44
45 while (1)
46 ; /* Halt */
47}
48
49/* activate the code for pre-boot environment */
50#define STATIC static
51
Florian Fainelli4e23eb62013-09-11 11:51:41 +010052#ifdef CONFIG_KERNEL_GZIP
Wu Zhangjin1b93b3c2009-10-14 18:12:16 +080053#include "../../../../lib/decompress_inflate.c"
54#endif
55
56#ifdef CONFIG_KERNEL_BZIP2
Wu Zhangjin1b93b3c2009-10-14 18:12:16 +080057#include "../../../../lib/decompress_bunzip2.c"
58#endif
59
Florian Fainelli31c48672013-09-16 16:55:20 +010060#ifdef CONFIG_KERNEL_LZ4
61#include "../../../../lib/decompress_unlz4.c"
62#endif
63
Wu Zhangjin1b93b3c2009-10-14 18:12:16 +080064#ifdef CONFIG_KERNEL_LZMA
65#include "../../../../lib/decompress_unlzma.c"
66#endif
67
Wu Zhangjinfe1d45e2010-01-15 20:34:46 +080068#ifdef CONFIG_KERNEL_LZO
69#include "../../../../lib/decompress_unlzo.c"
70#endif
71
Florian Fainelli4e23eb62013-09-11 11:51:41 +010072#ifdef CONFIG_KERNEL_XZ
73#include "../../../../lib/decompress_unxz.c"
74#endif
75
Ben Chan3b628ca2014-06-24 16:00:17 -070076unsigned long __stack_chk_guard;
77
78void __stack_chk_guard_setup(void)
79{
80 __stack_chk_guard = 0x000a0dff;
81}
82
83void __stack_chk_fail(void)
84{
85 error("stack-protector: Kernel stack is corrupted\n");
86}
87
Wu Zhangjin1b93b3c2009-10-14 18:12:16 +080088void decompress_kernel(unsigned long boot_heap_start)
89{
Wu Zhangjin1e1a77d2010-06-16 15:52:20 +080090 unsigned long zimage_start, zimage_size;
Wu Zhangjin1b93b3c2009-10-14 18:12:16 +080091
Ben Chan3b628ca2014-06-24 16:00:17 -070092 __stack_chk_guard_setup();
93
Wu Zhangjin1e1a77d2010-06-16 15:52:20 +080094 zimage_start = (unsigned long)(&__image_begin);
Wu Zhangjin1b93b3c2009-10-14 18:12:16 +080095 zimage_size = (unsigned long)(&__image_end) -
96 (unsigned long)(&__image_begin);
97
Wu Zhangjin1b93b3c2009-10-14 18:12:16 +080098 puts("zimage at: ");
Wu Zhangjin1e1a77d2010-06-16 15:52:20 +080099 puthex(zimage_start);
Wu Zhangjin1b93b3c2009-10-14 18:12:16 +0800100 puts(" ");
Wu Zhangjin1e1a77d2010-06-16 15:52:20 +0800101 puthex(zimage_size + zimage_start);
Wu Zhangjin1b93b3c2009-10-14 18:12:16 +0800102 puts("\n");
103
Wu Zhangjin1e1a77d2010-06-16 15:52:20 +0800104 /* This area are prepared for mallocing when decompressing */
Wu Zhangjin1b93b3c2009-10-14 18:12:16 +0800105 free_mem_ptr = boot_heap_start;
106 free_mem_end_ptr = boot_heap_start + BOOT_HEAP_SIZE;
107
Wu Zhangjin1e1a77d2010-06-16 15:52:20 +0800108 /* Display standard Linux/MIPS boot prompt */
Wu Zhangjin1b93b3c2009-10-14 18:12:16 +0800109 puts("Uncompressing Linux at load address ");
110 puthex(VMLINUX_LOAD_ADDRESS_ULL);
111 puts("\n");
Wu Zhangjin1e1a77d2010-06-16 15:52:20 +0800112
Wu Zhangjin1b93b3c2009-10-14 18:12:16 +0800113 /* Decompress the kernel with according algorithm */
Yinghai Lu2d3862d2015-09-09 15:39:12 -0700114 __decompress((char *)zimage_start, zimage_size, 0, 0,
115 (void *)VMLINUX_LOAD_ADDRESS_ULL, 0, 0, error);
Wu Zhangjin1e1a77d2010-06-16 15:52:20 +0800116
117 /* FIXME: should we flush cache here? */
Wu Zhangjin1b93b3c2009-10-14 18:12:16 +0800118 puts("Now, booting the kernel...\n");
119}