blob: fdf99e9dd4c3966e0b16c5d59cb9ae46d5af1b7f [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>
Jonas Gorskib8f54f22016-06-20 11:27:36 +020017#include <linux/libfdt.h>
Wu Zhangjin1b93b3c2009-10-14 18:12:16 +080018
19#include <asm/addrspace.h>
20
Wu Zhangjin1e1a77d2010-06-16 15:52:20 +080021/*
22 * These two variables specify the free mem region
Wu Zhangjin1b93b3c2009-10-14 18:12:16 +080023 * that can be used for temporary malloc area
24 */
25unsigned long free_mem_ptr;
26unsigned long free_mem_end_ptr;
Wu Zhangjin1b93b3c2009-10-14 18:12:16 +080027
28/* The linker tells us where the image is. */
29extern unsigned char __image_begin, __image_end;
Wu Zhangjin1b93b3c2009-10-14 18:12:16 +080030
31/* debug interfaces */
Wu Zhangjin7ae7ef32010-12-25 23:11:49 +080032#ifdef CONFIG_DEBUG_ZBOOT
Wu Zhangjin1b93b3c2009-10-14 18:12:16 +080033extern void puts(const char *s);
34extern void puthex(unsigned long long val);
Wu Zhangjin7ae7ef32010-12-25 23:11:49 +080035#else
36#define puts(s) do {} while (0)
37#define puthex(val) do {} while (0)
38#endif
Wu Zhangjin1b93b3c2009-10-14 18:12:16 +080039
Jonas Gorskib8f54f22016-06-20 11:27:36 +020040extern char __appended_dtb[];
41
Wu Zhangjin1b93b3c2009-10-14 18:12:16 +080042void error(char *x)
43{
44 puts("\n\n");
45 puts(x);
46 puts("\n\n -- System halted");
47
48 while (1)
49 ; /* Halt */
50}
51
52/* activate the code for pre-boot environment */
53#define STATIC static
54
Florian Fainelli4e23eb62013-09-11 11:51:41 +010055#ifdef CONFIG_KERNEL_GZIP
Wu Zhangjin1b93b3c2009-10-14 18:12:16 +080056#include "../../../../lib/decompress_inflate.c"
57#endif
58
59#ifdef CONFIG_KERNEL_BZIP2
Wu Zhangjin1b93b3c2009-10-14 18:12:16 +080060#include "../../../../lib/decompress_bunzip2.c"
61#endif
62
Florian Fainelli31c48672013-09-16 16:55:20 +010063#ifdef CONFIG_KERNEL_LZ4
64#include "../../../../lib/decompress_unlz4.c"
65#endif
66
Wu Zhangjin1b93b3c2009-10-14 18:12:16 +080067#ifdef CONFIG_KERNEL_LZMA
68#include "../../../../lib/decompress_unlzma.c"
69#endif
70
Wu Zhangjinfe1d45e2010-01-15 20:34:46 +080071#ifdef CONFIG_KERNEL_LZO
72#include "../../../../lib/decompress_unlzo.c"
73#endif
74
Florian Fainelli4e23eb62013-09-11 11:51:41 +010075#ifdef CONFIG_KERNEL_XZ
76#include "../../../../lib/decompress_unxz.c"
77#endif
78
Ben Chan3b628ca2014-06-24 16:00:17 -070079unsigned long __stack_chk_guard;
80
81void __stack_chk_guard_setup(void)
82{
83 __stack_chk_guard = 0x000a0dff;
84}
85
86void __stack_chk_fail(void)
87{
88 error("stack-protector: Kernel stack is corrupted\n");
89}
90
Wu Zhangjin1b93b3c2009-10-14 18:12:16 +080091void decompress_kernel(unsigned long boot_heap_start)
92{
Wu Zhangjin1e1a77d2010-06-16 15:52:20 +080093 unsigned long zimage_start, zimage_size;
Wu Zhangjin1b93b3c2009-10-14 18:12:16 +080094
Ben Chan3b628ca2014-06-24 16:00:17 -070095 __stack_chk_guard_setup();
96
Wu Zhangjin1e1a77d2010-06-16 15:52:20 +080097 zimage_start = (unsigned long)(&__image_begin);
Wu Zhangjin1b93b3c2009-10-14 18:12:16 +080098 zimage_size = (unsigned long)(&__image_end) -
99 (unsigned long)(&__image_begin);
100
Wu Zhangjin1b93b3c2009-10-14 18:12:16 +0800101 puts("zimage at: ");
Wu Zhangjin1e1a77d2010-06-16 15:52:20 +0800102 puthex(zimage_start);
Wu Zhangjin1b93b3c2009-10-14 18:12:16 +0800103 puts(" ");
Wu Zhangjin1e1a77d2010-06-16 15:52:20 +0800104 puthex(zimage_size + zimage_start);
Wu Zhangjin1b93b3c2009-10-14 18:12:16 +0800105 puts("\n");
106
Wu Zhangjin1e1a77d2010-06-16 15:52:20 +0800107 /* This area are prepared for mallocing when decompressing */
Wu Zhangjin1b93b3c2009-10-14 18:12:16 +0800108 free_mem_ptr = boot_heap_start;
109 free_mem_end_ptr = boot_heap_start + BOOT_HEAP_SIZE;
110
Wu Zhangjin1e1a77d2010-06-16 15:52:20 +0800111 /* Display standard Linux/MIPS boot prompt */
Wu Zhangjin1b93b3c2009-10-14 18:12:16 +0800112 puts("Uncompressing Linux at load address ");
113 puthex(VMLINUX_LOAD_ADDRESS_ULL);
114 puts("\n");
Wu Zhangjin1e1a77d2010-06-16 15:52:20 +0800115
Wu Zhangjin1b93b3c2009-10-14 18:12:16 +0800116 /* Decompress the kernel with according algorithm */
Yinghai Lu2d3862d2015-09-09 15:39:12 -0700117 __decompress((char *)zimage_start, zimage_size, 0, 0,
118 (void *)VMLINUX_LOAD_ADDRESS_ULL, 0, 0, error);
Wu Zhangjin1e1a77d2010-06-16 15:52:20 +0800119
Jonas Gorskib8f54f22016-06-20 11:27:36 +0200120 if (IS_ENABLED(CONFIG_MIPS_RAW_APPENDED_DTB) &&
121 fdt_magic((void *)&__appended_dtb) == FDT_MAGIC) {
122 unsigned int image_size, dtb_size;
123
124 dtb_size = fdt_totalsize((void *)&__appended_dtb);
125
126 /* last four bytes is always image size in little endian */
127 image_size = le32_to_cpup((void *)&__image_end - 4);
128
129 /* copy dtb to where the booted kernel will expect it */
130 memcpy((void *)VMLINUX_LOAD_ADDRESS_ULL + image_size,
131 __appended_dtb, dtb_size);
132 }
133
Wu Zhangjin1e1a77d2010-06-16 15:52:20 +0800134 /* FIXME: should we flush cache here? */
Wu Zhangjin1b93b3c2009-10-14 18:12:16 +0800135 puts("Now, booting the kernel...\n");
136}