blob: 74ab24ca9467b280d7ce6a1b20a52a1cba221f30 [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>
wdenkf5f146e2003-04-20 16:52:09 +000034
wdenkf5f146e2003-04-20 16:52:09 +000035static int bmp_info (ulong addr);
wdenke55402c2004-03-14 16:51:43 +000036static int bmp_display (ulong addr, int x, int y);
wdenkf5f146e2003-04-20 16:52:09 +000037
38/*
Hans-Christian Egtvedt68d89dc2007-11-30 17:29:59 +010039 * Allocate and decompress a BMP image using gunzip().
40 *
41 * Returns a pointer to the decompressed image data. Must be freed by
42 * the caller after use.
43 *
44 * Returns NULL if decompression failed, or if the decompressed data
45 * didn't contain a valid BMP signature.
46 */
47#ifdef CONFIG_VIDEO_BMP_GZIP
Mark Jacksone68fdc32009-07-21 11:30:53 +010048bmp_image_t *gunzip_bmp(unsigned long addr, unsigned long *lenp)
Hans-Christian Egtvedt68d89dc2007-11-30 17:29:59 +010049{
50 void *dst;
51 unsigned long len;
52 bmp_image_t *bmp;
53
54 /*
55 * Decompress bmp image
56 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020057 len = CONFIG_SYS_VIDEO_LOGO_MAX_SIZE;
58 dst = malloc(CONFIG_SYS_VIDEO_LOGO_MAX_SIZE);
Hans-Christian Egtvedt68d89dc2007-11-30 17:29:59 +010059 if (dst == NULL) {
60 puts("Error: malloc in gunzip failed!\n");
61 return NULL;
62 }
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020063 if (gunzip(dst, CONFIG_SYS_VIDEO_LOGO_MAX_SIZE, (uchar *)addr, &len) != 0) {
Hans-Christian Egtvedt68d89dc2007-11-30 17:29:59 +010064 free(dst);
65 return NULL;
66 }
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020067 if (len == CONFIG_SYS_VIDEO_LOGO_MAX_SIZE)
Hans-Christian Egtvedt68d89dc2007-11-30 17:29:59 +010068 puts("Image could be truncated"
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020069 " (increase CONFIG_SYS_VIDEO_LOGO_MAX_SIZE)!\n");
Hans-Christian Egtvedt68d89dc2007-11-30 17:29:59 +010070
71 bmp = dst;
72
73 /*
74 * Check for bmp mark 'BM'
75 */
76 if (!((bmp->header.signature[0] == 'B') &&
77 (bmp->header.signature[1] == 'M'))) {
78 free(dst);
79 return NULL;
80 }
81
82 puts("Gzipped BMP image detected!\n");
83
84 return bmp;
85}
86#else
Mark Jacksone68fdc32009-07-21 11:30:53 +010087bmp_image_t *gunzip_bmp(unsigned long addr, unsigned long *lenp)
Hans-Christian Egtvedt68d89dc2007-11-30 17:29:59 +010088{
89 return NULL;
90}
91#endif
92
93
94/*
wdenkf5f146e2003-04-20 16:52:09 +000095 * Subroutine: do_bmp
96 *
97 * Description: Handler for 'bmp' command..
98 *
99 * Inputs: argv[1] contains the subcommand
100 *
101 * Return: None
102 *
103 */
104int do_bmp(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
105{
106 ulong addr;
wdenke55402c2004-03-14 16:51:43 +0000107 int x = 0, y = 0;
wdenkf5f146e2003-04-20 16:52:09 +0000108
109 switch (argc) {
110 case 2: /* use load_addr as default address */
111 addr = load_addr;
112 break;
113 case 3: /* use argument */
114 addr = simple_strtoul(argv[2], NULL, 16);
115 break;
wdenke55402c2004-03-14 16:51:43 +0000116 case 5:
117 addr = simple_strtoul(argv[2], NULL, 16);
118 x = simple_strtoul(argv[3], NULL, 10);
119 y = simple_strtoul(argv[4], NULL, 10);
120 break;
wdenkf5f146e2003-04-20 16:52:09 +0000121 default:
Peter Tyserddb3af92009-01-27 18:03:10 -0600122 cmd_usage(cmdtp);
wdenkf5f146e2003-04-20 16:52:09 +0000123 return 1;
124 }
125
126 /* Allow for short names
127 * Adjust length if more sub-commands get added
128 */
129 if (strncmp(argv[1],"info",1) == 0) {
130 return (bmp_info(addr));
131 } else if (strncmp(argv[1],"display",1) == 0) {
wdenke55402c2004-03-14 16:51:43 +0000132 return (bmp_display(addr, x, y));
wdenkf5f146e2003-04-20 16:52:09 +0000133 } else {
Peter Tyserddb3af92009-01-27 18:03:10 -0600134 cmd_usage(cmdtp);
wdenkf5f146e2003-04-20 16:52:09 +0000135 return 1;
136 }
137}
138
wdenkf287a242003-07-01 21:06:45 +0000139U_BOOT_CMD(
wdenke55402c2004-03-14 16:51:43 +0000140 bmp, 5, 1, do_bmp,
Peter Tyserdfb72b82009-01-27 18:03:12 -0600141 "manipulate BMP image data",
wdenke55402c2004-03-14 16:51:43 +0000142 "info <imageAddr> - display image info\n"
Wolfgang Denkc54781c2009-05-24 17:06:54 +0200143 "bmp display <imageAddr> [x y] - display image at x,y"
wdenkf12e3962003-06-29 21:03:46 +0000144);
145
wdenkf5f146e2003-04-20 16:52:09 +0000146/*
147 * Subroutine: bmp_info
148 *
149 * Description: Show information about bmp file in memory
150 *
151 * Inputs: addr address of the bmp file
152 *
153 * Return: None
154 *
155 */
156static int bmp_info(ulong addr)
157{
158 bmp_image_t *bmp=(bmp_image_t *)addr;
Hans-Christian Egtvedt68d89dc2007-11-30 17:29:59 +0100159 unsigned long len;
Stefan Roese13b93692005-10-08 10:19:07 +0200160
wdenkf5f146e2003-04-20 16:52:09 +0000161 if (!((bmp->header.signature[0]=='B') &&
Hans-Christian Egtvedt68d89dc2007-11-30 17:29:59 +0100162 (bmp->header.signature[1]=='M')))
163 bmp = gunzip_bmp(addr, &len);
Stefan Roese13b93692005-10-08 10:19:07 +0200164
Hans-Christian Egtvedt68d89dc2007-11-30 17:29:59 +0100165 if (bmp == NULL) {
wdenkf5f146e2003-04-20 16:52:09 +0000166 printf("There is no valid bmp file at the given address\n");
Hans-Christian Egtvedt68d89dc2007-11-30 17:29:59 +0100167 return 1;
wdenkf5f146e2003-04-20 16:52:09 +0000168 }
Hans-Christian Egtvedt68d89dc2007-11-30 17:29:59 +0100169
wdenkf5f146e2003-04-20 16:52:09 +0000170 printf("Image size : %d x %d\n", le32_to_cpu(bmp->header.width),
171 le32_to_cpu(bmp->header.height));
172 printf("Bits per pixel: %d\n", le16_to_cpu(bmp->header.bit_count));
173 printf("Compression : %d\n", le32_to_cpu(bmp->header.compression));
Stefan Roese13b93692005-10-08 10:19:07 +0200174
Hans-Christian Egtvedt68d89dc2007-11-30 17:29:59 +0100175 if ((unsigned long)bmp != addr)
176 free(bmp);
Stefan Roese13b93692005-10-08 10:19:07 +0200177
wdenkf5f146e2003-04-20 16:52:09 +0000178 return(0);
179}
180
181/*
182 * Subroutine: bmp_display
183 *
184 * Description: Display bmp file located in memory
185 *
186 * Inputs: addr address of the bmp file
187 *
188 * Return: None
189 *
190 */
wdenke55402c2004-03-14 16:51:43 +0000191static int bmp_display(ulong addr, int x, int y)
wdenkf5f146e2003-04-20 16:52:09 +0000192{
Hans-Christian Egtvedt68d89dc2007-11-30 17:29:59 +0100193 int ret;
194 bmp_image_t *bmp = (bmp_image_t *)addr;
195 unsigned long len;
196
197 if (!((bmp->header.signature[0]=='B') &&
198 (bmp->header.signature[1]=='M')))
199 bmp = gunzip_bmp(addr, &len);
200
201 if (!bmp) {
202 printf("There is no valid bmp file at the given address\n");
203 return 1;
204 }
205
wdenk7ac16102004-08-01 22:48:16 +0000206#if defined(CONFIG_LCD)
207 extern int lcd_display_bitmap (ulong, int, int);
wdenkf5f146e2003-04-20 16:52:09 +0000208
Hans-Christian Egtvedt68d89dc2007-11-30 17:29:59 +0100209 ret = lcd_display_bitmap ((unsigned long)bmp, x, y);
wdenk7ac16102004-08-01 22:48:16 +0000210#elif defined(CONFIG_VIDEO)
wdenke55402c2004-03-14 16:51:43 +0000211 extern int video_display_bitmap (ulong, int, int);
Hans-Christian Egtvedt68d89dc2007-11-30 17:29:59 +0100212
213 ret = video_display_bitmap ((unsigned long)bmp, x, y);
wdenk7ac16102004-08-01 22:48:16 +0000214#else
215# error bmp_display() requires CONFIG_LCD or CONFIG_VIDEO
wdenke55402c2004-03-14 16:51:43 +0000216#endif
Hans-Christian Egtvedt68d89dc2007-11-30 17:29:59 +0100217
218 if ((unsigned long)bmp != addr)
219 free(bmp);
220
221 return ret;
wdenkf5f146e2003-04-20 16:52:09 +0000222}