blob: a7c5fbd2691273da14f9ced2c7c3310773e4c001 [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>
Anatolij Gustschinff8fb562013-07-02 00:04:05 +020034#include <splash.h>
Stefan Reinauerf674f7c2012-09-28 15:11:11 +000035#include <video.h>
wdenk059ae172003-04-20 16:52:09 +000036
wdenk059ae172003-04-20 16:52:09 +000037static int bmp_info (ulong addr);
wdenk059ae172003-04-20 16:52:09 +000038
39/*
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +010040 * Allocate and decompress a BMP image using gunzip().
41 *
Piotr Wilczekf7ef9d62013-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 Egtvedt43ef1c32007-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 Wilczekf7ef9d62013-06-05 08:14:30 +020053bmp_image_t *gunzip_bmp(unsigned long addr, unsigned long *lenp,
54 void **alloc_addr)
Hans-Christian Egtvedt43ef1c32007-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-VILLARD6d0f6bc2008-10-16 15:01:15 +020063 len = CONFIG_SYS_VIDEO_LOGO_MAX_SIZE;
Piotr Wilczekf7ef9d62013-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 Egtvedt43ef1c32007-11-30 17:29:59 +010066 if (dst == NULL) {
67 puts("Error: malloc in gunzip failed!\n");
68 return NULL;
69 }
Piotr Wilczekf7ef9d62013-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 Egtvedt43ef1c32007-11-30 17:29:59 +010077 free(dst);
78 return NULL;
79 }
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020080 if (len == CONFIG_SYS_VIDEO_LOGO_MAX_SIZE)
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +010081 puts("Image could be truncated"
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020082 " (increase CONFIG_SYS_VIDEO_LOGO_MAX_SIZE)!\n");
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +010083
Hans-Christian Egtvedt43ef1c32007-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 Denk17f79e42011-02-09 15:11:10 +010093 debug("Gzipped BMP image detected!\n");
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +010094
Piotr Wilczekf7ef9d62013-06-05 08:14:30 +020095 *alloc_addr = dst;
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +010096 return bmp;
97}
98#else
Piotr Wilczekf7ef9d62013-06-05 08:14:30 +020099bmp_image_t *gunzip_bmp(unsigned long addr, unsigned long *lenp,
100 void **alloc_addr)
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +0100101{
102 return NULL;
103}
104#endif
105
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200106static int do_bmp_info(cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
Frans Meulenbroeks9acd4f02010-03-27 11:16:10 +0100107{
108 ulong addr;
109
110 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 Glass4c12eeb2011-12-10 08:44:01 +0000118 return CMD_RET_USAGE;
Frans Meulenbroeks9acd4f02010-03-27 11:16:10 +0100119 }
120
121 return (bmp_info(addr));
122}
123
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200124static int do_bmp_display(cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
Frans Meulenbroeks9acd4f02010-03-27 11:16:10 +0100125{
126 ulong addr;
127 int x = 0, y = 0;
128
Anatolij Gustschinff8fb562013-07-02 00:04:05 +0200129 splash_get_pos(&x, &y);
130
Frans Meulenbroeks9acd4f02010-03-27 11:16:10 +0100131 switch (argc) {
132 case 1: /* use load_addr as default address */
133 addr = load_addr;
134 break;
135 case 2: /* use argument */
136 addr = simple_strtoul(argv[1], NULL, 16);
137 break;
138 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);
142 break;
143 default:
Simon Glass4c12eeb2011-12-10 08:44:01 +0000144 return CMD_RET_USAGE;
Frans Meulenbroeks9acd4f02010-03-27 11:16:10 +0100145 }
146
147 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};
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +0100154
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200155#ifdef CONFIG_NEEDS_MANUAL_RELOC
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200156void bmp_reloc(void) {
157 fixup_cmdtable(cmd_bmp_sub, ARRAY_SIZE(cmd_bmp_sub));
158}
159#endif
160
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +0100161/*
wdenk059ae172003-04-20 16:52:09 +0000162 * 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 Denk54841ab2010-06-28 22:00:46 +0200171static int do_bmp(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk059ae172003-04-20 16:52:09 +0000172{
Frans Meulenbroeks9acd4f02010-03-27 11:16:10 +0100173 cmd_tbl_t *c;
wdenk059ae172003-04-20 16:52:09 +0000174
Frans Meulenbroeks9acd4f02010-03-27 11:16:10 +0100175 /* Strip off leading 'bmp' command argument */
176 argc--;
177 argv++;
wdenk059ae172003-04-20 16:52:09 +0000178
Frans Meulenbroeks9acd4f02010-03-27 11:16:10 +0100179 c = find_cmd_tbl(argv[0], &cmd_bmp_sub[0], ARRAY_SIZE(cmd_bmp_sub));
180
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200181 if (c)
Frans Meulenbroeks9acd4f02010-03-27 11:16:10 +0100182 return c->cmd(cmdtp, flag, argc, argv);
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200183 else
Simon Glass4c12eeb2011-12-10 08:44:01 +0000184 return CMD_RET_USAGE;
wdenk059ae172003-04-20 16:52:09 +0000185}
186
wdenk0d498392003-07-01 21:06:45 +0000187U_BOOT_CMD(
wdenk4b248f32004-03-14 16:51:43 +0000188 bmp, 5, 1, do_bmp,
Peter Tyser2fb26042009-01-27 18:03:12 -0600189 "manipulate BMP image data",
wdenk4b248f32004-03-14 16:51:43 +0000190 "info <imageAddr> - display image info\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200191 "bmp display <imageAddr> [x y] - display image at x,y"
wdenkb0fce992003-06-29 21:03:46 +0000192);
193
wdenk059ae172003-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 Wilczekf7ef9d62013-06-05 08:14:30 +0200207 void *bmp_alloc_addr = NULL;
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +0100208 unsigned long len;
Stefan Roesec29ab9d2005-10-08 10:19:07 +0200209
wdenk059ae172003-04-20 16:52:09 +0000210 if (!((bmp->header.signature[0]=='B') &&
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +0100211 (bmp->header.signature[1]=='M')))
Piotr Wilczekf7ef9d62013-06-05 08:14:30 +0200212 bmp = gunzip_bmp(addr, &len, &bmp_alloc_addr);
Stefan Roesec29ab9d2005-10-08 10:19:07 +0200213
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +0100214 if (bmp == NULL) {
wdenk059ae172003-04-20 16:52:09 +0000215 printf("There is no valid bmp file at the given address\n");
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +0100216 return 1;
wdenk059ae172003-04-20 16:52:09 +0000217 }
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +0100218
wdenk059ae172003-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 Roesec29ab9d2005-10-08 10:19:07 +0200223
Piotr Wilczekf7ef9d62013-06-05 08:14:30 +0200224 if (bmp_alloc_addr)
225 free(bmp_alloc_addr);
Stefan Roesec29ab9d2005-10-08 10:19:07 +0200226
wdenk059ae172003-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 Gustschinde3b49c2012-04-27 04:38:06 +0000240int bmp_display(ulong addr, int x, int y)
wdenk059ae172003-04-20 16:52:09 +0000241{
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +0100242 int ret;
243 bmp_image_t *bmp = (bmp_image_t *)addr;
Piotr Wilczekf7ef9d62013-06-05 08:14:30 +0200244 void *bmp_alloc_addr = NULL;
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +0100245 unsigned long len;
246
247 if (!((bmp->header.signature[0]=='B') &&
248 (bmp->header.signature[1]=='M')))
Piotr Wilczekf7ef9d62013-06-05 08:14:30 +0200249 bmp = gunzip_bmp(addr, &len, &bmp_alloc_addr);
Hans-Christian Egtvedt43ef1c32007-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
wdenk281e00a2004-08-01 22:48:16 +0000256#if defined(CONFIG_LCD)
Che-Liang Chiou02110902011-10-20 23:07:03 +0000257 ret = lcd_display_bitmap((ulong)bmp, x, y);
wdenk281e00a2004-08-01 22:48:16 +0000258#elif defined(CONFIG_VIDEO)
Stefan Reinauerf674f7c2012-09-28 15:11:11 +0000259 ret = video_display_bitmap((unsigned long)bmp, x, y);
wdenk281e00a2004-08-01 22:48:16 +0000260#else
261# error bmp_display() requires CONFIG_LCD or CONFIG_VIDEO
wdenk4b248f32004-03-14 16:51:43 +0000262#endif
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +0100263
Piotr Wilczekf7ef9d62013-06-05 08:14:30 +0200264 if (bmp_alloc_addr)
265 free(bmp_alloc_addr);
Hans-Christian Egtvedt43ef1c32007-11-30 17:29:59 +0100266
267 return ret;
wdenk059ae172003-04-20 16:52:09 +0000268}