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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * misc.c
  3.  *
  4.  * $Id: misc.c,v 1.6 2001/04/09 10:00:21 starvik Exp $
  5.  * 
  6.  * This is a collection of several routines from gzip-1.0.3 
  7.  * adapted for Linux.
  8.  *
  9.  * malloc by Hannu Savolainen 1993 and Matthias Urlichs 1994
  10.  * puts by Nick Holloway 1993, better puts by Martin Mares 1995
  11.  * adoptation for Linux/CRIS Axis Communications AB, 1999
  12.  * 
  13.  */
  14. /* where the piggybacked kernel image expects itself to live.
  15.  * it is the same adress we use when we network load an uncompressed
  16.  * image into DRAM, and it is the address the kernel is linked to live
  17.  * at by etrax100.ld.
  18.  */
  19. #define KERNEL_LOAD_ADR 0x40004000
  20. #include <linux/config.h>
  21. #include <linux/types.h>
  22. #include <asm/svinto.h>
  23. /*
  24.  * gzip declarations
  25.  */
  26. #define OF(args)  args
  27. #define STATIC static
  28. void* memset(void* s, int c, size_t n);
  29. void* memcpy(void* __dest, __const void* __src,
  30.      size_t __n);
  31. #define memzero(s, n)     memset ((s), 0, (n))
  32. typedef unsigned char  uch;
  33. typedef unsigned short ush;
  34. typedef unsigned long  ulg;
  35. #define WSIZE 0x8000 /* Window size must be at least 32k, */
  36. /* and a power of two */
  37. static uch *inbuf;      /* input buffer */
  38. static uch window[WSIZE];    /* Sliding window buffer */
  39. unsigned inptr = 0; /* index of next byte to be processed in inbuf
  40.  * After decompression it will contain the
  41.  * compressed size, and head.S will read it.
  42.  */
  43. static unsigned outcnt = 0;  /* bytes in output buffer */
  44. /* gzip flag byte */
  45. #define ASCII_FLAG   0x01 /* bit 0 set: file probably ascii text */
  46. #define CONTINUATION 0x02 /* bit 1 set: continuation of multi-part gzip file */
  47. #define EXTRA_FIELD  0x04 /* bit 2 set: extra field present */
  48. #define ORIG_NAME    0x08 /* bit 3 set: original file name present */
  49. #define COMMENT      0x10 /* bit 4 set: file comment present */
  50. #define ENCRYPTED    0x20 /* bit 5 set: file is encrypted */
  51. #define RESERVED     0xC0 /* bit 6,7:   reserved */
  52. #define get_byte() inbuf[inptr++]
  53. /* Diagnostic functions */
  54. #ifdef DEBUG
  55. #  define Assert(cond,msg) {if(!(cond)) error(msg);}
  56. #  define Trace(x) fprintf x
  57. #  define Tracev(x) {if (verbose) fprintf x ;}
  58. #  define Tracevv(x) {if (verbose>1) fprintf x ;}
  59. #  define Tracec(c,x) {if (verbose && (c)) fprintf x ;}
  60. #  define Tracecv(c,x) {if (verbose>1 && (c)) fprintf x ;}
  61. #else
  62. #  define Assert(cond,msg)
  63. #  define Trace(x)
  64. #  define Tracev(x)
  65. #  define Tracevv(x)
  66. #  define Tracec(c,x)
  67. #  define Tracecv(c,x)
  68. #endif
  69. static int  fill_inbuf(void);
  70. static void flush_window(void);
  71. static void error(char *m);
  72. static void gzip_mark(void **);
  73. static void gzip_release(void **);
  74. extern char *input_data;  /* lives in head.S */
  75. static long bytes_out = 0;
  76. static uch *output_data;
  77. static unsigned long output_ptr = 0;
  78.  
  79. static void *malloc(int size);
  80. static void free(void *where);
  81. static void error(char *m);
  82. static void gzip_mark(void **);
  83. static void gzip_release(void **);
  84.  
  85. static void puts(const char *);
  86. /* the "heap" is put directly after the BSS ends, at end */
  87.   
  88. extern int end;
  89. static long free_mem_ptr = (long)&end;
  90.  
  91. #include "../../../../lib/inflate.c"
  92. static void *malloc(int size)
  93. {
  94. void *p;
  95. if (size <0) error("Malloc errorn");
  96. free_mem_ptr = (free_mem_ptr + 3) & ~3; /* Align */
  97. p = (void *)free_mem_ptr;
  98. free_mem_ptr += size;
  99. return p;
  100. }
  101. static void free(void *where)
  102. { /* Don't care */
  103. }
  104. static void gzip_mark(void **ptr)
  105. {
  106. *ptr = (void *) free_mem_ptr;
  107. }
  108. static void gzip_release(void **ptr)
  109. {
  110. free_mem_ptr = (long) *ptr;
  111. }
  112. /* decompressor info and error messages to serial console */
  113. static void
  114. puts(const char *s)
  115. {
  116. #ifndef CONFIG_ETRAX_DEBUG_PORT_NULL
  117. while(*s) {
  118. #ifdef CONFIG_ETRAX_DEBUG_PORT0
  119. while(!(*R_SERIAL0_STATUS & (1 << 5))) ;
  120. *R_SERIAL0_TR_DATA = *s++;
  121. #endif
  122. #ifdef CONFIG_ETRAX_DEBUG_PORT1
  123. while(!(*R_SERIAL1_STATUS & (1 << 5))) ;
  124. *R_SERIAL1_TR_DATA = *s++;
  125. #endif
  126. #ifdef CONFIG_ETRAX_DEBUG_PORT2
  127. while(!(*R_SERIAL2_STATUS & (1 << 5))) ;
  128. *R_SERIAL2_TR_DATA = *s++;
  129. #endif
  130. #ifdef CONFIG_ETRAX_DEBUG_PORT3
  131. while(!(*R_SERIAL3_STATUS & (1 << 5))) ;
  132. *R_SERIAL3_TR_DATA = *s++;
  133. #endif
  134. }
  135. #endif
  136. }
  137. void*
  138. memset(void* s, int c, size_t n)
  139. {
  140. int i;
  141. char *ss = (char*)s;
  142. for (i=0;i<n;i++) ss[i] = c;
  143. }
  144. void*
  145. memcpy(void* __dest, __const void* __src,
  146.     size_t __n)
  147. {
  148. int i;
  149. char *d = (char *)__dest, *s = (char *)__src;
  150. for (i=0;i<__n;i++) d[i] = s[i];
  151. }
  152. /* ===========================================================================
  153.  * Write the output window window[0..outcnt-1] and update crc and bytes_out.
  154.  * (Used for the decompressed data only.)
  155.  */
  156. static void
  157. flush_window()
  158. {
  159.     ulg c = crc;         /* temporary variable */
  160.     unsigned n;
  161.     uch *in, *out, ch;
  162.     
  163.     in = window;
  164.     out = &output_data[output_ptr]; 
  165.     for (n = 0; n < outcnt; n++) {
  166.     ch = *out++ = *in++;
  167.     c = crc_32_tab[((int)c ^ ch) & 0xff] ^ (c >> 8);
  168.     }
  169.     crc = c;
  170.     bytes_out += (ulg)outcnt;
  171.     output_ptr += (ulg)outcnt;
  172.     outcnt = 0;
  173. }
  174. static void
  175. error(char *x)
  176. {
  177. puts("nn");
  178. puts(x);
  179. puts("nn -- System haltedn");
  180. while(1); /* Halt */
  181. }
  182. void
  183. setup_normal_output_buffer()
  184. {
  185. output_data = (char *)KERNEL_LOAD_ADR;
  186. }
  187. void
  188. decompress_kernel()
  189. {
  190. char revision;
  191. /* input_data is set in head.S */
  192. inbuf = input_data;
  193. #ifdef CONFIG_ETRAX_DEBUG_PORT0
  194. *R_SERIAL0_XOFF = 0;
  195. *R_SERIAL0_BAUD = 0x99;
  196. *R_SERIAL0_TR_CTRL = 0x40;
  197. #endif
  198. #ifdef CONFIG_ETRAX_DEBUG_PORT1
  199. *R_SERIAL1_XOFF = 0;
  200. *R_SERIAL1_BAUD = 0x99;
  201. *R_SERIAL1_TR_CTRL = 0x40;
  202. #endif
  203. #ifdef CONFIG_ETRAX_DEBUG_PORT2
  204. *R_GEN_CONFIG = 0x08;
  205. *R_SERIAL2_XOFF = 0;
  206. *R_SERIAL2_BAUD = 0x99;
  207. *R_SERIAL2_TR_CTRL = 0x40;
  208. #endif
  209. #ifdef CONFIG_ETRAX_DEBUG_PORT3
  210. *R_GEN_CONFIG = 0x100;
  211. *R_SERIAL3_XOFF = 0;
  212. *R_SERIAL3_BAUD = 0x99;
  213. *R_SERIAL3_TR_CTRL = 0x40;
  214. #endif
  215. setup_normal_output_buffer();
  216. makecrc();
  217. __asm__ volatile ("move vr,%0" : "=rm" (revision));
  218. if (revision < 10)
  219. {
  220. puts("You need an ETRAX 100LX to run linux 2.4n");
  221. while(1);
  222. }
  223. puts("Uncompressing Linux...n");
  224. gunzip();
  225. puts("Done. Now booting the kernel.n");
  226. }