3 * Detlev Zundel, DENX Software Engineering, dzu@denx.de.
5 * See file CREDITS for list of people who contributed to this
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.
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.
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,
25 * BMP handling routines
30 #include <bmp_layout.h>
32 #include <asm/byteorder.h>
35 static int bmp_info (ulong addr);
38 * Allocate and decompress a BMP image using gunzip().
40 * Returns a pointer to the decompressed image data. Must be freed by
41 * the caller after use.
43 * Returns NULL if decompression failed, or if the decompressed data
44 * didn't contain a valid BMP signature.
46 #ifdef CONFIG_VIDEO_BMP_GZIP
47 bmp_image_t *gunzip_bmp(unsigned long addr, unsigned long *lenp)
54 * Decompress bmp image
56 len = CONFIG_SYS_VIDEO_LOGO_MAX_SIZE;
57 dst = malloc(CONFIG_SYS_VIDEO_LOGO_MAX_SIZE);
59 puts("Error: malloc in gunzip failed!\n");
62 if (gunzip(dst, CONFIG_SYS_VIDEO_LOGO_MAX_SIZE, (uchar *)addr, &len) != 0) {
66 if (len == CONFIG_SYS_VIDEO_LOGO_MAX_SIZE)
67 puts("Image could be truncated"
68 " (increase CONFIG_SYS_VIDEO_LOGO_MAX_SIZE)!\n");
73 * Check for bmp mark 'BM'
75 if (!((bmp->header.signature[0] == 'B') &&
76 (bmp->header.signature[1] == 'M'))) {
81 debug("Gzipped BMP image detected!\n");
86 bmp_image_t *gunzip_bmp(unsigned long addr, unsigned long *lenp)
92 static int do_bmp_info(cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
97 case 1: /* use load_addr as default address */
100 case 2: /* use argument */
101 addr = simple_strtoul(argv[1], NULL, 16);
104 return CMD_RET_USAGE;
107 return (bmp_info(addr));
110 static int do_bmp_display(cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
116 case 1: /* use load_addr as default address */
119 case 2: /* use argument */
120 addr = simple_strtoul(argv[1], NULL, 16);
123 addr = simple_strtoul(argv[1], NULL, 16);
124 x = simple_strtoul(argv[2], NULL, 10);
125 y = simple_strtoul(argv[3], NULL, 10);
128 return CMD_RET_USAGE;
131 return (bmp_display(addr, x, y));
134 static cmd_tbl_t cmd_bmp_sub[] = {
135 U_BOOT_CMD_MKENT(info, 3, 0, do_bmp_info, "", ""),
136 U_BOOT_CMD_MKENT(display, 5, 0, do_bmp_display, "", ""),
139 #ifdef CONFIG_NEEDS_MANUAL_RELOC
140 void bmp_reloc(void) {
141 fixup_cmdtable(cmd_bmp_sub, ARRAY_SIZE(cmd_bmp_sub));
148 * Description: Handler for 'bmp' command..
150 * Inputs: argv[1] contains the subcommand
155 static int do_bmp(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
159 /* Strip off leading 'bmp' command argument */
163 c = find_cmd_tbl(argv[0], &cmd_bmp_sub[0], ARRAY_SIZE(cmd_bmp_sub));
166 return c->cmd(cmdtp, flag, argc, argv);
168 return CMD_RET_USAGE;
173 "manipulate BMP image data",
174 "info <imageAddr> - display image info\n"
175 "bmp display <imageAddr> [x y] - display image at x,y"
179 * Subroutine: bmp_info
181 * Description: Show information about bmp file in memory
183 * Inputs: addr address of the bmp file
188 static int bmp_info(ulong addr)
190 bmp_image_t *bmp=(bmp_image_t *)addr;
193 if (!((bmp->header.signature[0]=='B') &&
194 (bmp->header.signature[1]=='M')))
195 bmp = gunzip_bmp(addr, &len);
198 printf("There is no valid bmp file at the given address\n");
202 printf("Image size : %d x %d\n", le32_to_cpu(bmp->header.width),
203 le32_to_cpu(bmp->header.height));
204 printf("Bits per pixel: %d\n", le16_to_cpu(bmp->header.bit_count));
205 printf("Compression : %d\n", le32_to_cpu(bmp->header.compression));
207 if ((unsigned long)bmp != addr)
214 * Subroutine: bmp_display
216 * Description: Display bmp file located in memory
218 * Inputs: addr address of the bmp file
223 int bmp_display(ulong addr, int x, int y)
226 bmp_image_t *bmp = (bmp_image_t *)addr;
229 if (!((bmp->header.signature[0]=='B') &&
230 (bmp->header.signature[1]=='M')))
231 bmp = gunzip_bmp(addr, &len);
234 printf("There is no valid bmp file at the given address\n");
238 #if defined(CONFIG_LCD)
239 ret = lcd_display_bitmap((ulong)bmp, x, y);
240 #elif defined(CONFIG_VIDEO)
241 extern int video_display_bitmap (ulong, int, int);
243 ret = video_display_bitmap ((unsigned long)bmp, x, y);
245 # error bmp_display() requires CONFIG_LCD or CONFIG_VIDEO
248 if ((unsigned long)bmp != addr)