]>
Commit | Line | Data |
---|---|---|
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> |
059ae173 | 34 | |
059ae173 | 35 | static int bmp_info (ulong addr); |
4b248f3f | 36 | static int bmp_display (ulong addr, int x, int y); |
059ae173 | 37 | |
43ef1c38 HCE |
38 | /* |
39 | * 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 | |
c01171ea | 48 | bmp_image_t *gunzip_bmp(unsigned long addr, unsigned long *lenp) |
43ef1c38 HCE |
49 | { |
50 | void *dst; | |
51 | unsigned long len; | |
52 | bmp_image_t *bmp; | |
53 | ||
54 | /* | |
55 | * Decompress bmp image | |
56 | */ | |
6d0f6bcf JCPV |
57 | len = CONFIG_SYS_VIDEO_LOGO_MAX_SIZE; |
58 | dst = malloc(CONFIG_SYS_VIDEO_LOGO_MAX_SIZE); | |
43ef1c38 HCE |
59 | if (dst == NULL) { |
60 | puts("Error: malloc in gunzip failed!\n"); | |
61 | return NULL; | |
62 | } | |
6d0f6bcf | 63 | if (gunzip(dst, CONFIG_SYS_VIDEO_LOGO_MAX_SIZE, (uchar *)addr, &len) != 0) { |
43ef1c38 HCE |
64 | free(dst); |
65 | return NULL; | |
66 | } | |
6d0f6bcf | 67 | if (len == CONFIG_SYS_VIDEO_LOGO_MAX_SIZE) |
43ef1c38 | 68 | puts("Image could be truncated" |
6d0f6bcf | 69 | " (increase CONFIG_SYS_VIDEO_LOGO_MAX_SIZE)!\n"); |
43ef1c38 HCE |
70 | |
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 | ||
17f79e45 | 82 | debug("Gzipped BMP image detected!\n"); |
43ef1c38 HCE |
83 | |
84 | return bmp; | |
85 | } | |
86 | #else | |
c01171ea | 87 | bmp_image_t *gunzip_bmp(unsigned long addr, unsigned long *lenp) |
43ef1c38 HCE |
88 | { |
89 | return NULL; | |
90 | } | |
91 | #endif | |
92 | ||
54841ab5 | 93 | static int do_bmp_info(cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[]) |
9acd4f0e FM |
94 | { |
95 | ulong addr; | |
43ef1c38 | 96 | |
9acd4f0e FM |
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: | |
4c12eeb8 | 105 | return CMD_RET_USAGE; |
9acd4f0e FM |
106 | } |
107 | ||
108 | return (bmp_info(addr)); | |
109 | } | |
110 | ||
54841ab5 | 111 | static int do_bmp_display(cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[]) |
059ae173 WD |
112 | { |
113 | ulong addr; | |
4b248f3f | 114 | int x = 0, y = 0; |
059ae173 WD |
115 | |
116 | switch (argc) { | |
9acd4f0e | 117 | case 1: /* use load_addr as default address */ |
059ae173 WD |
118 | addr = load_addr; |
119 | break; | |
9acd4f0e FM |
120 | case 2: /* use argument */ |
121 | addr = simple_strtoul(argv[1], NULL, 16); | |
059ae173 | 122 | break; |
9acd4f0e FM |
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); | |
4b248f3f | 127 | break; |
059ae173 | 128 | default: |
4c12eeb8 | 129 | return CMD_RET_USAGE; |
059ae173 WD |
130 | } |
131 | ||
9acd4f0e FM |
132 | return (bmp_display(addr, x, y)); |
133 | } | |
134 | ||
135 | static 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 | }; | |
139 | ||
2e5167cc | 140 | #ifdef CONFIG_NEEDS_MANUAL_RELOC |
f1d2b313 HS |
141 | void bmp_reloc(void) { |
142 | fixup_cmdtable(cmd_bmp_sub, ARRAY_SIZE(cmd_bmp_sub)); | |
143 | } | |
144 | #endif | |
145 | ||
9acd4f0e FM |
146 | /* |
147 | * Subroutine: do_bmp | |
148 | * | |
149 | * Description: Handler for 'bmp' command.. | |
150 | * | |
151 | * Inputs: argv[1] contains the subcommand | |
152 | * | |
153 | * Return: None | |
154 | * | |
155 | */ | |
54841ab5 | 156 | static int do_bmp(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
9acd4f0e FM |
157 | { |
158 | cmd_tbl_t *c; | |
159 | ||
160 | /* Strip off leading 'bmp' command argument */ | |
161 | argc--; | |
162 | argv++; | |
163 | ||
164 | c = find_cmd_tbl(argv[0], &cmd_bmp_sub[0], ARRAY_SIZE(cmd_bmp_sub)); | |
165 | ||
47e26b1b | 166 | if (c) |
9acd4f0e | 167 | return c->cmd(cmdtp, flag, argc, argv); |
47e26b1b | 168 | else |
4c12eeb8 | 169 | return CMD_RET_USAGE; |
059ae173 WD |
170 | } |
171 | ||
0d498393 | 172 | U_BOOT_CMD( |
4b248f3f | 173 | bmp, 5, 1, do_bmp, |
2fb2604d | 174 | "manipulate BMP image data", |
4b248f3f | 175 | "info <imageAddr> - display image info\n" |
a89c33db | 176 | "bmp display <imageAddr> [x y] - display image at x,y" |
b0fce99b WD |
177 | ); |
178 | ||
059ae173 WD |
179 | /* |
180 | * Subroutine: bmp_info | |
181 | * | |
182 | * Description: Show information about bmp file in memory | |
183 | * | |
184 | * Inputs: addr address of the bmp file | |
185 | * | |
186 | * Return: None | |
187 | * | |
188 | */ | |
189 | static int bmp_info(ulong addr) | |
190 | { | |
191 | bmp_image_t *bmp=(bmp_image_t *)addr; | |
43ef1c38 | 192 | unsigned long len; |
c29ab9d7 | 193 | |
059ae173 | 194 | if (!((bmp->header.signature[0]=='B') && |
43ef1c38 HCE |
195 | (bmp->header.signature[1]=='M'))) |
196 | bmp = gunzip_bmp(addr, &len); | |
c29ab9d7 | 197 | |
43ef1c38 | 198 | if (bmp == NULL) { |
059ae173 | 199 | printf("There is no valid bmp file at the given address\n"); |
43ef1c38 | 200 | return 1; |
059ae173 | 201 | } |
43ef1c38 | 202 | |
059ae173 WD |
203 | printf("Image size : %d x %d\n", le32_to_cpu(bmp->header.width), |
204 | le32_to_cpu(bmp->header.height)); | |
205 | printf("Bits per pixel: %d\n", le16_to_cpu(bmp->header.bit_count)); | |
206 | printf("Compression : %d\n", le32_to_cpu(bmp->header.compression)); | |
c29ab9d7 | 207 | |
43ef1c38 HCE |
208 | if ((unsigned long)bmp != addr) |
209 | free(bmp); | |
c29ab9d7 | 210 | |
059ae173 WD |
211 | return(0); |
212 | } | |
213 | ||
214 | /* | |
215 | * Subroutine: bmp_display | |
216 | * | |
217 | * Description: Display bmp file located in memory | |
218 | * | |
219 | * Inputs: addr address of the bmp file | |
220 | * | |
221 | * Return: None | |
222 | * | |
223 | */ | |
4b248f3f | 224 | static int bmp_display(ulong addr, int x, int y) |
059ae173 | 225 | { |
43ef1c38 HCE |
226 | int ret; |
227 | bmp_image_t *bmp = (bmp_image_t *)addr; | |
228 | unsigned long len; | |
229 | ||
230 | if (!((bmp->header.signature[0]=='B') && | |
231 | (bmp->header.signature[1]=='M'))) | |
232 | bmp = gunzip_bmp(addr, &len); | |
233 | ||
234 | if (!bmp) { | |
235 | printf("There is no valid bmp file at the given address\n"); | |
236 | return 1; | |
237 | } | |
238 | ||
281e00a3 | 239 | #if defined(CONFIG_LCD) |
02110903 | 240 | ret = lcd_display_bitmap((ulong)bmp, x, y); |
281e00a3 | 241 | #elif defined(CONFIG_VIDEO) |
4b248f3f | 242 | extern int video_display_bitmap (ulong, int, int); |
43ef1c38 HCE |
243 | |
244 | ret = video_display_bitmap ((unsigned long)bmp, x, y); | |
281e00a3 WD |
245 | #else |
246 | # error bmp_display() requires CONFIG_LCD or CONFIG_VIDEO | |
4b248f3f | 247 | #endif |
43ef1c38 HCE |
248 | |
249 | if ((unsigned long)bmp != addr) | |
250 | free(bmp); | |
251 | ||
252 | return ret; | |
059ae173 | 253 | } |