4 * This is a collection of several routines from gzip-1.0.3
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 #include <linux/compiler.h> /* for inline */
22 #include <linux/types.h> /* for size_t */
23 #include <linux/stddef.h> /* for NULL */
24 #include <asm/string.h>
26 #ifdef STANDALONE_DEBUG
30 static void putstr(const char *ptr
);
32 #include <mach/uncompress.h>
34 #ifdef CONFIG_DEBUG_ICEDCC
38 static void icedcc_putc(int ch
)
40 int status
, i
= 0x4000000;
46 asm volatile ("mrc p14, 0, %0, c0, c1, 0" : "=r" (status
));
47 } while (status
& (1 << 29));
49 asm("mcr p14, 0, %0, c0, c5, 0" : : "r" (ch
));
51 #elif defined(CONFIG_CPU_XSCALE)
53 static void icedcc_putc(int ch
)
55 int status
, i
= 0x4000000;
61 asm volatile ("mrc p14, 0, %0, c14, c0, 0" : "=r" (status
));
62 } while (status
& (1 << 28));
64 asm("mcr p14, 0, %0, c8, c0, 0" : : "r" (ch
));
69 static void icedcc_putc(int ch
)
71 int status
, i
= 0x4000000;
77 asm volatile ("mrc p14, 0, %0, c0, c0, 0" : "=r" (status
));
80 asm("mcr p14, 0, %0, c1, c0, 0" : : "r" (ch
));
85 #define putc(ch) icedcc_putc(ch)
86 #define flush() do { } while (0)
89 static void putstr(const char *ptr
)
93 while ((c
= *ptr
++) != '\0') {
104 #define __ptr_t void *
106 #define memzero(s,n) __memzero(s,n)
109 * Optimised C version of memzero for the ARM.
111 void __memzero (__ptr_t s
, size_t n
)
113 union { void *vp
; unsigned long *ulp
; unsigned char *ucp
; } u
;
118 for (i
= n
>> 5; i
> 0; i
--) {
153 static inline __ptr_t
memcpy(__ptr_t __dest
, __const __ptr_t __src
,
157 unsigned char *d
= (unsigned char *)__dest
, *s
= (unsigned char *)__src
;
159 for (i
= __n
>> 3; i
> 0; i
--) {
191 #define OF(args) args
192 #define STATIC static
194 typedef unsigned char uch
;
195 typedef unsigned short ush
;
196 typedef unsigned long ulg
;
198 #define WSIZE 0x8000 /* Window size must be at least 32k, */
199 /* and a power of two */
201 static uch
*inbuf
; /* input buffer */
202 static uch window
[WSIZE
]; /* Sliding window buffer */
204 static unsigned insize
; /* valid bytes in inbuf */
205 static unsigned inptr
; /* index of next byte to be processed in inbuf */
206 static unsigned outcnt
; /* bytes in output buffer */
209 #define ASCII_FLAG 0x01 /* bit 0 set: file probably ascii text */
210 #define CONTINUATION 0x02 /* bit 1 set: continuation of multi-part gzip file */
211 #define EXTRA_FIELD 0x04 /* bit 2 set: extra field present */
212 #define ORIG_NAME 0x08 /* bit 3 set: original file name present */
213 #define COMMENT 0x10 /* bit 4 set: file comment present */
214 #define ENCRYPTED 0x20 /* bit 5 set: file is encrypted */
215 #define RESERVED 0xC0 /* bit 6,7: reserved */
217 #define get_byte() (inptr < insize ? inbuf[inptr++] : fill_inbuf())
219 /* Diagnostic functions */
221 # define Assert(cond,msg) {if(!(cond)) error(msg);}
222 # define Trace(x) fprintf x
223 # define Tracev(x) {if (verbose) fprintf x ;}
224 # define Tracevv(x) {if (verbose>1) fprintf x ;}
225 # define Tracec(c,x) {if (verbose && (c)) fprintf x ;}
226 # define Tracecv(c,x) {if (verbose>1 && (c)) fprintf x ;}
228 # define Assert(cond,msg)
233 # define Tracecv(c,x)
236 static int fill_inbuf(void);
237 static void flush_window(void);
238 static void error(char *m
);
240 extern char input_data
[];
241 extern char input_data_end
[];
243 static uch
*output_data
;
244 static ulg output_ptr
;
245 static ulg bytes_out
;
247 static void error(char *m
);
249 static void putstr(const char *);
252 static ulg free_mem_ptr
;
253 static ulg free_mem_end_ptr
;
255 #ifdef STANDALONE_DEBUG
256 #define NO_INFLATE_MALLOC
259 #define ARCH_HAS_DECOMP_WDOG
261 #include "../../../../lib/inflate.c"
263 /* ===========================================================================
264 * Fill the input buffer. This is called only when the buffer is empty
265 * and at least one byte is really needed.
270 error("ran out of input data");
273 insize
= &input_data_end
[0] - &input_data
[0];
279 /* ===========================================================================
280 * Write the output window window[0..outcnt-1] and update crc and bytes_out.
281 * (Used for the decompressed data only.)
283 void flush_window(void)
290 out
= &output_data
[output_ptr
];
291 for (n
= 0; n
< outcnt
; n
++) {
293 c
= crc_32_tab
[((int)c
^ ch
) & 0xff] ^ (c
>> 8);
296 bytes_out
+= (ulg
)outcnt
;
297 output_ptr
+= (ulg
)outcnt
;
303 #define arch_error(x)
306 static void error(char *x
)
312 putstr("\n\n -- System halted");
317 #ifndef STANDALONE_DEBUG
320 decompress_kernel(ulg output_start
, ulg free_mem_ptr_p
, ulg free_mem_ptr_end_p
,
323 output_data
= (uch
*)output_start
; /* Points to kernel start */
324 free_mem_ptr
= free_mem_ptr_p
;
325 free_mem_end_ptr
= free_mem_ptr_end_p
;
326 __machine_arch_type
= arch_id
;
331 putstr("Uncompressing Linux...");
333 putstr(" done, booting the kernel.\n");
338 char output_buffer
[1500*1024];
342 output_data
= output_buffer
;
345 putstr("Uncompressing Linux...");