misc.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:9k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * 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.  * puts by Nick Holloway 1993, better puts by Martin Mares 1995
  9.  * High loaded stuff by Hans Lermen & Werner Almesberger, Feb. 1996
  10.  */
  11. #include <linux/linkage.h>
  12. #include <linux/vmalloc.h>
  13. #include <linux/tty.h>
  14. #include <asm/io.h>
  15. /*
  16.  * gzip declarations
  17.  */
  18. #define OF(args)  args
  19. #define STATIC static
  20. #undef memset
  21. #undef memcpy
  22. /*
  23.  * Why do we do this? Don't ask me..
  24.  *
  25.  * Incomprehensible are the ways of bootloaders.
  26.  */
  27. static void* memset(void *, int, size_t);
  28. static void* memcpy(void *, __const void *, size_t);
  29. #define memzero(s, n)     memset ((s), 0, (n))
  30. typedef unsigned char  uch;
  31. typedef unsigned short ush;
  32. typedef unsigned long  ulg;
  33. #define WSIZE 0x8000 /* Window size must be at least 32k, */
  34. /* and a power of two */
  35. static uch *inbuf;      /* input buffer */
  36. static uch window[WSIZE];    /* Sliding window buffer */
  37. static unsigned insize = 0;  /* valid bytes in inbuf */
  38. static unsigned inptr = 0;   /* index of next byte to be processed in inbuf */
  39. static unsigned outcnt = 0;  /* bytes in output buffer */
  40. /* gzip flag byte */
  41. #define ASCII_FLAG   0x01 /* bit 0 set: file probably ASCII text */
  42. #define CONTINUATION 0x02 /* bit 1 set: continuation of multi-part gzip file */
  43. #define EXTRA_FIELD  0x04 /* bit 2 set: extra field present */
  44. #define ORIG_NAME    0x08 /* bit 3 set: original file name present */
  45. #define COMMENT      0x10 /* bit 4 set: file comment present */
  46. #define ENCRYPTED    0x20 /* bit 5 set: file is encrypted */
  47. #define RESERVED     0xC0 /* bit 6,7:   reserved */
  48. #define get_byte()  (inptr < insize ? inbuf[inptr++] : fill_inbuf())
  49. /* Diagnostic functions */
  50. #ifdef DEBUG
  51. #  define Assert(cond,msg) {if(!(cond)) error(msg);}
  52. #  define Trace(x) fprintf x
  53. #  define Tracev(x) {if (verbose) fprintf x ;}
  54. #  define Tracevv(x) {if (verbose>1) fprintf x ;}
  55. #  define Tracec(c,x) {if (verbose && (c)) fprintf x ;}
  56. #  define Tracecv(c,x) {if (verbose>1 && (c)) fprintf x ;}
  57. #else
  58. #  define Assert(cond,msg)
  59. #  define Trace(x)
  60. #  define Tracev(x)
  61. #  define Tracevv(x)
  62. #  define Tracec(c,x)
  63. #  define Tracecv(c,x)
  64. #endif
  65. static int  fill_inbuf(void);
  66. static void flush_window(void);
  67. static void error(char *m);
  68. static void gzip_mark(void **);
  69. static void gzip_release(void **);
  70.   
  71. /*
  72.  * This is set up by the setup-routine at boot-time
  73.  */
  74. static unsigned char *real_mode; /* Pointer to real-mode data */
  75. #define EXT_MEM_K   (*(unsigned short *)(real_mode + 0x2))
  76. #ifndef STANDARD_MEMORY_BIOS_CALL
  77. #define ALT_MEM_K   (*(unsigned long *)(real_mode + 0x1e0))
  78. #endif
  79. #define SCREEN_INFO (*(struct screen_info *)(real_mode+0))
  80. extern char input_data[];
  81. extern int input_len;
  82. static long bytes_out = 0;
  83. static uch *output_data;
  84. static unsigned long output_ptr = 0;
  85.  
  86. static void *malloc(int size);
  87. static void free(void *where);
  88. static void error(char *m);
  89. static void gzip_mark(void **);
  90. static void gzip_release(void **);
  91.  
  92. static void puts(const char *);
  93.   
  94. extern int end;
  95. static long free_mem_ptr = (long)&end;
  96. static long free_mem_end_ptr;
  97. #define INPLACE_MOVE_ROUTINE  0x1000
  98. #define LOW_BUFFER_START      0x2000
  99. #define LOW_BUFFER_MAX       0x90000
  100. #define HEAP_SIZE             0x3000
  101. static unsigned int low_buffer_end, low_buffer_size;
  102. static int high_loaded =0;
  103. static uch *high_buffer_start /* = (uch *)(((ulg)&end) + HEAP_SIZE)*/;
  104. static char *vidmem = (char *)0xb8000;
  105. static int vidport;
  106. static int lines, cols;
  107. #ifdef CONFIG_MULTIQUAD
  108. static void *xquad_portio = NULL;
  109. #endif
  110. #include "../../../../lib/inflate.c"
  111. static void *malloc(int size)
  112. {
  113. void *p;
  114. if (size <0) error("Malloc errorn");
  115. if (free_mem_ptr <= 0) error("Memory errorn");
  116. free_mem_ptr = (free_mem_ptr + 3) & ~3; /* Align */
  117. p = (void *)free_mem_ptr;
  118. free_mem_ptr += size;
  119. if (free_mem_ptr >= free_mem_end_ptr)
  120. error("nOut of memoryn");
  121. return p;
  122. }
  123. static void free(void *where)
  124. { /* Don't care */
  125. }
  126. static void gzip_mark(void **ptr)
  127. {
  128. *ptr = (void *) free_mem_ptr;
  129. }
  130. static void gzip_release(void **ptr)
  131. {
  132. free_mem_ptr = (long) *ptr;
  133. }
  134.  
  135. static void scroll(void)
  136. {
  137. int i;
  138. memcpy ( vidmem, vidmem + cols * 2, ( lines - 1 ) * cols * 2 );
  139. for ( i = ( lines - 1 ) * cols * 2; i < lines * cols * 2; i += 2 )
  140. vidmem[i] = ' ';
  141. }
  142. static void puts(const char *s)
  143. {
  144. int x,y,pos;
  145. char c;
  146. x = SCREEN_INFO.orig_x;
  147. y = SCREEN_INFO.orig_y;
  148. while ( ( c = *s++ ) != '' ) {
  149. if ( c == 'n' ) {
  150. x = 0;
  151. if ( ++y >= lines ) {
  152. scroll();
  153. y--;
  154. }
  155. } else {
  156. vidmem [ ( x + cols * y ) * 2 ] = c; 
  157. if ( ++x >= cols ) {
  158. x = 0;
  159. if ( ++y >= lines ) {
  160. scroll();
  161. y--;
  162. }
  163. }
  164. }
  165. }
  166. SCREEN_INFO.orig_x = x;
  167. SCREEN_INFO.orig_y = y;
  168. pos = (x + cols * y) * 2; /* Update cursor position */
  169. outb_p(14, vidport);
  170. outb_p(0xff & (pos >> 9), vidport+1);
  171. outb_p(15, vidport);
  172. outb_p(0xff & (pos >> 1), vidport+1);
  173. }
  174. static void* memset(void* s, int c, size_t n)
  175. {
  176. int i;
  177. char *ss = (char*)s;
  178. for (i=0;i<n;i++) ss[i] = c;
  179. return s;
  180. }
  181. static void* memcpy(void* __dest, __const void* __src,
  182.     size_t __n)
  183. {
  184. int i;
  185. char *d = (char *)__dest, *s = (char *)__src;
  186. for (i=0;i<__n;i++) d[i] = s[i];
  187. return __dest;
  188. }
  189. /* ===========================================================================
  190.  * Fill the input buffer. This is called only when the buffer is empty
  191.  * and at least one byte is really needed.
  192.  */
  193. static int fill_inbuf(void)
  194. {
  195. if (insize != 0) {
  196. error("ran out of input datan");
  197. }
  198. inbuf = input_data;
  199. insize = input_len;
  200. inptr = 1;
  201. return inbuf[0];
  202. }
  203. /* ===========================================================================
  204.  * Write the output window window[0..outcnt-1] and update crc and bytes_out.
  205.  * (Used for the decompressed data only.)
  206.  */
  207. static void flush_window_low(void)
  208. {
  209.     ulg c = crc;         /* temporary variable */
  210.     unsigned n;
  211.     uch *in, *out, ch;
  212.     
  213.     in = window;
  214.     out = &output_data[output_ptr]; 
  215.     for (n = 0; n < outcnt; n++) {
  216.     ch = *out++ = *in++;
  217.     c = crc_32_tab[((int)c ^ ch) & 0xff] ^ (c >> 8);
  218.     }
  219.     crc = c;
  220.     bytes_out += (ulg)outcnt;
  221.     output_ptr += (ulg)outcnt;
  222.     outcnt = 0;
  223. }
  224. static void flush_window_high(void)
  225. {
  226.     ulg c = crc;         /* temporary variable */
  227.     unsigned n;
  228.     uch *in,  ch;
  229.     in = window;
  230.     for (n = 0; n < outcnt; n++) {
  231. ch = *output_data++ = *in++;
  232. if ((ulg)output_data == low_buffer_end) output_data=high_buffer_start;
  233. c = crc_32_tab[((int)c ^ ch) & 0xff] ^ (c >> 8);
  234.     }
  235.     crc = c;
  236.     bytes_out += (ulg)outcnt;
  237.     outcnt = 0;
  238. }
  239. static void flush_window(void)
  240. {
  241. if (high_loaded) flush_window_high();
  242. else flush_window_low();
  243. }
  244. static void error(char *x)
  245. {
  246. puts("nn");
  247. puts(x);
  248. puts("nn -- System halted");
  249. while(1); /* Halt */
  250. }
  251. #define STACK_SIZE (4096)
  252. long user_stack [STACK_SIZE];
  253. struct {
  254. long * a;
  255. short b;
  256. } stack_start = { & user_stack [STACK_SIZE] , __KERNEL_DS };
  257. static void setup_normal_output_buffer(void)
  258. {
  259. #ifdef STANDARD_MEMORY_BIOS_CALL
  260. if (EXT_MEM_K < 1024) error("Less than 2MB of memory.n");
  261. #else
  262. if ((ALT_MEM_K > EXT_MEM_K ? ALT_MEM_K : EXT_MEM_K) < 1024) error("Less than 2MB of memory.n");
  263. #endif
  264. output_data = (char *)0x100000; /* Points to 1M */
  265. free_mem_end_ptr = (long)real_mode;
  266. }
  267. struct moveparams {
  268. uch *low_buffer_start;  int lcount;
  269. uch *high_buffer_start; int hcount;
  270. };
  271. static void setup_output_buffer_if_we_run_high(struct moveparams *mv)
  272. {
  273. high_buffer_start = (uch *)(((ulg)&end) + HEAP_SIZE);
  274. #ifdef STANDARD_MEMORY_BIOS_CALL
  275. if (EXT_MEM_K < (3*1024)) error("Less than 4MB of memory.n");
  276. #else
  277. if ((ALT_MEM_K > EXT_MEM_K ? ALT_MEM_K : EXT_MEM_K) < (3*1024)) error("Less than 4MB of memory.n");
  278. #endif
  279. mv->low_buffer_start = output_data = (char *)LOW_BUFFER_START;
  280. low_buffer_end = ((unsigned int)real_mode > LOW_BUFFER_MAX
  281.   ? LOW_BUFFER_MAX : (unsigned int)real_mode) & ~0xfff;
  282. low_buffer_size = low_buffer_end - LOW_BUFFER_START;
  283. high_loaded = 1;
  284. free_mem_end_ptr = (long)high_buffer_start;
  285. if ( (0x100000 + low_buffer_size) > ((ulg)high_buffer_start)) {
  286. high_buffer_start = (uch *)(0x100000 + low_buffer_size);
  287. mv->hcount = 0; /* say: we need not to move high_buffer */
  288. }
  289. else mv->hcount = -1;
  290. mv->high_buffer_start = high_buffer_start;
  291. }
  292. static void close_output_buffer_if_we_run_high(struct moveparams *mv)
  293. {
  294. if (bytes_out > low_buffer_size) {
  295. mv->lcount = low_buffer_size;
  296. if (mv->hcount)
  297. mv->hcount = bytes_out - low_buffer_size;
  298. } else {
  299. mv->lcount = bytes_out;
  300. mv->hcount = 0;
  301. }
  302. }
  303. asmlinkage int decompress_kernel(struct moveparams *mv, void *rmode)
  304. {
  305. real_mode = rmode;
  306. if (SCREEN_INFO.orig_video_mode == 7) {
  307. vidmem = (char *) 0xb0000;
  308. vidport = 0x3b4;
  309. } else {
  310. vidmem = (char *) 0xb8000;
  311. vidport = 0x3d4;
  312. }
  313. lines = SCREEN_INFO.orig_video_lines;
  314. cols = SCREEN_INFO.orig_video_cols;
  315. if (free_mem_ptr < 0x100000) setup_normal_output_buffer();
  316. else setup_output_buffer_if_we_run_high(mv);
  317. makecrc();
  318. puts("Uncompressing Linux... ");
  319. gunzip();
  320. puts("Ok, booting the kernel.n");
  321. if (high_loaded) close_output_buffer_if_we_run_high(mv);
  322. return high_loaded;
  323. }