blob: b8809e3bf5409bd154f2ced0a193392794ac32df [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);
wdenk059ae172003-04-20 16:52:09 +000036
37/*
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +010038 * Allocate and decompress a BMP image using gunzip().
39 *
40 * Returns a pointer to the decompressed image data. Must be freed by
41 * the caller after use.
42 *
43 * Returns NULL if decompression failed, or if the decompressed data
44 * didn't contain a valid BMP signature.
45 */
46#ifdef CONFIG_VIDEO_BMP_GZIP
Mark Jacksonc01171e2009-07-21 11:30:53 +010047bmp_image_t *gunzip_bmp(unsigned long addr, unsigned long *lenp)
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +010048{
49 void *dst;
50 unsigned long len;
51 bmp_image_t *bmp;
52
53 /*
54 * Decompress bmp image
55 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020056 len = CONFIG_SYS_VIDEO_LOGO_MAX_SIZE;
57 dst = malloc(CONFIG_SYS_VIDEO_LOGO_MAX_SIZE);
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +010058 if (dst == NULL) {
59 puts("Error: malloc in gunzip failed!\n");
60 return NULL;
61 }
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020062 if (gunzip(dst, CONFIG_SYS_VIDEO_LOGO_MAX_SIZE, (uchar *)addr, &len) != 0) {
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +010063 free(dst);
64 return NULL;
65 }
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020066 if (len == CONFIG_SYS_VIDEO_LOGO_MAX_SIZE)
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +010067 puts("Image could be truncated"
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020068 " (increase CONFIG_SYS_VIDEO_LOGO_MAX_SIZE)!\n");
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +010069
70 bmp = dst;
71
72 /*
73 * Check for bmp mark 'BM'
74 */
75 if (!((bmp->header.signature[0] == 'B') &&
76 (bmp->header.signature[1] == 'M'))) {
77 free(dst);
78 return NULL;
79 }
80
Wolfgang Denk17f79e42011-02-09 15:11:10 +010081 debug("Gzipped BMP image detected!\n");
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +010082
83 return bmp;
84}
85#else
Mark Jacksonc01171e2009-07-21 11:30:53 +010086bmp_image_t *gunzip_bmp(unsigned long addr, unsigned long *lenp)
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +010087{
88 return NULL;
89}
90#endif
91
Wolfgang Denk54841ab2010-06-28 22:00:46 +020092static int do_bmp_info(cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
Frans Meulenbroeks9acd4f02010-03-27 11:16:10 +010093{
94 ulong addr;
95
96 switch (argc) {
97 case 1: /* use load_addr as default address */
98 addr = load_addr;
99 break;
100 case 2: /* use argument */
101 addr = simple_strtoul(argv[1], NULL, 16);
102 break;
103 default:
Simon Glass4c12eeb2011-12-10 08:44:01 +0000104 return CMD_RET_USAGE;
Frans Meulenbroeks9acd4f02010-03-27 11:16:10 +0100105 }
106
107 return (bmp_info(addr));
108}
109
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200110static int do_bmp_display(cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
Frans Meulenbroeks9acd4f02010-03-27 11:16:10 +0100111{
112 ulong addr;
113 int x = 0, y = 0;
114
115 switch (argc) {
116 case 1: /* use load_addr as default address */
117 addr = load_addr;
118 break;
119 case 2: /* use argument */
120 addr = simple_strtoul(argv[1], NULL, 16);
121 break;
122 case 4:
123 addr = simple_strtoul(argv[1], NULL, 16);
124 x = simple_strtoul(argv[2], NULL, 10);
125 y = simple_strtoul(argv[3], NULL, 10);
126 break;
127 default:
Simon Glass4c12eeb2011-12-10 08:44:01 +0000128 return CMD_RET_USAGE;
Frans Meulenbroeks9acd4f02010-03-27 11:16:10 +0100129 }
130
131 return (bmp_display(addr, x, y));
132}
133
134static 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, "", ""),
137};
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +0100138
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200139#ifdef CONFIG_NEEDS_MANUAL_RELOC
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200140void bmp_reloc(void) {
141 fixup_cmdtable(cmd_bmp_sub, ARRAY_SIZE(cmd_bmp_sub));
142}
143#endif
144
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +0100145/*
wdenk059ae172003-04-20 16:52:09 +0000146 * Subroutine: do_bmp
147 *
148 * Description: Handler for 'bmp' command..
149 *
150 * Inputs: argv[1] contains the subcommand
151 *
152 * Return: None
153 *
154 */
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200155static int do_bmp(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk059ae172003-04-20 16:52:09 +0000156{
Frans Meulenbroeks9acd4f02010-03-27 11:16:10 +0100157 cmd_tbl_t *c;
wdenk059ae172003-04-20 16:52:09 +0000158
Frans Meulenbroeks9acd4f02010-03-27 11:16:10 +0100159 /* Strip off leading 'bmp' command argument */
160 argc--;
161 argv++;
wdenk059ae172003-04-20 16:52:09 +0000162
Frans Meulenbroeks9acd4f02010-03-27 11:16:10 +0100163 c = find_cmd_tbl(argv[0], &cmd_bmp_sub[0], ARRAY_SIZE(cmd_bmp_sub));
164
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200165 if (c)
Frans Meulenbroeks9acd4f02010-03-27 11:16:10 +0100166 return c->cmd(cmdtp, flag, argc, argv);
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200167 else
Simon Glass4c12eeb2011-12-10 08:44:01 +0000168 return CMD_RET_USAGE;
wdenk059ae172003-04-20 16:52:09 +0000169}
170
wdenk0d498392003-07-01 21:06:45 +0000171U_BOOT_CMD(
wdenk4b248f32004-03-14 16:51:43 +0000172 bmp, 5, 1, do_bmp,
Peter Tyser2fb26042009-01-27 18:03:12 -0600173 "manipulate BMP image data",
wdenk4b248f32004-03-14 16:51:43 +0000174 "info <imageAddr> - display image info\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200175 "bmp display <imageAddr> [x y] - display image at x,y"
wdenkb0fce992003-06-29 21:03:46 +0000176);
177
wdenk059ae172003-04-20 16:52:09 +0000178/*
179 * Subroutine: bmp_info
180 *
181 * Description: Show information about bmp file in memory
182 *
183 * Inputs: addr address of the bmp file
184 *
185 * Return: None
186 *
187 */
188static int bmp_info(ulong addr)
189{
190 bmp_image_t *bmp=(bmp_image_t *)addr;
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +0100191 unsigned long len;
Stefan Roesec29ab9d2005-10-08 10:19:07 +0200192
wdenk059ae172003-04-20 16:52:09 +0000193 if (!((bmp->header.signature[0]=='B') &&
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +0100194 (bmp->header.signature[1]=='M')))
195 bmp = gunzip_bmp(addr, &len);
Stefan Roesec29ab9d2005-10-08 10:19:07 +0200196
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +0100197 if (bmp == NULL) {
wdenk059ae172003-04-20 16:52:09 +0000198 printf("There is no valid bmp file at the given address\n");
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +0100199 return 1;
wdenk059ae172003-04-20 16:52:09 +0000200 }
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +0100201
wdenk059ae172003-04-20 16:52:09 +0000202 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));
Stefan Roesec29ab9d2005-10-08 10:19:07 +0200206
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +0100207 if ((unsigned long)bmp != addr)
208 free(bmp);
Stefan Roesec29ab9d2005-10-08 10:19:07 +0200209
wdenk059ae172003-04-20 16:52:09 +0000210 return(0);
211}
212
213/*
214 * Subroutine: bmp_display
215 *
216 * Description: Display bmp file located in memory
217 *
218 * Inputs: addr address of the bmp file
219 *
220 * Return: None
221 *
222 */
Anatolij Gustschinde3b49c2012-04-27 04:38:06 +0000223int bmp_display(ulong addr, int x, int y)
wdenk059ae172003-04-20 16:52:09 +0000224{
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +0100225 int ret;
226 bmp_image_t *bmp = (bmp_image_t *)addr;
227 unsigned long len;
228
229 if (!((bmp->header.signature[0]=='B') &&
230 (bmp->header.signature[1]=='M')))
231 bmp = gunzip_bmp(addr, &len);
232
233 if (!bmp) {
234 printf("There is no valid bmp file at the given address\n");
235 return 1;
236 }
237
wdenk281e00a2004-08-01 22:48:16 +0000238#if defined(CONFIG_LCD)
Che-Liang Chiou02110902011-10-20 23:07:03 +0000239 ret = lcd_display_bitmap((ulong)bmp, x, y);
wdenk281e00a2004-08-01 22:48:16 +0000240#elif defined(CONFIG_VIDEO)
wdenk4b248f32004-03-14 16:51:43 +0000241 extern int video_display_bitmap (ulong, int, int);
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +0100242
243 ret = video_display_bitmap ((unsigned long)bmp, x, y);
wdenk281e00a2004-08-01 22:48:16 +0000244#else
245# error bmp_display() requires CONFIG_LCD or CONFIG_VIDEO
wdenk4b248f32004-03-14 16:51:43 +0000246#endif
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +0100247
248 if ((unsigned long)bmp != addr)
249 free(bmp);
250
251 return ret;
wdenk059ae172003-04-20 16:52:09 +0000252}