]> bbs.cooldavid.org Git - net-next-2.6.git/blame - arch/mips/boot/compressed/decompress.c
MIPS: Cleanup and Fixup of compressed kernel support
[net-next-2.6.git] / arch / mips / boot / compressed / decompress.c
CommitLineData
1b93b3c3
WZ
1/*
2 * Misc. bootloader code for many machines.
3 *
4 * Copyright 2001 MontaVista Software Inc.
5 * Author: Matt Porter <mporter@mvista.com> Derived from
6 * arch/ppc/boot/prep/misc.c
7 *
8 * Copyright (C) 2009 Lemote, Inc. & Institute of Computing Technology
9 * Author: Wu Zhangjin <wuzj@lemote.com>
10 *
11 * This program is free software; you can redistribute it and/or modify it
12 * under the terms of the GNU General Public License as published by the
13 * Free Software Foundation; either version 2 of the License, or (at your
14 * option) any later version.
15 */
16
17#include <linux/types.h>
18#include <linux/kernel.h>
19
20#include <asm/addrspace.h>
21
22/* These two variables specify the free mem region
23 * that can be used for temporary malloc area
24 */
25unsigned long free_mem_ptr;
26unsigned long free_mem_end_ptr;
27char *zimage_start;
28
29/* The linker tells us where the image is. */
30extern unsigned char __image_begin, __image_end;
1b93b3c3
WZ
31
32/* debug interfaces */
33extern void puts(const char *s);
34extern void puthex(unsigned long long val);
35
36void error(char *x)
37{
38 puts("\n\n");
39 puts(x);
40 puts("\n\n -- System halted");
41
42 while (1)
43 ; /* Halt */
44}
45
46/* activate the code for pre-boot environment */
47#define STATIC static
48
49#ifdef CONFIG_KERNEL_GZIP
50void *memcpy(void *dest, const void *src, size_t n)
51{
52 int i;
53 const char *s = src;
54 char *d = dest;
55
56 for (i = 0; i < n; i++)
57 d[i] = s[i];
58 return dest;
59}
60#include "../../../../lib/decompress_inflate.c"
61#endif
62
63#ifdef CONFIG_KERNEL_BZIP2
64void *memset(void *s, int c, size_t n)
65{
66 int i;
67 char *ss = s;
68
69 for (i = 0; i < n; i++)
70 ss[i] = c;
71 return s;
72}
73#include "../../../../lib/decompress_bunzip2.c"
74#endif
75
76#ifdef CONFIG_KERNEL_LZMA
77#include "../../../../lib/decompress_unlzma.c"
78#endif
79
80void decompress_kernel(unsigned long boot_heap_start)
81{
82 int zimage_size;
83
84 /*
85 * We link ourself to an arbitrary low address. When we run, we
86 * relocate outself to that address. __image_beign points to
87 * the part of the image where the zImage is. -- Tom
88 */
89 zimage_start = (char *)(unsigned long)(&__image_begin);
90 zimage_size = (unsigned long)(&__image_end) -
91 (unsigned long)(&__image_begin);
92
93 /*
94 * The zImage and initrd will be between start and _end, so they've
95 * already been moved once. We're good to go now. -- Tom
96 */
97 puts("zimage at: ");
98 puthex((unsigned long)zimage_start);
99 puts(" ");
100 puthex((unsigned long)(zimage_size + zimage_start));
101 puts("\n");
102
1b93b3c3
WZ
103 /* this area are prepared for mallocing when decompressing */
104 free_mem_ptr = boot_heap_start;
105 free_mem_end_ptr = boot_heap_start + BOOT_HEAP_SIZE;
106
107 /* Display standard Linux/MIPS boot prompt for kernel args */
108 puts("Uncompressing Linux at load address ");
109 puthex(VMLINUX_LOAD_ADDRESS_ULL);
110 puts("\n");
111 /* Decompress the kernel with according algorithm */
112 decompress(zimage_start, zimage_size, 0, 0,
113 (void *)VMLINUX_LOAD_ADDRESS_ULL, 0, error);
114 /* FIXME: is there a need to flush cache here? */
115 puts("Now, booting the kernel...\n");
116}