cmd_bmp.c 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  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. #if (CONFIG_COMMANDS & CFG_CMD_BMP)
  30. static int bmp_info (ulong addr);
  31. static int bmp_display (ulong addr);
  32. /*
  33. * Subroutine: do_bmp
  34. *
  35. * Description: Handler for 'bmp' command..
  36. *
  37. * Inputs: argv[1] contains the subcommand
  38. *
  39. * Return: None
  40. *
  41. */
  42. int do_bmp(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
  43. {
  44. ulong addr;
  45. switch (argc) {
  46. case 2: /* use load_addr as default address */
  47. addr = load_addr;
  48. break;
  49. case 3: /* use argument */
  50. addr = simple_strtoul(argv[2], NULL, 16);
  51. break;
  52. default:
  53. printf ("Usage:\n%s\n", cmdtp->usage);
  54. return 1;
  55. }
  56. /* Allow for short names
  57. * Adjust length if more sub-commands get added
  58. */
  59. if (strncmp(argv[1],"info",1) == 0) {
  60. return (bmp_info(addr));
  61. } else if (strncmp(argv[1],"display",1) == 0) {
  62. return (bmp_display(addr));
  63. } else {
  64. printf ("Usage:\n%s\n", cmdtp->usage);
  65. return 1;
  66. }
  67. }
  68. cmd_tbl_t U_BOOT_CMD(BMP) = MK_CMD_ENTRY(
  69. "bmp", 3, 1, do_bmp,
  70. "bmp - manipulate BMP image data\n",
  71. "info <imageAddr> - display image info\n"
  72. "bmp display <imageAddr> - display image\n"
  73. );
  74. /*
  75. * Subroutine: bmp_info
  76. *
  77. * Description: Show information about bmp file in memory
  78. *
  79. * Inputs: addr address of the bmp file
  80. *
  81. * Return: None
  82. *
  83. */
  84. static int bmp_info(ulong addr)
  85. {
  86. bmp_image_t *bmp=(bmp_image_t *)addr;
  87. if (!((bmp->header.signature[0]=='B') &&
  88. (bmp->header.signature[1]=='M'))) {
  89. printf("There is no valid bmp file at the given address\n");
  90. return(1);
  91. }
  92. printf("Image size : %d x %d\n", le32_to_cpu(bmp->header.width),
  93. le32_to_cpu(bmp->header.height));
  94. printf("Bits per pixel: %d\n", le16_to_cpu(bmp->header.bit_count));
  95. printf("Compression : %d\n", le32_to_cpu(bmp->header.compression));
  96. return(0);
  97. }
  98. /*
  99. * Subroutine: bmp_display
  100. *
  101. * Description: Display bmp file located in memory
  102. *
  103. * Inputs: addr address of the bmp file
  104. *
  105. * Return: None
  106. *
  107. */
  108. static int bmp_display(ulong addr)
  109. {
  110. extern int lcd_display_bitmap (ulong);
  111. return (lcd_display_bitmap (addr));
  112. }
  113. #endif /* (CONFIG_COMMANDS & CFG_CMD_BMP) */