blob: faa10a4145b9658b047f64c4157888ded67e1b36 [file] [log] [blame]
wdenk059ae172003-04-20 16:52:09 +00001/*
2 * (C) Copyright 2002
wdenkb37c7e52003-06-30 16:24:52 +00003 * Detlev Zundel, DENX Software Engineering, dzu@denx.de.
wdenk059ae172003-04-20 16:52:09 +00004 *
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/*
25 * BMP handling routines
26 */
27
28#include <common.h>
Alessandro Rubini61117222009-07-19 17:52:27 +020029#include <lcd.h>
wdenk059ae172003-04-20 16:52:09 +000030#include <bmp_layout.h>
31#include <command.h>
wdenk8655b6f2004-10-09 23:25:58 +000032#include <asm/byteorder.h>
Stefan Roesec29ab9d2005-10-08 10:19:07 +020033#include <malloc.h>
wdenk059ae172003-04-20 16:52:09 +000034
wdenk059ae172003-04-20 16:52:09 +000035static int bmp_info (ulong addr);
wdenk4b248f32004-03-14 16:51:43 +000036static int bmp_display (ulong addr, int x, int y);
wdenk059ae172003-04-20 16:52:09 +000037
Stefan Roesec29ab9d2005-10-08 10:19:07 +020038int gunzip(void *, int, unsigned char *, unsigned long *);
39
wdenk059ae172003-04-20 16:52:09 +000040/*
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +010041 * Allocate and decompress a BMP image using gunzip().
42 *
43 * Returns a pointer to the decompressed image data. Must be freed by
44 * the caller after use.
45 *
46 * Returns NULL if decompression failed, or if the decompressed data
47 * didn't contain a valid BMP signature.
48 */
49#ifdef CONFIG_VIDEO_BMP_GZIP
Mark Jacksonc01171e2009-07-21 11:30:53 +010050bmp_image_t *gunzip_bmp(unsigned long addr, unsigned long *lenp)
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +010051{
52 void *dst;
53 unsigned long len;
54 bmp_image_t *bmp;
55
56 /*
57 * Decompress bmp image
58 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020059 len = CONFIG_SYS_VIDEO_LOGO_MAX_SIZE;
60 dst = malloc(CONFIG_SYS_VIDEO_LOGO_MAX_SIZE);
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +010061 if (dst == NULL) {
62 puts("Error: malloc in gunzip failed!\n");
63 return NULL;
64 }
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020065 if (gunzip(dst, CONFIG_SYS_VIDEO_LOGO_MAX_SIZE, (uchar *)addr, &len) != 0) {
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +010066 free(dst);
67 return NULL;
68 }
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020069 if (len == CONFIG_SYS_VIDEO_LOGO_MAX_SIZE)
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +010070 puts("Image could be truncated"
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020071 " (increase CONFIG_SYS_VIDEO_LOGO_MAX_SIZE)!\n");
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +010072
73 bmp = dst;
74
75 /*
76 * Check for bmp mark 'BM'
77 */
78 if (!((bmp->header.signature[0] == 'B') &&
79 (bmp->header.signature[1] == 'M'))) {
80 free(dst);
81 return NULL;
82 }
83
84 puts("Gzipped BMP image detected!\n");
85
86 return bmp;
87}
88#else
Mark Jacksonc01171e2009-07-21 11:30:53 +010089bmp_image_t *gunzip_bmp(unsigned long addr, unsigned long *lenp)
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +010090{
91 return NULL;
92}
93#endif
94
95
96/*
wdenk059ae172003-04-20 16:52:09 +000097 * Subroutine: do_bmp
98 *
99 * Description: Handler for 'bmp' command..
100 *
101 * Inputs: argv[1] contains the subcommand
102 *
103 * Return: None
104 *
105 */
106int do_bmp(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
107{
108 ulong addr;
wdenk4b248f32004-03-14 16:51:43 +0000109 int x = 0, y = 0;
wdenk059ae172003-04-20 16:52:09 +0000110
111 switch (argc) {
112 case 2: /* use load_addr as default address */
113 addr = load_addr;
114 break;
115 case 3: /* use argument */
116 addr = simple_strtoul(argv[2], NULL, 16);
117 break;
wdenk4b248f32004-03-14 16:51:43 +0000118 case 5:
119 addr = simple_strtoul(argv[2], NULL, 16);
120 x = simple_strtoul(argv[3], NULL, 10);
121 y = simple_strtoul(argv[4], NULL, 10);
122 break;
wdenk059ae172003-04-20 16:52:09 +0000123 default:
Peter Tyser62c3ae72009-01-27 18:03:10 -0600124 cmd_usage(cmdtp);
wdenk059ae172003-04-20 16:52:09 +0000125 return 1;
126 }
127
128 /* Allow for short names
129 * Adjust length if more sub-commands get added
130 */
131 if (strncmp(argv[1],"info",1) == 0) {
132 return (bmp_info(addr));
133 } else if (strncmp(argv[1],"display",1) == 0) {
wdenk4b248f32004-03-14 16:51:43 +0000134 return (bmp_display(addr, x, y));
wdenk059ae172003-04-20 16:52:09 +0000135 } else {
Peter Tyser62c3ae72009-01-27 18:03:10 -0600136 cmd_usage(cmdtp);
wdenk059ae172003-04-20 16:52:09 +0000137 return 1;
138 }
139}
140
wdenk0d498392003-07-01 21:06:45 +0000141U_BOOT_CMD(
wdenk4b248f32004-03-14 16:51:43 +0000142 bmp, 5, 1, do_bmp,
Peter Tyser2fb26042009-01-27 18:03:12 -0600143 "manipulate BMP image data",
wdenk4b248f32004-03-14 16:51:43 +0000144 "info <imageAddr> - display image info\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200145 "bmp display <imageAddr> [x y] - display image at x,y"
wdenkb0fce992003-06-29 21:03:46 +0000146);
147
wdenk059ae172003-04-20 16:52:09 +0000148/*
149 * Subroutine: bmp_info
150 *
151 * Description: Show information about bmp file in memory
152 *
153 * Inputs: addr address of the bmp file
154 *
155 * Return: None
156 *
157 */
158static int bmp_info(ulong addr)
159{
160 bmp_image_t *bmp=(bmp_image_t *)addr;
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +0100161 unsigned long len;
Stefan Roesec29ab9d2005-10-08 10:19:07 +0200162
wdenk059ae172003-04-20 16:52:09 +0000163 if (!((bmp->header.signature[0]=='B') &&
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +0100164 (bmp->header.signature[1]=='M')))
165 bmp = gunzip_bmp(addr, &len);
Stefan Roesec29ab9d2005-10-08 10:19:07 +0200166
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +0100167 if (bmp == NULL) {
wdenk059ae172003-04-20 16:52:09 +0000168 printf("There is no valid bmp file at the given address\n");
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +0100169 return 1;
wdenk059ae172003-04-20 16:52:09 +0000170 }
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +0100171
wdenk059ae172003-04-20 16:52:09 +0000172 printf("Image size : %d x %d\n", le32_to_cpu(bmp->header.width),
173 le32_to_cpu(bmp->header.height));
174 printf("Bits per pixel: %d\n", le16_to_cpu(bmp->header.bit_count));
175 printf("Compression : %d\n", le32_to_cpu(bmp->header.compression));
Stefan Roesec29ab9d2005-10-08 10:19:07 +0200176
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +0100177 if ((unsigned long)bmp != addr)
178 free(bmp);
Stefan Roesec29ab9d2005-10-08 10:19:07 +0200179
wdenk059ae172003-04-20 16:52:09 +0000180 return(0);
181}
182
183/*
184 * Subroutine: bmp_display
185 *
186 * Description: Display bmp file located in memory
187 *
188 * Inputs: addr address of the bmp file
189 *
190 * Return: None
191 *
192 */
wdenk4b248f32004-03-14 16:51:43 +0000193static int bmp_display(ulong addr, int x, int y)
wdenk059ae172003-04-20 16:52:09 +0000194{
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +0100195 int ret;
196 bmp_image_t *bmp = (bmp_image_t *)addr;
197 unsigned long len;
198
199 if (!((bmp->header.signature[0]=='B') &&
200 (bmp->header.signature[1]=='M')))
201 bmp = gunzip_bmp(addr, &len);
202
203 if (!bmp) {
204 printf("There is no valid bmp file at the given address\n");
205 return 1;
206 }
207
wdenk281e00a2004-08-01 22:48:16 +0000208#if defined(CONFIG_LCD)
209 extern int lcd_display_bitmap (ulong, int, int);
wdenk059ae172003-04-20 16:52:09 +0000210
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +0100211 ret = lcd_display_bitmap ((unsigned long)bmp, x, y);
wdenk281e00a2004-08-01 22:48:16 +0000212#elif defined(CONFIG_VIDEO)
wdenk4b248f32004-03-14 16:51:43 +0000213 extern int video_display_bitmap (ulong, int, int);
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +0100214
215 ret = video_display_bitmap ((unsigned long)bmp, x, y);
wdenk281e00a2004-08-01 22:48:16 +0000216#else
217# error bmp_display() requires CONFIG_LCD or CONFIG_VIDEO
wdenk4b248f32004-03-14 16:51:43 +0000218#endif
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +0100219
220 if ((unsigned long)bmp != addr)
221 free(bmp);
222
223 return ret;
wdenk059ae172003-04-20 16:52:09 +0000224}