4 * This is a collection of several routines from gzip-1.0.3
7 * malloc by Hannu Savolainen 1993 and Matthias Urlichs 1994
8 * puts by Nick Holloway 1993, better puts by Martin Mares 1995
9 * adaptation for Linux/CRIS Axis Communications AB, 1999
13 /* where the piggybacked kernel image expects itself to live.
14 * it is the same address we use when we network load an uncompressed
15 * image into DRAM, and it is the address the kernel is linked to live
19 #define KERNEL_LOAD_ADR 0x40004000
22 #include <linux/types.h>
23 #include <asm/arch/svinto.h>
32 void* memset(void* s, int c, size_t n);
33 void* memcpy(void* __dest, __const void* __src,
36 #define memzero(s, n) memset ((s), 0, (n))
39 typedef unsigned char uch;
40 typedef unsigned short ush;
41 typedef unsigned long ulg;
43 #define WSIZE 0x8000 /* Window size must be at least 32k, */
44 /* and a power of two */
46 static uch *inbuf; /* input buffer */
47 static uch window[WSIZE]; /* Sliding window buffer */
49 unsigned inptr = 0; /* index of next byte to be processed in inbuf
50 * After decompression it will contain the
51 * compressed size, and head.S will read it.
54 static unsigned outcnt = 0; /* bytes in output buffer */
57 #define ASCII_FLAG 0x01 /* bit 0 set: file probably ascii text */
58 #define CONTINUATION 0x02 /* bit 1 set: continuation of multi-part gzip file */
59 #define EXTRA_FIELD 0x04 /* bit 2 set: extra field present */
60 #define ORIG_NAME 0x08 /* bit 3 set: original file name present */
61 #define COMMENT 0x10 /* bit 4 set: file comment present */
62 #define ENCRYPTED 0x20 /* bit 5 set: file is encrypted */
63 #define RESERVED 0xC0 /* bit 6,7: reserved */
65 #define get_byte() inbuf[inptr++]
67 /* Diagnostic functions */
69 # define Assert(cond,msg) {if(!(cond)) error(msg);}
70 # define Trace(x) fprintf x
71 # define Tracev(x) {if (verbose) fprintf x ;}
72 # define Tracevv(x) {if (verbose>1) fprintf x ;}
73 # define Tracec(c,x) {if (verbose && (c)) fprintf x ;}
74 # define Tracecv(c,x) {if (verbose>1 && (c)) fprintf x ;}
76 # define Assert(cond,msg)
84 static int fill_inbuf(void);
85 static void flush_window(void);
86 static void error(char *m);
87 static void gzip_mark(void **);
88 static void gzip_release(void **);
90 extern char *input_data; /* lives in head.S */
92 static long bytes_out = 0;
93 static uch *output_data;
94 static unsigned long output_ptr = 0;
96 static void *malloc(int size);
97 static void free(void *where);
98 static void error(char *m);
99 static void gzip_mark(void **);
100 static void gzip_release(void **);
102 static void puts(const char *);
104 /* the "heap" is put directly after the BSS ends, at end */
107 static long free_mem_ptr = (long)&end;
109 #include "../../../../../lib/inflate.c"
111 static void *malloc(int size)
115 if (size <0) error("Malloc error");
117 free_mem_ptr = (free_mem_ptr + 3) & ~3; /* Align */
119 p = (void *)free_mem_ptr;
120 free_mem_ptr += size;
125 static void free(void *where)
129 static void gzip_mark(void **ptr)
131 *ptr = (void *) free_mem_ptr;
134 static void gzip_release(void **ptr)
136 free_mem_ptr = (long) *ptr;
139 /* decompressor info and error messages to serial console */
144 #ifndef CONFIG_ETRAX_DEBUG_PORT_NULL
146 #ifdef CONFIG_ETRAX_DEBUG_PORT0
147 while(!(*R_SERIAL0_STATUS & (1 << 5))) ;
148 *R_SERIAL0_TR_DATA = *s++;
150 #ifdef CONFIG_ETRAX_DEBUG_PORT1
151 while(!(*R_SERIAL1_STATUS & (1 << 5))) ;
152 *R_SERIAL1_TR_DATA = *s++;
154 #ifdef CONFIG_ETRAX_DEBUG_PORT2
155 while(!(*R_SERIAL2_STATUS & (1 << 5))) ;
156 *R_SERIAL2_TR_DATA = *s++;
158 #ifdef CONFIG_ETRAX_DEBUG_PORT3
159 while(!(*R_SERIAL3_STATUS & (1 << 5))) ;
160 *R_SERIAL3_TR_DATA = *s++;
167 memset(void* s, int c, size_t n)
172 for (i=0;i<n;i++) ss[i] = c;
176 memcpy(void* __dest, __const void* __src,
180 char *d = (char *)__dest, *s = (char *)__src;
182 for (i=0;i<__n;i++) d[i] = s[i];
185 /* ===========================================================================
186 * Write the output window window[0..outcnt-1] and update crc and bytes_out.
187 * (Used for the decompressed data only.)
193 ulg c = crc; /* temporary variable */
198 out = &output_data[output_ptr];
199 for (n = 0; n < outcnt; n++) {
201 c = crc_32_tab[((int)c ^ ch) & 0xff] ^ (c >> 8);
204 bytes_out += (ulg)outcnt;
205 output_ptr += (ulg)outcnt;
214 puts("\n\n -- System halted\n");
220 setup_normal_output_buffer()
222 output_data = (char *)KERNEL_LOAD_ADR;
230 /* input_data is set in head.S */
233 #ifdef CONFIG_ETRAX_DEBUG_PORT0
235 *R_SERIAL0_BAUD = 0x99;
236 *R_SERIAL0_TR_CTRL = 0x40;
238 #ifdef CONFIG_ETRAX_DEBUG_PORT1
240 *R_SERIAL1_BAUD = 0x99;
241 *R_SERIAL1_TR_CTRL = 0x40;
243 #ifdef CONFIG_ETRAX_DEBUG_PORT2
244 *R_GEN_CONFIG = 0x08;
246 *R_SERIAL2_BAUD = 0x99;
247 *R_SERIAL2_TR_CTRL = 0x40;
249 #ifdef CONFIG_ETRAX_DEBUG_PORT3
250 *R_GEN_CONFIG = 0x100;
252 *R_SERIAL3_BAUD = 0x99;
253 *R_SERIAL3_TR_CTRL = 0x40;
256 setup_normal_output_buffer();
260 __asm__ volatile ("move vr,%0" : "=rm" (revision));
263 puts("You need an ETRAX 100LX to run linux 2.6\n");
267 puts("Uncompressing Linux...\n");
269 puts("Done. Now booting the kernel.\n");