]> Git Repo - u-boot.git/blame - common/cmd_bmp.c
i2c: add i2c_core and prepare for new multibus support
[u-boot.git] / common / cmd_bmp.c
CommitLineData
059ae173
WD
1/*
2 * (C) Copyright 2002
b37c7e5e 3 * Detlev Zundel, DENX Software Engineering, [email protected].
059ae173
WD
4 *
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>
6111722a 29#include <lcd.h>
059ae173
WD
30#include <bmp_layout.h>
31#include <command.h>
8655b6f8 32#include <asm/byteorder.h>
c29ab9d7 33#include <malloc.h>
ff8fb56b 34#include <splash.h>
f674f7cf 35#include <video.h>
059ae173 36
059ae173 37static int bmp_info (ulong addr);
059ae173 38
43ef1c38
HCE
39/*
40 * Allocate and decompress a BMP image using gunzip().
41 *
f7ef9d61
PW
42 * 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.
43ef1c38
HCE
48 *
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
f7ef9d61
PW
53bmp_image_t *gunzip_bmp(unsigned long addr, unsigned long *lenp,
54 void **alloc_addr)
43ef1c38
HCE
55{
56 void *dst;
57 unsigned long len;
58 bmp_image_t *bmp;
59
60 /*
61 * Decompress bmp image
62 */
6d0f6bcf 63 len = CONFIG_SYS_VIDEO_LOGO_MAX_SIZE;
f7ef9d61
PW
64 /* allocate extra 3 bytes for 32-bit-aligned-address + 2 alignment */
65 dst = malloc(CONFIG_SYS_VIDEO_LOGO_MAX_SIZE + 3);
43ef1c38
HCE
66 if (dst == NULL) {
67 puts("Error: malloc in gunzip failed!\n");
68 return NULL;
69 }
f7ef9d61
PW
70
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) {
43ef1c38
HCE
77 free(dst);
78 return NULL;
79 }
6d0f6bcf 80 if (len == CONFIG_SYS_VIDEO_LOGO_MAX_SIZE)
43ef1c38 81 puts("Image could be truncated"
6d0f6bcf 82 " (increase CONFIG_SYS_VIDEO_LOGO_MAX_SIZE)!\n");
43ef1c38 83
43ef1c38
HCE
84 /*
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
17f79e45 93 debug("Gzipped BMP image detected!\n");
43ef1c38 94
f7ef9d61 95 *alloc_addr = dst;
43ef1c38
HCE
96 return bmp;
97}
98#else
f7ef9d61
PW
99bmp_image_t *gunzip_bmp(unsigned long addr, unsigned long *lenp,
100 void **alloc_addr)
43ef1c38
HCE
101{
102 return NULL;
103}
104#endif
105
54841ab5 106static int do_bmp_info(cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
9acd4f0e
FM
107{
108 ulong addr;
43ef1c38 109
9acd4f0e
FM
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:
4c12eeb8 118 return CMD_RET_USAGE;
9acd4f0e
FM
119 }
120
121 return (bmp_info(addr));
122}
123
54841ab5 124static int do_bmp_display(cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
059ae173
WD
125{
126 ulong addr;
4b248f3f 127 int x = 0, y = 0;
059ae173 128
ff8fb56b
AG
129 splash_get_pos(&x, &y);
130
059ae173 131 switch (argc) {
9acd4f0e 132 case 1: /* use load_addr as default address */
059ae173
WD
133 addr = load_addr;
134 break;
9acd4f0e
FM
135 case 2: /* use argument */
136 addr = simple_strtoul(argv[1], NULL, 16);
059ae173 137 break;
9acd4f0e
FM
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);
4b248f3f 142 break;
059ae173 143 default:
4c12eeb8 144 return CMD_RET_USAGE;
059ae173
WD
145 }
146
9acd4f0e
FM
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};
154
2e5167cc 155#ifdef CONFIG_NEEDS_MANUAL_RELOC
f1d2b313
HS
156void bmp_reloc(void) {
157 fixup_cmdtable(cmd_bmp_sub, ARRAY_SIZE(cmd_bmp_sub));
158}
159#endif
160
9acd4f0e
FM
161/*
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 */
54841ab5 171static int do_bmp(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
9acd4f0e
FM
172{
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
47e26b1b 181 if (c)
9acd4f0e 182 return c->cmd(cmdtp, flag, argc, argv);
47e26b1b 183 else
4c12eeb8 184 return CMD_RET_USAGE;
059ae173
WD
185}
186
0d498393 187U_BOOT_CMD(
4b248f3f 188 bmp, 5, 1, do_bmp,
2fb2604d 189 "manipulate BMP image data",
4b248f3f 190 "info <imageAddr> - display image info\n"
a89c33db 191 "bmp display <imageAddr> [x y] - display image at x,y"
b0fce99b
WD
192);
193
059ae173
WD
194/*
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;
f7ef9d61 207 void *bmp_alloc_addr = NULL;
43ef1c38 208 unsigned long len;
c29ab9d7 209
059ae173 210 if (!((bmp->header.signature[0]=='B') &&
43ef1c38 211 (bmp->header.signature[1]=='M')))
f7ef9d61 212 bmp = gunzip_bmp(addr, &len, &bmp_alloc_addr);
c29ab9d7 213
43ef1c38 214 if (bmp == NULL) {
059ae173 215 printf("There is no valid bmp file at the given address\n");
43ef1c38 216 return 1;
059ae173 217 }
43ef1c38 218
059ae173
WD
219 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));
c29ab9d7 223
f7ef9d61
PW
224 if (bmp_alloc_addr)
225 free(bmp_alloc_addr);
c29ab9d7 226
059ae173
WD
227 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 */
de3b49c4 240int bmp_display(ulong addr, int x, int y)
059ae173 241{
43ef1c38
HCE
242 int ret;
243 bmp_image_t *bmp = (bmp_image_t *)addr;
f7ef9d61 244 void *bmp_alloc_addr = NULL;
43ef1c38
HCE
245 unsigned long len;
246
247 if (!((bmp->header.signature[0]=='B') &&
248 (bmp->header.signature[1]=='M')))
f7ef9d61 249 bmp = gunzip_bmp(addr, &len, &bmp_alloc_addr);
43ef1c38
HCE
250
251 if (!bmp) {
252 printf("There is no valid bmp file at the given address\n");
253 return 1;
254 }
255
281e00a3 256#if defined(CONFIG_LCD)
02110903 257 ret = lcd_display_bitmap((ulong)bmp, x, y);
281e00a3 258#elif defined(CONFIG_VIDEO)
f674f7cf 259 ret = video_display_bitmap((unsigned long)bmp, x, y);
281e00a3
WD
260#else
261# error bmp_display() requires CONFIG_LCD or CONFIG_VIDEO
4b248f3f 262#endif
43ef1c38 263
f7ef9d61
PW
264 if (bmp_alloc_addr)
265 free(bmp_alloc_addr);
43ef1c38
HCE
266
267 return ret;
059ae173 268}
This page took 0.204565 seconds and 4 git commands to generate.