cmd_bmp.c 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. /*
  2. * (C) Copyright 2002
  3. * Detlev Zundel, DENX Software Engineering, dzu@denx.de.
  4. *
  5. * See file CREDITS for list of people who contributed to this
  6. * project.
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License as
  10. * published by the Free Software Foundation; either version 2 of
  11. * the License, or (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  21. * MA 02111-1307 USA
  22. */
  23. /*
  24. * BMP handling routines
  25. */
  26. #include <common.h>
  27. #include <bmp_layout.h>
  28. #include <command.h>
  29. #include <asm/byteorder.h>
  30. #include <malloc.h>
  31. static int bmp_info (ulong addr);
  32. static int bmp_display (ulong addr, int x, int y);
  33. int gunzip(void *, int, unsigned char *, unsigned long *);
  34. /*
  35. * Subroutine: do_bmp
  36. *
  37. * Description: Handler for 'bmp' command..
  38. *
  39. * Inputs: argv[1] contains the subcommand
  40. *
  41. * Return: None
  42. *
  43. */
  44. int do_bmp(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
  45. {
  46. ulong addr;
  47. int x = 0, y = 0;
  48. switch (argc) {
  49. case 2: /* use load_addr as default address */
  50. addr = load_addr;
  51. break;
  52. case 3: /* use argument */
  53. addr = simple_strtoul(argv[2], NULL, 16);
  54. break;
  55. case 5:
  56. addr = simple_strtoul(argv[2], NULL, 16);
  57. x = simple_strtoul(argv[3], NULL, 10);
  58. y = simple_strtoul(argv[4], NULL, 10);
  59. break;
  60. default:
  61. printf ("Usage:\n%s\n", cmdtp->usage);
  62. return 1;
  63. }
  64. /* Allow for short names
  65. * Adjust length if more sub-commands get added
  66. */
  67. if (strncmp(argv[1],"info",1) == 0) {
  68. return (bmp_info(addr));
  69. } else if (strncmp(argv[1],"display",1) == 0) {
  70. return (bmp_display(addr, x, y));
  71. } else {
  72. printf ("Usage:\n%s\n", cmdtp->usage);
  73. return 1;
  74. }
  75. }
  76. U_BOOT_CMD(
  77. bmp, 5, 1, do_bmp,
  78. "bmp - manipulate BMP image data\n",
  79. "info <imageAddr> - display image info\n"
  80. "bmp display <imageAddr> [x y] - display image at x,y\n"
  81. );
  82. /*
  83. * Subroutine: bmp_info
  84. *
  85. * Description: Show information about bmp file in memory
  86. *
  87. * Inputs: addr address of the bmp file
  88. *
  89. * Return: None
  90. *
  91. */
  92. static int bmp_info(ulong addr)
  93. {
  94. bmp_image_t *bmp=(bmp_image_t *)addr;
  95. #ifdef CONFIG_VIDEO_BMP_GZIP
  96. unsigned char *dst = NULL;
  97. ulong len;
  98. #endif /* CONFIG_VIDEO_BMP_GZIP */
  99. if (!((bmp->header.signature[0]=='B') &&
  100. (bmp->header.signature[1]=='M'))) {
  101. #ifdef CONFIG_VIDEO_BMP_GZIP
  102. /*
  103. * Decompress bmp image
  104. */
  105. len = CFG_VIDEO_LOGO_MAX_SIZE;
  106. dst = malloc(CFG_VIDEO_LOGO_MAX_SIZE);
  107. if (dst == NULL) {
  108. printf("Error: malloc in gunzip failed!\n");
  109. return(1);
  110. }
  111. if (gunzip(dst, CFG_VIDEO_LOGO_MAX_SIZE, (uchar *)addr, &len) != 0) {
  112. printf("There is no valid bmp file at the given address\n");
  113. return(1);
  114. }
  115. if (len == CFG_VIDEO_LOGO_MAX_SIZE) {
  116. printf("Image could be truncated (increase CFG_VIDEO_LOGO_MAX_SIZE)!\n");
  117. }
  118. /*
  119. * Set addr to decompressed image
  120. */
  121. bmp = (bmp_image_t *)dst;
  122. /*
  123. * Check for bmp mark 'BM'
  124. */
  125. if (!((bmp->header.signature[0] == 'B') &&
  126. (bmp->header.signature[1] == 'M'))) {
  127. printf("There is no valid bmp file at the given address\n");
  128. free(dst);
  129. return(1);
  130. }
  131. printf("Gzipped BMP image detected!\n");
  132. #else /* CONFIG_VIDEO_BMP_GZIP */
  133. printf("There is no valid bmp file at the given address\n");
  134. return(1);
  135. #endif /* CONFIG_VIDEO_BMP_GZIP */
  136. }
  137. printf("Image size : %d x %d\n", le32_to_cpu(bmp->header.width),
  138. le32_to_cpu(bmp->header.height));
  139. printf("Bits per pixel: %d\n", le16_to_cpu(bmp->header.bit_count));
  140. printf("Compression : %d\n", le32_to_cpu(bmp->header.compression));
  141. #ifdef CONFIG_VIDEO_BMP_GZIP
  142. if (dst) {
  143. free(dst);
  144. }
  145. #endif /* CONFIG_VIDEO_BMP_GZIP */
  146. return(0);
  147. }
  148. /*
  149. * Subroutine: bmp_display
  150. *
  151. * Description: Display bmp file located in memory
  152. *
  153. * Inputs: addr address of the bmp file
  154. *
  155. * Return: None
  156. *
  157. */
  158. static int bmp_display(ulong addr, int x, int y)
  159. {
  160. #if defined(CONFIG_LCD)
  161. extern int lcd_display_bitmap (ulong, int, int);
  162. return (lcd_display_bitmap (addr, x, y));
  163. #elif defined(CONFIG_VIDEO)
  164. extern int video_display_bitmap (ulong, int, int);
  165. return (video_display_bitmap (addr, x, y));
  166. #else
  167. # error bmp_display() requires CONFIG_LCD or CONFIG_VIDEO
  168. #endif
  169. }