blob: 3a76927458681d3785e2ed558a88961ba5b18532 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * arch/m32r/boot/compressed/misc.c
3 *
4 * This is a collection of several routines from gzip-1.0.3
5 * adapted for Linux.
6 *
7 * malloc by Hannu Savolainen 1993 and Matthias Urlichs 1994
8 *
9 * Adapted for SH by Stuart Menefy, Aug 1999
10 *
11 * 2003-02-12: Support M32R by Takeo Takahashi
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 */
13
Linus Torvalds1da177e2005-04-16 15:20:36 -070014/*
15 * gzip declarations
16 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#define STATIC static
18
19#undef memset
20#undef memcpy
21#define memzero(s, n) memset ((s), 0, (n))
22
Linus Torvalds1da177e2005-04-16 15:20:36 -070023static void error(char *m);
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include "m32r_sio.c"
26
Linus Torvalds1da177e2005-04-16 15:20:36 -070027static unsigned long free_mem_ptr;
28static unsigned long free_mem_end_ptr;
29
Hirokazu Takata337214e2009-10-15 09:21:56 +090030#ifdef CONFIG_KERNEL_BZIP2
Geert Uytterhoeven9a75c6e2012-07-17 15:48:05 -070031void *memset(void *s, int c, size_t n)
Linus Torvalds1da177e2005-04-16 15:20:36 -070032{
Hirokazu Takata337214e2009-10-15 09:21:56 +090033 char *ss = s;
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Hirokazu Takata337214e2009-10-15 09:21:56 +090035 while (n--)
36 *ss++ = c;
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 return s;
38}
Hirokazu Takata337214e2009-10-15 09:21:56 +090039#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Hirokazu Takata337214e2009-10-15 09:21:56 +090041#ifdef CONFIG_KERNEL_GZIP
Geert Uytterhoevena8abbca2012-07-17 15:48:04 -070042void *memcpy(void *dest, const void *src, size_t n)
43{
44 char *d = dest;
45 const char *s = src;
46 while (n--)
47 *d++ = *s++;
48
49 return dest;
50}
51
Hirokazu Takata337214e2009-10-15 09:21:56 +090052#define BOOT_HEAP_SIZE 0x10000
53#include "../../../../lib/decompress_inflate.c"
54#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Hirokazu Takata337214e2009-10-15 09:21:56 +090056#ifdef CONFIG_KERNEL_BZIP2
57#define BOOT_HEAP_SIZE 0x400000
58#include "../../../../lib/decompress_bunzip2.c"
59#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Hirokazu Takata337214e2009-10-15 09:21:56 +090061#ifdef CONFIG_KERNEL_LZMA
62#define BOOT_HEAP_SIZE 0x10000
63#include "../../../../lib/decompress_unlzma.c"
64#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
66static void error(char *x)
67{
68 puts("\n\n");
69 puts(x);
70 puts("\n\n -- System halted");
71
72 while(1); /* Halt */
73}
74
Linus Torvalds1da177e2005-04-16 15:20:36 -070075void
76decompress_kernel(int mmu_on, unsigned char *zimage_data,
77 unsigned int zimage_len, unsigned long heap)
78{
Hirokazu Takata337214e2009-10-15 09:21:56 +090079 unsigned char *input_data = zimage_data;
80 int input_len = zimage_len;
81 unsigned char *output_data;
82
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 output_data = (unsigned char *)CONFIG_MEMORY_START + 0x2000
84 + (mmu_on ? 0x80000000 : 0);
85 free_mem_ptr = heap;
Hirokazu Takata337214e2009-10-15 09:21:56 +090086 free_mem_end_ptr = free_mem_ptr + BOOT_HEAP_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Hirokazu Takata337214e2009-10-15 09:21:56 +090088 puts("\nDecompressing Linux... ");
Yinghai Lu2d3862d2015-09-09 15:39:12 -070089 __decompress(input_data, input_len, NULL, NULL, output_data, 0,
90 NULL, error);
Hirokazu Takata337214e2009-10-15 09:21:56 +090091 puts("done.\nBooting the kernel.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070092}