blob: a7c5fbd2691273da14f9ced2c7c3310773e4c001 [file] [log] [blame]
wdenkf5f146e2003-04-20 16:52:09 +00001/*
2 * (C) Copyright 2002
wdenkb9bbd242003-06-30 16:24:52 +00003 * Detlev Zundel, DENX Software Engineering, dzu@denx.de.
wdenkf5f146e2003-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 Rubini465c45a2009-07-19 17:52:27 +020029#include <lcd.h>
wdenkf5f146e2003-04-20 16:52:09 +000030#include <bmp_layout.h>
31#include <command.h>
wdenk9ca7bbc2004-10-09 23:25:58 +000032#include <asm/byteorder.h>
Stefan Roese13b93692005-10-08 10:19:07 +020033#include <malloc.h>
Anatolij Gustschinb9b5eaf2013-07-02 00:04:05 +020034#include <splash.h>
Stefan Reinauer987d1d82012-09-28 15:11:11 +000035#include <video.h>
wdenkf5f146e2003-04-20 16:52:09 +000036
wdenkf5f146e2003-04-20 16:52:09 +000037static int bmp_info (ulong addr);
wdenkf5f146e2003-04-20 16:52:09 +000038
39/*
Hans-Christian Egtvedt68d89dc2007-11-30 17:29:59 +010040 * Allocate and decompress a BMP image using gunzip().
41 *
Piotr Wilczeke59e0ff2013-06-05 08:14:30 +020042 * Returns a pointer to the decompressed image data. This pointer is
43 * aligned to 32-bit-aligned-address + 2.
44 * See doc/README.displaying-bmps for explanation.
45 *
46 * The allocation address is passed to 'alloc_addr' and must be freed
47 * by the caller after use.
Hans-Christian Egtvedt68d89dc2007-11-30 17:29:59 +010048 *
49 * Returns NULL if decompression failed, or if the decompressed data
50 * didn't contain a valid BMP signature.
51 */
52#ifdef CONFIG_VIDEO_BMP_GZIP
Piotr Wilczeke59e0ff2013-06-05 08:14:30 +020053bmp_image_t *gunzip_bmp(unsigned long addr, unsigned long *lenp,
54 void **alloc_addr)
Hans-Christian Egtvedt68d89dc2007-11-30 17:29:59 +010055{
56 void *dst;
57 unsigned long len;
58 bmp_image_t *bmp;
59
60 /*
61 * Decompress bmp image
62 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020063 len = CONFIG_SYS_VIDEO_LOGO_MAX_SIZE;
Piotr Wilczeke59e0ff2013-06-05 08:14:30 +020064 /* allocate extra 3 bytes for 32-bit-aligned-address + 2 alignment */
65 dst = malloc(CONFIG_SYS_VIDEO_LOGO_MAX_SIZE + 3);
Hans-Christian Egtvedt68d89dc2007-11-30 17:29:59 +010066 if (dst == NULL) {
67 puts("Error: malloc in gunzip failed!\n");
68 return NULL;
69 }
Piotr Wilczeke59e0ff2013-06-05 08:14:30 +020070
71 bmp = dst;
72
73 /* align to 32-bit-aligned-address + 2 */
74 bmp = (bmp_image_t *)((((unsigned int)dst + 1) & ~3) + 2);
75
76 if (gunzip(bmp, CONFIG_SYS_VIDEO_LOGO_MAX_SIZE, (uchar *)addr, &len) != 0) {
Hans-Christian Egtvedt68d89dc2007-11-30 17:29:59 +010077 free(dst);
78 return NULL;
79 }
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020080 if (len == CONFIG_SYS_VIDEO_LOGO_MAX_SIZE)
Hans-Christian Egtvedt68d89dc2007-11-30 17:29:59 +010081 puts("Image could be truncated"
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020082 " (increase CONFIG_SYS_VIDEO_LOGO_MAX_SIZE)!\n");
Hans-Christian Egtvedt68d89dc2007-11-30 17:29:59 +010083
Hans-Christian Egtvedt68d89dc2007-11-30 17:29:59 +010084 /*
85 * Check for bmp mark 'BM'
86 */
87 if (!((bmp->header.signature[0] == 'B') &&
88 (bmp->header.signature[1] == 'M'))) {
89 free(dst);
90 return NULL;
91 }
92
Wolfgang Denkaf42bb32011-02-09 15:11:10 +010093 debug("Gzipped BMP image detected!\n");
Hans-Christian Egtvedt68d89dc2007-11-30 17:29:59 +010094
Piotr Wilczeke59e0ff2013-06-05 08:14:30 +020095 *alloc_addr = dst;
Hans-Christian Egtvedt68d89dc2007-11-30 17:29:59 +010096 return bmp;
97}
98#else
Piotr Wilczeke59e0ff2013-06-05 08:14:30 +020099bmp_image_t *gunzip_bmp(unsigned long addr, unsigned long *lenp,
100 void **alloc_addr)
Hans-Christian Egtvedt68d89dc2007-11-30 17:29:59 +0100101{
102 return NULL;
103}
104#endif
105
Wolfgang Denk6262d0212010-06-28 22:00:46 +0200106static int do_bmp_info(cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
Frans Meulenbroeksc59bc502010-03-27 11:16:10 +0100107{
108 ulong addr;
Hans-Christian Egtvedt68d89dc2007-11-30 17:29:59 +0100109
Frans Meulenbroeksc59bc502010-03-27 11:16:10 +0100110 switch (argc) {
111 case 1: /* use load_addr as default address */
112 addr = load_addr;
113 break;
114 case 2: /* use argument */
115 addr = simple_strtoul(argv[1], NULL, 16);
116 break;
117 default:
Simon Glassa06dfc72011-12-10 08:44:01 +0000118 return CMD_RET_USAGE;
Frans Meulenbroeksc59bc502010-03-27 11:16:10 +0100119 }
120
121 return (bmp_info(addr));
122}
123
Wolfgang Denk6262d0212010-06-28 22:00:46 +0200124static int do_bmp_display(cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
wdenkf5f146e2003-04-20 16:52:09 +0000125{
126 ulong addr;
wdenke55402c2004-03-14 16:51:43 +0000127 int x = 0, y = 0;
wdenkf5f146e2003-04-20 16:52:09 +0000128
Anatolij Gustschinb9b5eaf2013-07-02 00:04:05 +0200129 splash_get_pos(&x, &y);
130
wdenkf5f146e2003-04-20 16:52:09 +0000131 switch (argc) {
Frans Meulenbroeksc59bc502010-03-27 11:16:10 +0100132 case 1: /* use load_addr as default address */
wdenkf5f146e2003-04-20 16:52:09 +0000133 addr = load_addr;
134 break;
Frans Meulenbroeksc59bc502010-03-27 11:16:10 +0100135 case 2: /* use argument */
136 addr = simple_strtoul(argv[1], NULL, 16);
wdenkf5f146e2003-04-20 16:52:09 +0000137 break;
Frans Meulenbroeksc59bc502010-03-27 11:16:10 +0100138 case 4:
139 addr = simple_strtoul(argv[1], NULL, 16);
140 x = simple_strtoul(argv[2], NULL, 10);
141 y = simple_strtoul(argv[3], NULL, 10);
wdenke55402c2004-03-14 16:51:43 +0000142 break;
wdenkf5f146e2003-04-20 16:52:09 +0000143 default:
Simon Glassa06dfc72011-12-10 08:44:01 +0000144 return CMD_RET_USAGE;
wdenkf5f146e2003-04-20 16:52:09 +0000145 }
146
Frans Meulenbroeksc59bc502010-03-27 11:16:10 +0100147 return (bmp_display(addr, x, y));
148}
149
150static cmd_tbl_t cmd_bmp_sub[] = {
151 U_BOOT_CMD_MKENT(info, 3, 0, do_bmp_info, "", ""),
152 U_BOOT_CMD_MKENT(display, 5, 0, do_bmp_display, "", ""),
153};
154
Wolfgang Denkd0813e52010-10-28 20:00:11 +0200155#ifdef CONFIG_NEEDS_MANUAL_RELOC
Heiko Schocheraeb29912010-09-17 13:10:39 +0200156void bmp_reloc(void) {
157 fixup_cmdtable(cmd_bmp_sub, ARRAY_SIZE(cmd_bmp_sub));
158}
159#endif
160
Frans Meulenbroeksc59bc502010-03-27 11:16:10 +0100161/*
162 * Subroutine: do_bmp
163 *
164 * Description: Handler for 'bmp' command..
165 *
166 * Inputs: argv[1] contains the subcommand
167 *
168 * Return: None
169 *
170 */
Wolfgang Denk6262d0212010-06-28 22:00:46 +0200171static int do_bmp(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Frans Meulenbroeksc59bc502010-03-27 11:16:10 +0100172{
173 cmd_tbl_t *c;
174
175 /* Strip off leading 'bmp' command argument */
176 argc--;
177 argv++;
178
179 c = find_cmd_tbl(argv[0], &cmd_bmp_sub[0], ARRAY_SIZE(cmd_bmp_sub));
180
Wolfgang Denk3b683112010-07-17 01:06:04 +0200181 if (c)
Frans Meulenbroeksc59bc502010-03-27 11:16:10 +0100182 return c->cmd(cmdtp, flag, argc, argv);
Wolfgang Denk3b683112010-07-17 01:06:04 +0200183 else
Simon Glassa06dfc72011-12-10 08:44:01 +0000184 return CMD_RET_USAGE;
wdenkf5f146e2003-04-20 16:52:09 +0000185}
186
wdenkf287a242003-07-01 21:06:45 +0000187U_BOOT_CMD(
wdenke55402c2004-03-14 16:51:43 +0000188 bmp, 5, 1, do_bmp,
Peter Tyserdfb72b82009-01-27 18:03:12 -0600189 "manipulate BMP image data",
wdenke55402c2004-03-14 16:51:43 +0000190 "info <imageAddr> - display image info\n"
Wolfgang Denkc54781c2009-05-24 17:06:54 +0200191 "bmp display <imageAddr> [x y] - display image at x,y"
wdenkf12e3962003-06-29 21:03:46 +0000192);
193
wdenkf5f146e2003-04-20 16:52:09 +0000194/*
195 * Subroutine: bmp_info
196 *
197 * Description: Show information about bmp file in memory
198 *
199 * Inputs: addr address of the bmp file
200 *
201 * Return: None
202 *
203 */
204static int bmp_info(ulong addr)
205{
206 bmp_image_t *bmp=(bmp_image_t *)addr;
Piotr Wilczeke59e0ff2013-06-05 08:14:30 +0200207 void *bmp_alloc_addr = NULL;
Hans-Christian Egtvedt68d89dc2007-11-30 17:29:59 +0100208 unsigned long len;
Stefan Roese13b93692005-10-08 10:19:07 +0200209
wdenkf5f146e2003-04-20 16:52:09 +0000210 if (!((bmp->header.signature[0]=='B') &&
Hans-Christian Egtvedt68d89dc2007-11-30 17:29:59 +0100211 (bmp->header.signature[1]=='M')))
Piotr Wilczeke59e0ff2013-06-05 08:14:30 +0200212 bmp = gunzip_bmp(addr, &len, &bmp_alloc_addr);
Stefan Roese13b93692005-10-08 10:19:07 +0200213
Hans-Christian Egtvedt68d89dc2007-11-30 17:29:59 +0100214 if (bmp == NULL) {
wdenkf5f146e2003-04-20 16:52:09 +0000215 printf("There is no valid bmp file at the given address\n");
Hans-Christian Egtvedt68d89dc2007-11-30 17:29:59 +0100216 return 1;
wdenkf5f146e2003-04-20 16:52:09 +0000217 }
Hans-Christian Egtvedt68d89dc2007-11-30 17:29:59 +0100218
wdenkf5f146e2003-04-20 16:52:09 +0000219 printf("Image size : %d x %d\n", le32_to_cpu(bmp->header.width),
220 le32_to_cpu(bmp->header.height));
221 printf("Bits per pixel: %d\n", le16_to_cpu(bmp->header.bit_count));
222 printf("Compression : %d\n", le32_to_cpu(bmp->header.compression));
Stefan Roese13b93692005-10-08 10:19:07 +0200223
Piotr Wilczeke59e0ff2013-06-05 08:14:30 +0200224 if (bmp_alloc_addr)
225 free(bmp_alloc_addr);
Stefan Roese13b93692005-10-08 10:19:07 +0200226
wdenkf5f146e2003-04-20 16:52:09 +0000227 return(0);
228}
229
230/*
231 * Subroutine: bmp_display
232 *
233 * Description: Display bmp file located in memory
234 *
235 * Inputs: addr address of the bmp file
236 *
237 * Return: None
238 *
239 */
Anatolij Gustschin7a49e6f2012-04-27 04:38:06 +0000240int bmp_display(ulong addr, int x, int y)
wdenkf5f146e2003-04-20 16:52:09 +0000241{
Hans-Christian Egtvedt68d89dc2007-11-30 17:29:59 +0100242 int ret;
243 bmp_image_t *bmp = (bmp_image_t *)addr;
Piotr Wilczeke59e0ff2013-06-05 08:14:30 +0200244 void *bmp_alloc_addr = NULL;
Hans-Christian Egtvedt68d89dc2007-11-30 17:29:59 +0100245 unsigned long len;
246
247 if (!((bmp->header.signature[0]=='B') &&
248 (bmp->header.signature[1]=='M')))
Piotr Wilczeke59e0ff2013-06-05 08:14:30 +0200249 bmp = gunzip_bmp(addr, &len, &bmp_alloc_addr);
Hans-Christian Egtvedt68d89dc2007-11-30 17:29:59 +0100250
251 if (!bmp) {
252 printf("There is no valid bmp file at the given address\n");
253 return 1;
254 }
255
wdenk7ac16102004-08-01 22:48:16 +0000256#if defined(CONFIG_LCD)
Che-Liang Chiou2444b172011-10-20 23:07:03 +0000257 ret = lcd_display_bitmap((ulong)bmp, x, y);
wdenk7ac16102004-08-01 22:48:16 +0000258#elif defined(CONFIG_VIDEO)
Stefan Reinauer987d1d82012-09-28 15:11:11 +0000259 ret = video_display_bitmap((unsigned long)bmp, x, y);
wdenk7ac16102004-08-01 22:48:16 +0000260#else
261# error bmp_display() requires CONFIG_LCD or CONFIG_VIDEO
wdenke55402c2004-03-14 16:51:43 +0000262#endif
Hans-Christian Egtvedt68d89dc2007-11-30 17:29:59 +0100263
Piotr Wilczeke59e0ff2013-06-05 08:14:30 +0200264 if (bmp_alloc_addr)
265 free(bmp_alloc_addr);
Hans-Christian Egtvedt68d89dc2007-11-30 17:29:59 +0100266
267 return ret;
wdenkf5f146e2003-04-20 16:52:09 +0000268}