arm: add support for LZO-compressed kernels
[linux-2.6/x86.git] / arch / arm / boot / compressed / misc.c
blob7e0fe4d42c7b4f8965c08661206736b6eea8c659
1 /*
2 * misc.c
3 *
4 * This is a collection of several routines from gzip-1.0.3
5 * adapted for Linux.
7 * malloc by Hannu Savolainen 1993 and Matthias Urlichs 1994
9 * Modified for ARM Linux by Russell King
11 * Nicolas Pitre <nico@visuaide.com> 1999/04/14 :
12 * For this code to run directly from Flash, all constant variables must
13 * be marked with 'const' and all other variables initialized at run-time
14 * only. This way all non constant variables will end up in the bss segment,
15 * which should point to addresses in RAM and cleared to 0 on start.
16 * This allows for a much quicker boot time.
19 unsigned int __machine_arch_type;
21 #define _LINUX_STRING_H_
23 #include <linux/compiler.h> /* for inline */
24 #include <linux/types.h> /* for size_t */
25 #include <linux/stddef.h> /* for NULL */
26 #include <asm/string.h>
27 #include <linux/linkage.h>
29 #include <asm/unaligned.h>
31 #ifdef STANDALONE_DEBUG
32 #define putstr printf
33 #else
35 static void putstr(const char *ptr);
37 #include <mach/uncompress.h>
39 #ifdef CONFIG_DEBUG_ICEDCC
41 #ifdef CONFIG_CPU_V6
43 static void icedcc_putc(int ch)
45 int status, i = 0x4000000;
47 do {
48 if (--i < 0)
49 return;
51 asm volatile ("mrc p14, 0, %0, c0, c1, 0" : "=r" (status));
52 } while (status & (1 << 29));
54 asm("mcr p14, 0, %0, c0, c5, 0" : : "r" (ch));
56 #elif defined(CONFIG_CPU_XSCALE)
58 static void icedcc_putc(int ch)
60 int status, i = 0x4000000;
62 do {
63 if (--i < 0)
64 return;
66 asm volatile ("mrc p14, 0, %0, c14, c0, 0" : "=r" (status));
67 } while (status & (1 << 28));
69 asm("mcr p14, 0, %0, c8, c0, 0" : : "r" (ch));
72 #else
74 static void icedcc_putc(int ch)
76 int status, i = 0x4000000;
78 do {
79 if (--i < 0)
80 return;
82 asm volatile ("mrc p14, 0, %0, c0, c0, 0" : "=r" (status));
83 } while (status & 2);
85 asm("mcr p14, 0, %0, c1, c0, 0" : : "r" (ch));
88 #endif
90 #define putc(ch) icedcc_putc(ch)
91 #define flush() do { } while (0)
92 #endif
94 static void putstr(const char *ptr)
96 char c;
98 while ((c = *ptr++) != '\0') {
99 if (c == '\n')
100 putc('\r');
101 putc(c);
104 flush();
107 #endif
109 #define __ptr_t void *
111 #define memzero(s,n) __memzero(s,n)
114 * Optimised C version of memzero for the ARM.
116 void __memzero (__ptr_t s, size_t n)
118 union { void *vp; unsigned long *ulp; unsigned char *ucp; } u;
119 int i;
121 u.vp = s;
123 for (i = n >> 5; i > 0; i--) {
124 *u.ulp++ = 0;
125 *u.ulp++ = 0;
126 *u.ulp++ = 0;
127 *u.ulp++ = 0;
128 *u.ulp++ = 0;
129 *u.ulp++ = 0;
130 *u.ulp++ = 0;
131 *u.ulp++ = 0;
134 if (n & 1 << 4) {
135 *u.ulp++ = 0;
136 *u.ulp++ = 0;
137 *u.ulp++ = 0;
138 *u.ulp++ = 0;
141 if (n & 1 << 3) {
142 *u.ulp++ = 0;
143 *u.ulp++ = 0;
146 if (n & 1 << 2)
147 *u.ulp++ = 0;
149 if (n & 1 << 1) {
150 *u.ucp++ = 0;
151 *u.ucp++ = 0;
154 if (n & 1)
155 *u.ucp++ = 0;
158 static inline __ptr_t memcpy(__ptr_t __dest, __const __ptr_t __src,
159 size_t __n)
161 int i = 0;
162 unsigned char *d = (unsigned char *)__dest, *s = (unsigned char *)__src;
164 for (i = __n >> 3; i > 0; i--) {
165 *d++ = *s++;
166 *d++ = *s++;
167 *d++ = *s++;
168 *d++ = *s++;
169 *d++ = *s++;
170 *d++ = *s++;
171 *d++ = *s++;
172 *d++ = *s++;
175 if (__n & 1 << 2) {
176 *d++ = *s++;
177 *d++ = *s++;
178 *d++ = *s++;
179 *d++ = *s++;
182 if (__n & 1 << 1) {
183 *d++ = *s++;
184 *d++ = *s++;
187 if (__n & 1)
188 *d++ = *s++;
190 return __dest;
194 * gzip delarations
196 #define STATIC static
198 /* Diagnostic functions */
199 #ifdef DEBUG
200 # define Assert(cond,msg) {if(!(cond)) error(msg);}
201 # define Trace(x) fprintf x
202 # define Tracev(x) {if (verbose) fprintf x ;}
203 # define Tracevv(x) {if (verbose>1) fprintf x ;}
204 # define Tracec(c,x) {if (verbose && (c)) fprintf x ;}
205 # define Tracecv(c,x) {if (verbose>1 && (c)) fprintf x ;}
206 #else
207 # define Assert(cond,msg)
208 # define Trace(x)
209 # define Tracev(x)
210 # define Tracevv(x)
211 # define Tracec(c,x)
212 # define Tracecv(c,x)
213 #endif
215 static void error(char *m);
217 extern char input_data[];
218 extern char input_data_end[];
220 static unsigned char *output_data;
221 static unsigned long output_ptr;
223 static void error(char *m);
225 static void putstr(const char *);
227 static unsigned long free_mem_ptr;
228 static unsigned long free_mem_end_ptr;
230 #ifdef STANDALONE_DEBUG
231 #define NO_INFLATE_MALLOC
232 #endif
234 #define ARCH_HAS_DECOMP_WDOG
236 #ifdef CONFIG_KERNEL_GZIP
237 #include "../../../../lib/decompress_inflate.c"
238 #endif
240 #ifdef CONFIG_KERNEL_LZO
241 #include "../../../../lib/decompress_unlzo.c"
242 #endif
244 #ifndef arch_error
245 #define arch_error(x)
246 #endif
248 static void error(char *x)
250 arch_error(x);
252 putstr("\n\n");
253 putstr(x);
254 putstr("\n\n -- System halted");
256 while(1); /* Halt */
259 asmlinkage void __div0(void)
261 error("Attempting division by 0!");
264 #ifndef STANDALONE_DEBUG
266 unsigned long
267 decompress_kernel(unsigned long output_start, unsigned long free_mem_ptr_p,
268 unsigned long free_mem_ptr_end_p,
269 int arch_id)
271 unsigned char *tmp;
273 output_data = (unsigned char *)output_start;
274 free_mem_ptr = free_mem_ptr_p;
275 free_mem_end_ptr = free_mem_ptr_end_p;
276 __machine_arch_type = arch_id;
278 arch_decomp_setup();
280 tmp = (unsigned char *) (((unsigned long)input_data_end) - 4);
281 output_ptr = get_unaligned_le32(tmp);
283 putstr("Uncompressing Linux...");
284 decompress(input_data, input_data_end - input_data,
285 NULL, NULL, output_data, NULL, error);
286 putstr(" done, booting the kernel.\n");
287 return output_ptr;
289 #else
291 char output_buffer[1500*1024];
293 int main()
295 output_data = output_buffer;
297 putstr("Uncompressing Linux...");
298 decompress(input_data, input_data_end - input_data,
299 NULL, NULL, output_data, NULL, error);
300 putstr("done.\n");
301 return 0;
303 #endif