Wu Zhangjin | 1b93b3c | 2009-10-14 18:12:16 +0800 | [diff] [blame] | 1 | /* |
Wu Zhangjin | 1b93b3c | 2009-10-14 18:12:16 +0800 | [diff] [blame] | 2 | * Copyright 2001 MontaVista Software Inc. |
Wu Zhangjin | 1e1a77d | 2010-06-16 15:52:20 +0800 | [diff] [blame] | 3 | * Author: Matt Porter <mporter@mvista.com> |
Wu Zhangjin | 1b93b3c | 2009-10-14 18:12:16 +0800 | [diff] [blame] | 4 | * |
Wu Zhangjin | f7a904d | 2010-01-04 17:16:51 +0800 | [diff] [blame] | 5 | * Copyright (C) 2009 Lemote, Inc. |
| 6 | * Author: Wu Zhangjin <wuzhangjin@gmail.com> |
Wu Zhangjin | 1b93b3c | 2009-10-14 18:12:16 +0800 | [diff] [blame] | 7 | * |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 8 | * 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 Zhangjin | 1b93b3c | 2009-10-14 18:12:16 +0800 | [diff] [blame] | 10 | * 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 Jarno | 29593fd | 2014-07-20 19:58:23 +0200 | [diff] [blame] | 16 | #include <linux/string.h> |
Wu Zhangjin | 1b93b3c | 2009-10-14 18:12:16 +0800 | [diff] [blame] | 17 | |
| 18 | #include <asm/addrspace.h> |
| 19 | |
Wu Zhangjin | 1e1a77d | 2010-06-16 15:52:20 +0800 | [diff] [blame] | 20 | /* |
| 21 | * These two variables specify the free mem region |
Wu Zhangjin | 1b93b3c | 2009-10-14 18:12:16 +0800 | [diff] [blame] | 22 | * that can be used for temporary malloc area |
| 23 | */ |
| 24 | unsigned long free_mem_ptr; |
| 25 | unsigned long free_mem_end_ptr; |
Wu Zhangjin | 1b93b3c | 2009-10-14 18:12:16 +0800 | [diff] [blame] | 26 | |
| 27 | /* The linker tells us where the image is. */ |
| 28 | extern unsigned char __image_begin, __image_end; |
Wu Zhangjin | 1b93b3c | 2009-10-14 18:12:16 +0800 | [diff] [blame] | 29 | |
| 30 | /* debug interfaces */ |
Wu Zhangjin | 7ae7ef3 | 2010-12-25 23:11:49 +0800 | [diff] [blame] | 31 | #ifdef CONFIG_DEBUG_ZBOOT |
Wu Zhangjin | 1b93b3c | 2009-10-14 18:12:16 +0800 | [diff] [blame] | 32 | extern void puts(const char *s); |
| 33 | extern void puthex(unsigned long long val); |
Wu Zhangjin | 7ae7ef3 | 2010-12-25 23:11:49 +0800 | [diff] [blame] | 34 | #else |
| 35 | #define puts(s) do {} while (0) |
| 36 | #define puthex(val) do {} while (0) |
| 37 | #endif |
Wu Zhangjin | 1b93b3c | 2009-10-14 18:12:16 +0800 | [diff] [blame] | 38 | |
| 39 | void 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 Fainelli | 4e23eb6 | 2013-09-11 11:51:41 +0100 | [diff] [blame] | 52 | #ifdef CONFIG_KERNEL_GZIP |
Wu Zhangjin | 1b93b3c | 2009-10-14 18:12:16 +0800 | [diff] [blame] | 53 | #include "../../../../lib/decompress_inflate.c" |
| 54 | #endif |
| 55 | |
| 56 | #ifdef CONFIG_KERNEL_BZIP2 |
Wu Zhangjin | 1b93b3c | 2009-10-14 18:12:16 +0800 | [diff] [blame] | 57 | #include "../../../../lib/decompress_bunzip2.c" |
| 58 | #endif |
| 59 | |
Florian Fainelli | 31c4867 | 2013-09-16 16:55:20 +0100 | [diff] [blame] | 60 | #ifdef CONFIG_KERNEL_LZ4 |
| 61 | #include "../../../../lib/decompress_unlz4.c" |
| 62 | #endif |
| 63 | |
Wu Zhangjin | 1b93b3c | 2009-10-14 18:12:16 +0800 | [diff] [blame] | 64 | #ifdef CONFIG_KERNEL_LZMA |
| 65 | #include "../../../../lib/decompress_unlzma.c" |
| 66 | #endif |
| 67 | |
Wu Zhangjin | fe1d45e | 2010-01-15 20:34:46 +0800 | [diff] [blame] | 68 | #ifdef CONFIG_KERNEL_LZO |
| 69 | #include "../../../../lib/decompress_unlzo.c" |
| 70 | #endif |
| 71 | |
Florian Fainelli | 4e23eb6 | 2013-09-11 11:51:41 +0100 | [diff] [blame] | 72 | #ifdef CONFIG_KERNEL_XZ |
| 73 | #include "../../../../lib/decompress_unxz.c" |
| 74 | #endif |
| 75 | |
Ben Chan | 3b628ca | 2014-06-24 16:00:17 -0700 | [diff] [blame] | 76 | unsigned long __stack_chk_guard; |
| 77 | |
| 78 | void __stack_chk_guard_setup(void) |
| 79 | { |
| 80 | __stack_chk_guard = 0x000a0dff; |
| 81 | } |
| 82 | |
| 83 | void __stack_chk_fail(void) |
| 84 | { |
| 85 | error("stack-protector: Kernel stack is corrupted\n"); |
| 86 | } |
| 87 | |
Wu Zhangjin | 1b93b3c | 2009-10-14 18:12:16 +0800 | [diff] [blame] | 88 | void decompress_kernel(unsigned long boot_heap_start) |
| 89 | { |
Wu Zhangjin | 1e1a77d | 2010-06-16 15:52:20 +0800 | [diff] [blame] | 90 | unsigned long zimage_start, zimage_size; |
Wu Zhangjin | 1b93b3c | 2009-10-14 18:12:16 +0800 | [diff] [blame] | 91 | |
Ben Chan | 3b628ca | 2014-06-24 16:00:17 -0700 | [diff] [blame] | 92 | __stack_chk_guard_setup(); |
| 93 | |
Wu Zhangjin | 1e1a77d | 2010-06-16 15:52:20 +0800 | [diff] [blame] | 94 | zimage_start = (unsigned long)(&__image_begin); |
Wu Zhangjin | 1b93b3c | 2009-10-14 18:12:16 +0800 | [diff] [blame] | 95 | zimage_size = (unsigned long)(&__image_end) - |
| 96 | (unsigned long)(&__image_begin); |
| 97 | |
Wu Zhangjin | 1b93b3c | 2009-10-14 18:12:16 +0800 | [diff] [blame] | 98 | puts("zimage at: "); |
Wu Zhangjin | 1e1a77d | 2010-06-16 15:52:20 +0800 | [diff] [blame] | 99 | puthex(zimage_start); |
Wu Zhangjin | 1b93b3c | 2009-10-14 18:12:16 +0800 | [diff] [blame] | 100 | puts(" "); |
Wu Zhangjin | 1e1a77d | 2010-06-16 15:52:20 +0800 | [diff] [blame] | 101 | puthex(zimage_size + zimage_start); |
Wu Zhangjin | 1b93b3c | 2009-10-14 18:12:16 +0800 | [diff] [blame] | 102 | puts("\n"); |
| 103 | |
Wu Zhangjin | 1e1a77d | 2010-06-16 15:52:20 +0800 | [diff] [blame] | 104 | /* This area are prepared for mallocing when decompressing */ |
Wu Zhangjin | 1b93b3c | 2009-10-14 18:12:16 +0800 | [diff] [blame] | 105 | free_mem_ptr = boot_heap_start; |
| 106 | free_mem_end_ptr = boot_heap_start + BOOT_HEAP_SIZE; |
| 107 | |
Wu Zhangjin | 1e1a77d | 2010-06-16 15:52:20 +0800 | [diff] [blame] | 108 | /* Display standard Linux/MIPS boot prompt */ |
Wu Zhangjin | 1b93b3c | 2009-10-14 18:12:16 +0800 | [diff] [blame] | 109 | puts("Uncompressing Linux at load address "); |
| 110 | puthex(VMLINUX_LOAD_ADDRESS_ULL); |
| 111 | puts("\n"); |
Wu Zhangjin | 1e1a77d | 2010-06-16 15:52:20 +0800 | [diff] [blame] | 112 | |
Wu Zhangjin | 1b93b3c | 2009-10-14 18:12:16 +0800 | [diff] [blame] | 113 | /* Decompress the kernel with according algorithm */ |
Yinghai Lu | 2d3862d | 2015-09-09 15:39:12 -0700 | [diff] [blame] | 114 | __decompress((char *)zimage_start, zimage_size, 0, 0, |
| 115 | (void *)VMLINUX_LOAD_ADDRESS_ULL, 0, 0, error); |
Wu Zhangjin | 1e1a77d | 2010-06-16 15:52:20 +0800 | [diff] [blame] | 116 | |
| 117 | /* FIXME: should we flush cache here? */ |
Wu Zhangjin | 1b93b3c | 2009-10-14 18:12:16 +0800 | [diff] [blame] | 118 | puts("Now, booting the kernel...\n"); |
| 119 | } |