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);
36 static int bmp_display (ulong addr, int x, int y);
39 * Allocate and decompress a BMP image using gunzip().
41 * Returns a pointer to the decompressed image data. Must be freed by
42 * the caller after use.
44 * Returns NULL if decompression failed, or if the decompressed data
45 * didn't contain a valid BMP signature.
47 #ifdef CONFIG_VIDEO_BMP_GZIP
48 bmp_image_t *gunzip_bmp(unsigned long addr, unsigned long *lenp)
55 * Decompress bmp image
57 len = CONFIG_SYS_VIDEO_LOGO_MAX_SIZE;
58 dst = malloc(CONFIG_SYS_VIDEO_LOGO_MAX_SIZE);
60 puts("Error: malloc in gunzip failed!\n");
63 if (gunzip(dst, CONFIG_SYS_VIDEO_LOGO_MAX_SIZE, (uchar *)addr, &len) != 0) {
67 if (len == CONFIG_SYS_VIDEO_LOGO_MAX_SIZE)
68 puts("Image could be truncated"
69 " (increase CONFIG_SYS_VIDEO_LOGO_MAX_SIZE)!\n");
74 * Check for bmp mark 'BM'
76 if (!((bmp->header.signature[0] == 'B') &&
77 (bmp->header.signature[1] == 'M'))) {
82 puts("Gzipped BMP image detected!\n");
87 bmp_image_t *gunzip_bmp(unsigned long addr, unsigned long *lenp)
93 static int do_bmp_info(cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
98 case 1: /* use load_addr as default address */
101 case 2: /* use argument */
102 addr = simple_strtoul(argv[1], NULL, 16);
109 return (bmp_info(addr));
112 static int do_bmp_display(cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
118 case 1: /* use load_addr as default address */
121 case 2: /* use argument */
122 addr = simple_strtoul(argv[1], NULL, 16);
125 addr = simple_strtoul(argv[1], NULL, 16);
126 x = simple_strtoul(argv[2], NULL, 10);
127 y = simple_strtoul(argv[3], NULL, 10);
134 return (bmp_display(addr, x, y));
137 static cmd_tbl_t cmd_bmp_sub[] = {
138 U_BOOT_CMD_MKENT(info, 3, 0, do_bmp_info, "", ""),
139 U_BOOT_CMD_MKENT(display, 5, 0, do_bmp_display, "", ""),
145 * Description: Handler for 'bmp' command..
147 * Inputs: argv[1] contains the subcommand
152 static int do_bmp(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
156 /* Strip off leading 'bmp' command argument */
160 c = find_cmd_tbl(argv[0], &cmd_bmp_sub[0], ARRAY_SIZE(cmd_bmp_sub));
163 return c->cmd(cmdtp, flag, argc, argv);
172 "manipulate BMP image data",
173 "info <imageAddr> - display image info\n"
174 "bmp display <imageAddr> [x y] - display image at x,y"
178 * Subroutine: bmp_info
180 * Description: Show information about bmp file in memory
182 * Inputs: addr address of the bmp file
187 static int bmp_info(ulong addr)
189 bmp_image_t *bmp=(bmp_image_t *)addr;
192 if (!((bmp->header.signature[0]=='B') &&
193 (bmp->header.signature[1]=='M')))
194 bmp = gunzip_bmp(addr, &len);
197 printf("There is no valid bmp file at the given address\n");
201 printf("Image size : %d x %d\n", le32_to_cpu(bmp->header.width),
202 le32_to_cpu(bmp->header.height));
203 printf("Bits per pixel: %d\n", le16_to_cpu(bmp->header.bit_count));
204 printf("Compression : %d\n", le32_to_cpu(bmp->header.compression));
206 if ((unsigned long)bmp != addr)
213 * Subroutine: bmp_display
215 * Description: Display bmp file located in memory
217 * Inputs: addr address of the bmp file
222 static int bmp_display(ulong addr, int x, int y)
225 bmp_image_t *bmp = (bmp_image_t *)addr;
228 if (!((bmp->header.signature[0]=='B') &&
229 (bmp->header.signature[1]=='M')))
230 bmp = gunzip_bmp(addr, &len);
233 printf("There is no valid bmp file at the given address\n");
237 #if defined(CONFIG_LCD)
238 extern int lcd_display_bitmap (ulong, int, int);
240 ret = lcd_display_bitmap ((unsigned long)bmp, x, y);
241 #elif defined(CONFIG_VIDEO)
242 extern int video_display_bitmap (ulong, int, int);
244 ret = video_display_bitmap ((unsigned long)bmp, x, y);
246 # error bmp_display() requires CONFIG_LCD or CONFIG_VIDEO
249 if ((unsigned long)bmp != addr)