blob: d51cc554c19fec927c61619d9bbf5b2776eb4724 [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
38/*
Hans-Christian Egtvedt43ef1c32007-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 Jacksonc01171e2009-07-21 11:30:53 +010048bmp_image_t *gunzip_bmp(unsigned long addr, unsigned long *lenp)
Hans-Christian Egtvedt43ef1c32007-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-VILLARD6d0f6bc2008-10-16 15:01:15 +020057 len = CONFIG_SYS_VIDEO_LOGO_MAX_SIZE;
58 dst = malloc(CONFIG_SYS_VIDEO_LOGO_MAX_SIZE);
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +010059 if (dst == NULL) {
60 puts("Error: malloc in gunzip failed!\n");
61 return NULL;
62 }
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020063 if (gunzip(dst, CONFIG_SYS_VIDEO_LOGO_MAX_SIZE, (uchar *)addr, &len) != 0) {
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +010064 free(dst);
65 return NULL;
66 }
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020067 if (len == CONFIG_SYS_VIDEO_LOGO_MAX_SIZE)
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +010068 puts("Image could be truncated"
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020069 " (increase CONFIG_SYS_VIDEO_LOGO_MAX_SIZE)!\n");
Hans-Christian Egtvedt43ef1c32007-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 Jacksonc01171e2009-07-21 11:30:53 +010087bmp_image_t *gunzip_bmp(unsigned long addr, unsigned long *lenp)
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +010088{
89 return NULL;
90}
91#endif
92
Wolfgang Denk54841ab2010-06-28 22:00:46 +020093static int do_bmp_info(cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
Frans Meulenbroeks9acd4f02010-03-27 11:16:10 +010094{
95 ulong addr;
96
97 switch (argc) {
98 case 1: /* use load_addr as default address */
99 addr = load_addr;
100 break;
101 case 2: /* use argument */
102 addr = simple_strtoul(argv[1], NULL, 16);
103 break;
104 default:
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200105 return cmd_usage(cmdtp);
Frans Meulenbroeks9acd4f02010-03-27 11:16:10 +0100106 }
107
108 return (bmp_info(addr));
109}
110
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200111static int do_bmp_display(cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
Frans Meulenbroeks9acd4f02010-03-27 11:16:10 +0100112{
113 ulong addr;
114 int x = 0, y = 0;
115
116 switch (argc) {
117 case 1: /* use load_addr as default address */
118 addr = load_addr;
119 break;
120 case 2: /* use argument */
121 addr = simple_strtoul(argv[1], NULL, 16);
122 break;
123 case 4:
124 addr = simple_strtoul(argv[1], NULL, 16);
125 x = simple_strtoul(argv[2], NULL, 10);
126 y = simple_strtoul(argv[3], NULL, 10);
127 break;
128 default:
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200129 return cmd_usage(cmdtp);
Frans Meulenbroeks9acd4f02010-03-27 11:16:10 +0100130 }
131
132 return (bmp_display(addr, x, y));
133}
134
135static cmd_tbl_t cmd_bmp_sub[] = {
136 U_BOOT_CMD_MKENT(info, 3, 0, do_bmp_info, "", ""),
137 U_BOOT_CMD_MKENT(display, 5, 0, do_bmp_display, "", ""),
138};
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +0100139
140/*
wdenk059ae172003-04-20 16:52:09 +0000141 * Subroutine: do_bmp
142 *
143 * Description: Handler for 'bmp' command..
144 *
145 * Inputs: argv[1] contains the subcommand
146 *
147 * Return: None
148 *
149 */
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200150static int do_bmp(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk059ae172003-04-20 16:52:09 +0000151{
Frans Meulenbroeks9acd4f02010-03-27 11:16:10 +0100152 cmd_tbl_t *c;
wdenk059ae172003-04-20 16:52:09 +0000153
Frans Meulenbroeks9acd4f02010-03-27 11:16:10 +0100154 /* Strip off leading 'bmp' command argument */
155 argc--;
156 argv++;
wdenk059ae172003-04-20 16:52:09 +0000157
Frans Meulenbroeks9acd4f02010-03-27 11:16:10 +0100158 c = find_cmd_tbl(argv[0], &cmd_bmp_sub[0], ARRAY_SIZE(cmd_bmp_sub));
159
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200160 if (c)
Frans Meulenbroeks9acd4f02010-03-27 11:16:10 +0100161 return c->cmd(cmdtp, flag, argc, argv);
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200162 else
163 return cmd_usage(cmdtp);
wdenk059ae172003-04-20 16:52:09 +0000164}
165
wdenk0d498392003-07-01 21:06:45 +0000166U_BOOT_CMD(
wdenk4b248f32004-03-14 16:51:43 +0000167 bmp, 5, 1, do_bmp,
Peter Tyser2fb26042009-01-27 18:03:12 -0600168 "manipulate BMP image data",
wdenk4b248f32004-03-14 16:51:43 +0000169 "info <imageAddr> - display image info\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200170 "bmp display <imageAddr> [x y] - display image at x,y"
wdenkb0fce992003-06-29 21:03:46 +0000171);
172
wdenk059ae172003-04-20 16:52:09 +0000173/*
174 * Subroutine: bmp_info
175 *
176 * Description: Show information about bmp file in memory
177 *
178 * Inputs: addr address of the bmp file
179 *
180 * Return: None
181 *
182 */
183static int bmp_info(ulong addr)
184{
185 bmp_image_t *bmp=(bmp_image_t *)addr;
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +0100186 unsigned long len;
Stefan Roesec29ab9d2005-10-08 10:19:07 +0200187
wdenk059ae172003-04-20 16:52:09 +0000188 if (!((bmp->header.signature[0]=='B') &&
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +0100189 (bmp->header.signature[1]=='M')))
190 bmp = gunzip_bmp(addr, &len);
Stefan Roesec29ab9d2005-10-08 10:19:07 +0200191
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +0100192 if (bmp == NULL) {
wdenk059ae172003-04-20 16:52:09 +0000193 printf("There is no valid bmp file at the given address\n");
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +0100194 return 1;
wdenk059ae172003-04-20 16:52:09 +0000195 }
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +0100196
wdenk059ae172003-04-20 16:52:09 +0000197 printf("Image size : %d x %d\n", le32_to_cpu(bmp->header.width),
198 le32_to_cpu(bmp->header.height));
199 printf("Bits per pixel: %d\n", le16_to_cpu(bmp->header.bit_count));
200 printf("Compression : %d\n", le32_to_cpu(bmp->header.compression));
Stefan Roesec29ab9d2005-10-08 10:19:07 +0200201
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +0100202 if ((unsigned long)bmp != addr)
203 free(bmp);
Stefan Roesec29ab9d2005-10-08 10:19:07 +0200204
wdenk059ae172003-04-20 16:52:09 +0000205 return(0);
206}
207
208/*
209 * Subroutine: bmp_display
210 *
211 * Description: Display bmp file located in memory
212 *
213 * Inputs: addr address of the bmp file
214 *
215 * Return: None
216 *
217 */
wdenk4b248f32004-03-14 16:51:43 +0000218static int bmp_display(ulong addr, int x, int y)
wdenk059ae172003-04-20 16:52:09 +0000219{
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +0100220 int ret;
221 bmp_image_t *bmp = (bmp_image_t *)addr;
222 unsigned long len;
223
224 if (!((bmp->header.signature[0]=='B') &&
225 (bmp->header.signature[1]=='M')))
226 bmp = gunzip_bmp(addr, &len);
227
228 if (!bmp) {
229 printf("There is no valid bmp file at the given address\n");
230 return 1;
231 }
232
wdenk281e00a2004-08-01 22:48:16 +0000233#if defined(CONFIG_LCD)
234 extern int lcd_display_bitmap (ulong, int, int);
wdenk059ae172003-04-20 16:52:09 +0000235
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +0100236 ret = lcd_display_bitmap ((unsigned long)bmp, x, y);
wdenk281e00a2004-08-01 22:48:16 +0000237#elif defined(CONFIG_VIDEO)
wdenk4b248f32004-03-14 16:51:43 +0000238 extern int video_display_bitmap (ulong, int, int);
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +0100239
240 ret = video_display_bitmap ((unsigned long)bmp, x, y);
wdenk281e00a2004-08-01 22:48:16 +0000241#else
242# error bmp_display() requires CONFIG_LCD or CONFIG_VIDEO
wdenk4b248f32004-03-14 16:51:43 +0000243#endif
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +0100244
245 if ((unsigned long)bmp != addr)
246 free(bmp);
247
248 return ret;
wdenk059ae172003-04-20 16:52:09 +0000249}