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 * High loaded stuff by Hans Lermen & Werner Almesberger, Feb. 1996
12 #include <linux/linkage.h>
13 #include <linux/vmalloc.h>
14 #include <linux/tty.h>
28 * Why do we do this? Don't ask me..
30 * Incomprehensible are the ways of bootloaders.
32 static void* memset(void *, int, size_t);
33 static void* memcpy(void *, __const
void *, size_t);
34 #define memzero(s, n) memset ((s), 0, (n))
36 typedef unsigned char uch
;
37 typedef unsigned short ush
;
38 typedef unsigned long ulg
;
40 #define WSIZE 0x8000 /* Window size must be at least 32k, */
41 /* and a power of two */
43 static uch
*inbuf
; /* input buffer */
44 static uch window
[WSIZE
]; /* Sliding window buffer */
46 static unsigned insize
= 0; /* valid bytes in inbuf */
47 static unsigned inptr
= 0; /* index of next byte to be processed in inbuf */
48 static unsigned outcnt
= 0; /* bytes in output buffer */
51 #define ASCII_FLAG 0x01 /* bit 0 set: file probably ASCII text */
52 #define CONTINUATION 0x02 /* bit 1 set: continuation of multi-part gzip file */
53 #define EXTRA_FIELD 0x04 /* bit 2 set: extra field present */
54 #define ORIG_NAME 0x08 /* bit 3 set: original file name present */
55 #define COMMENT 0x10 /* bit 4 set: file comment present */
56 #define ENCRYPTED 0x20 /* bit 5 set: file is encrypted */
57 #define RESERVED 0xC0 /* bit 6,7: reserved */
59 #define get_byte() (inptr < insize ? inbuf[inptr++] : fill_inbuf())
61 /* Diagnostic functions */
63 # define Assert(cond,msg) {if(!(cond)) error(msg);}
64 # define Trace(x) fprintf x
65 # define Tracev(x) {if (verbose) fprintf x ;}
66 # define Tracevv(x) {if (verbose>1) fprintf x ;}
67 # define Tracec(c,x) {if (verbose && (c)) fprintf x ;}
68 # define Tracecv(c,x) {if (verbose>1 && (c)) fprintf x ;}
70 # define Assert(cond,msg)
78 static int fill_inbuf(void);
79 static void flush_window(void);
80 static void error(char *m
);
81 static void gzip_mark(void **);
82 static void gzip_release(void **);
85 * This is set up by the setup-routine at boot-time
87 static unsigned char *real_mode
; /* Pointer to real-mode data */
89 #define RM_EXT_MEM_K (*(unsigned short *)(real_mode + 0x2))
90 #ifndef STANDARD_MEMORY_BIOS_CALL
91 #define RM_ALT_MEM_K (*(unsigned long *)(real_mode + 0x1e0))
93 #define RM_SCREEN_INFO (*(struct screen_info *)(real_mode+0))
95 extern char input_data
[];
98 static long bytes_out
= 0;
99 static uch
*output_data
;
100 static unsigned long output_ptr
= 0;
102 static void *malloc(int size
);
103 static void free(void *where
);
105 static void putstr(const char *);
108 static long free_mem_ptr
= (long)&end
;
109 static long free_mem_end_ptr
;
111 #define INPLACE_MOVE_ROUTINE 0x1000
112 #define LOW_BUFFER_START 0x2000
113 #define LOW_BUFFER_MAX 0x90000
114 #define HEAP_SIZE 0x3000
115 static unsigned int low_buffer_end
, low_buffer_size
;
116 static int high_loaded
=0;
117 static uch
*high_buffer_start
/* = (uch *)(((ulg)&end) + HEAP_SIZE)*/;
119 static char *vidmem
= (char *)0xb8000;
121 static int lines
, cols
;
123 #ifdef CONFIG_X86_NUMAQ
124 static void * xquad_portio
= NULL
;
127 #include "../../../../lib/inflate.c"
129 static void *malloc(int size
)
133 if (size
<0) error("Malloc error");
134 if (free_mem_ptr
<= 0) error("Memory error");
136 free_mem_ptr
= (free_mem_ptr
+ 3) & ~3; /* Align */
138 p
= (void *)free_mem_ptr
;
139 free_mem_ptr
+= size
;
141 if (free_mem_ptr
>= free_mem_end_ptr
)
142 error("Out of memory");
147 static void free(void *where
)
151 static void gzip_mark(void **ptr
)
153 *ptr
= (void *) free_mem_ptr
;
156 static void gzip_release(void **ptr
)
158 free_mem_ptr
= (long) *ptr
;
161 static void scroll(void)
165 memcpy ( vidmem
, vidmem
+ cols
* 2, ( lines
- 1 ) * cols
* 2 );
166 for ( i
= ( lines
- 1 ) * cols
* 2; i
< lines
* cols
* 2; i
+= 2 )
170 static void putstr(const char *s
)
175 x
= RM_SCREEN_INFO
.orig_x
;
176 y
= RM_SCREEN_INFO
.orig_y
;
178 while ( ( c
= *s
++ ) != '\0' ) {
181 if ( ++y
>= lines
) {
186 vidmem
[ ( x
+ cols
* y
) * 2 ] = c
;
189 if ( ++y
>= lines
) {
197 RM_SCREEN_INFO
.orig_x
= x
;
198 RM_SCREEN_INFO
.orig_y
= y
;
200 pos
= (x
+ cols
* y
) * 2; /* Update cursor position */
202 outb_p(0xff & (pos
>> 9), vidport
+1);
204 outb_p(0xff & (pos
>> 1), vidport
+1);
207 static void* memset(void* s
, int c
, size_t n
)
212 for (i
=0;i
<n
;i
++) ss
[i
] = c
;
216 static void* memcpy(void* __dest
, __const
void* __src
,
220 char *d
= (char *)__dest
, *s
= (char *)__src
;
222 for (i
=0;i
<__n
;i
++) d
[i
] = s
[i
];
226 /* ===========================================================================
227 * Fill the input buffer. This is called only when the buffer is empty
228 * and at least one byte is really needed.
230 static int fill_inbuf(void)
233 error("ran out of input data");
242 /* ===========================================================================
243 * Write the output window window[0..outcnt-1] and update crc and bytes_out.
244 * (Used for the decompressed data only.)
246 static void flush_window_low(void)
248 ulg c
= crc
; /* temporary variable */
253 out
= &output_data
[output_ptr
];
254 for (n
= 0; n
< outcnt
; n
++) {
256 c
= crc_32_tab
[((int)c
^ ch
) & 0xff] ^ (c
>> 8);
259 bytes_out
+= (ulg
)outcnt
;
260 output_ptr
+= (ulg
)outcnt
;
264 static void flush_window_high(void)
266 ulg c
= crc
; /* temporary variable */
270 for (n
= 0; n
< outcnt
; n
++) {
271 ch
= *output_data
++ = *in
++;
272 if ((ulg
)output_data
== low_buffer_end
) output_data
=high_buffer_start
;
273 c
= crc_32_tab
[((int)c
^ ch
) & 0xff] ^ (c
>> 8);
276 bytes_out
+= (ulg
)outcnt
;
280 static void flush_window(void)
282 if (high_loaded
) flush_window_high();
283 else flush_window_low();
286 static void error(char *x
)
290 putstr("\n\n -- System halted");
295 #define STACK_SIZE (4096)
297 long user_stack
[STACK_SIZE
];
302 } stack_start
= { & user_stack
[STACK_SIZE
] , __BOOT_DS
};
304 static void setup_normal_output_buffer(void)
306 #ifdef STANDARD_MEMORY_BIOS_CALL
307 if (RM_EXT_MEM_K
< 1024) error("Less than 2MB of memory");
309 if ((RM_ALT_MEM_K
> RM_EXT_MEM_K
? RM_ALT_MEM_K
: RM_EXT_MEM_K
) < 1024) error("Less than 2MB of memory");
311 output_data
= (char *)0x100000; /* Points to 1M */
312 free_mem_end_ptr
= (long)real_mode
;
316 uch
*low_buffer_start
; int lcount
;
317 uch
*high_buffer_start
; int hcount
;
320 static void setup_output_buffer_if_we_run_high(struct moveparams
*mv
)
322 high_buffer_start
= (uch
*)(((ulg
)&end
) + HEAP_SIZE
);
323 #ifdef STANDARD_MEMORY_BIOS_CALL
324 if (RM_EXT_MEM_K
< (3*1024)) error("Less than 4MB of memory");
326 if ((RM_ALT_MEM_K
> RM_EXT_MEM_K
? RM_ALT_MEM_K
: RM_EXT_MEM_K
) <
328 error("Less than 4MB of memory");
330 mv
->low_buffer_start
= output_data
= (char *)LOW_BUFFER_START
;
331 low_buffer_end
= ((unsigned int)real_mode
> LOW_BUFFER_MAX
332 ? LOW_BUFFER_MAX
: (unsigned int)real_mode
) & ~0xfff;
333 low_buffer_size
= low_buffer_end
- LOW_BUFFER_START
;
335 free_mem_end_ptr
= (long)high_buffer_start
;
336 if ( (0x100000 + low_buffer_size
) > ((ulg
)high_buffer_start
)) {
337 high_buffer_start
= (uch
*)(0x100000 + low_buffer_size
);
338 mv
->hcount
= 0; /* say: we need not to move high_buffer */
340 else mv
->hcount
= -1;
341 mv
->high_buffer_start
= high_buffer_start
;
344 static void close_output_buffer_if_we_run_high(struct moveparams
*mv
)
346 if (bytes_out
> low_buffer_size
) {
347 mv
->lcount
= low_buffer_size
;
349 mv
->hcount
= bytes_out
- low_buffer_size
;
351 mv
->lcount
= bytes_out
;
357 asmlinkage
int decompress_kernel(struct moveparams
*mv
, void *rmode
)
361 if (RM_SCREEN_INFO
.orig_video_mode
== 7) {
362 vidmem
= (char *) 0xb0000;
365 vidmem
= (char *) 0xb8000;
369 lines
= RM_SCREEN_INFO
.orig_video_lines
;
370 cols
= RM_SCREEN_INFO
.orig_video_cols
;
372 if (free_mem_ptr
< 0x100000) setup_normal_output_buffer();
373 else setup_output_buffer_if_we_run_high(mv
);
376 putstr("Uncompressing Linux... ");
378 putstr("Ok, booting the kernel.\n");
379 if (high_loaded
) close_output_buffer_if_we_run_high(mv
);