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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/include/asm-arm/arch-rpc/uncompress.h
  3.  *
  4.  *  Copyright (C) 1996 Russell King
  5.  *
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License version 2 as
  8.  * published by the Free Software Foundation.
  9.  */
  10. #define VIDMEM ((char *)SCREEN_START)
  11.  
  12. #include <asm/hardware.h>
  13. #include <asm/io.h>
  14. int video_num_columns, video_num_lines, video_size_row;
  15. int white, bytes_per_char_h;
  16. extern unsigned long con_charconvtable[256];
  17. struct param_struct {
  18. unsigned long page_size;
  19. unsigned long nr_pages;
  20. unsigned long ramdisk_size;
  21. unsigned long mountrootrdonly;
  22. unsigned long rootdev;
  23. unsigned long video_num_cols;
  24. unsigned long video_num_rows;
  25. unsigned long video_x;
  26. unsigned long video_y;
  27. unsigned long memc_control_reg;
  28. unsigned char sounddefault;
  29. unsigned char adfsdrives;
  30. unsigned char bytes_per_char_h;
  31. unsigned char bytes_per_char_v;
  32. unsigned long unused[256/4-11];
  33. };
  34. static const unsigned long palette_4[16] = {
  35. 0x00000000,
  36. 0x000000cc,
  37. 0x0000cc00,             /* Green   */
  38. 0x0000cccc,             /* Yellow  */
  39. 0x00cc0000,             /* Blue    */
  40. 0x00cc00cc,             /* Magenta */
  41. 0x00cccc00,             /* Cyan    */
  42. 0x00cccccc,             /* White   */
  43. 0x00000000,
  44. 0x000000ff,
  45. 0x0000ff00,
  46. 0x0000ffff,
  47. 0x00ff0000,
  48. 0x00ff00ff,
  49. 0x00ffff00,
  50. 0x00ffffff
  51. };
  52. #define palette_setpixel(p) *(unsigned long *)(IO_START+0x00400000) = 0x10000000|((p) & 255)
  53. #define palette_write(v) *(unsigned long *)(IO_START+0x00400000) = 0x00000000|((v) & 0x00ffffff)
  54. extern struct param_struct params;
  55. #ifndef STANDALONE_DEBUG 
  56. /*
  57.  * This does not append a newline
  58.  */
  59. static void puts(const char *s)
  60. {
  61. extern void ll_write_char(char *, unsigned long);
  62. int x,y;
  63. unsigned char c;
  64. char *ptr;
  65. x = params.video_x;
  66. y = params.video_y;
  67. while ( ( c = *(unsigned char *)s++ ) != '' ) {
  68. if ( c == 'n' ) {
  69. x = 0;
  70. if ( ++y >= video_num_lines ) {
  71. y--;
  72. }
  73. } else {
  74. ptr = VIDMEM + ((y*video_num_columns*params.bytes_per_char_v+x)*bytes_per_char_h);
  75. ll_write_char(ptr, c|(white<<16));
  76. if ( ++x >= video_num_columns ) {
  77. x = 0;
  78. if ( ++y >= video_num_lines ) {
  79. y--;
  80. }
  81. }
  82. }
  83. }
  84. params.video_x = x;
  85. params.video_y = y;
  86. }
  87. static void error(char *x);
  88. /*
  89.  * Setup for decompression
  90.  */
  91. static void arch_decomp_setup(void)
  92. {
  93. int i;
  94. video_num_lines = params.video_num_rows;
  95. video_num_columns = params.video_num_cols;
  96. bytes_per_char_h = params.bytes_per_char_h;
  97. video_size_row = video_num_columns * bytes_per_char_h;
  98. if (bytes_per_char_h == 4)
  99. for (i = 0; i < 256; i++)
  100. con_charconvtable[i] =
  101. (i & 128 ? 1 << 0  : 0) |
  102. (i & 64  ? 1 << 4  : 0) |
  103. (i & 32  ? 1 << 8  : 0) |
  104. (i & 16  ? 1 << 12 : 0) |
  105. (i & 8   ? 1 << 16 : 0) |
  106. (i & 4   ? 1 << 20 : 0) |
  107. (i & 2   ? 1 << 24 : 0) |
  108. (i & 1   ? 1 << 28 : 0);
  109. else
  110. for (i = 0; i < 16; i++)
  111. con_charconvtable[i] =
  112. (i & 8   ? 1 << 0  : 0) |
  113. (i & 4   ? 1 << 8  : 0) |
  114. (i & 2   ? 1 << 16 : 0) |
  115. (i & 1   ? 1 << 24 : 0);
  116. palette_setpixel(0);
  117. if (bytes_per_char_h == 1) {
  118. palette_write (0);
  119. palette_write (0x00ffffff);
  120. for (i = 2; i < 256; i++)
  121. palette_write (0);
  122. white = 1;
  123. } else {
  124. for (i = 0; i < 256; i++)
  125. palette_write (i < 16 ? palette_4[i] : 0);
  126. white = 7;
  127. }
  128. if (params.nr_pages * params.page_size < 4096*1024) error("<4M of memn");
  129. }
  130. #endif
  131. /*
  132.  * nothing to do
  133.  */
  134. #define arch_decomp_wdog()