]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - common/cmd_bmp.c
video: consolidate splash screen alignment code
[karo-tx-uboot.git] / common / cmd_bmp.c
1 /*
2  * (C) Copyright 2002
3  * Detlev Zundel, DENX Software Engineering, dzu@denx.de.
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>
29 #include <lcd.h>
30 #include <bmp_layout.h>
31 #include <command.h>
32 #include <asm/byteorder.h>
33 #include <malloc.h>
34 #include <splash.h>
35 #include <video.h>
36
37 static int bmp_info (ulong addr);
38
39 /*
40  * Allocate and decompress a BMP image using gunzip().
41  *
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.
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
53 bmp_image_t *gunzip_bmp(unsigned long addr, unsigned long *lenp,
54                         void **alloc_addr)
55 {
56         void *dst;
57         unsigned long len;
58         bmp_image_t *bmp;
59
60         /*
61          * Decompress bmp image
62          */
63         len = CONFIG_SYS_VIDEO_LOGO_MAX_SIZE;
64         /* allocate extra 3 bytes for 32-bit-aligned-address + 2 alignment */
65         dst = malloc(CONFIG_SYS_VIDEO_LOGO_MAX_SIZE + 3);
66         if (dst == NULL) {
67                 puts("Error: malloc in gunzip failed!\n");
68                 return NULL;
69         }
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) {
77                 free(dst);
78                 return NULL;
79         }
80         if (len == CONFIG_SYS_VIDEO_LOGO_MAX_SIZE)
81                 puts("Image could be truncated"
82                                 " (increase CONFIG_SYS_VIDEO_LOGO_MAX_SIZE)!\n");
83
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
93         debug("Gzipped BMP image detected!\n");
94
95         *alloc_addr = dst;
96         return bmp;
97 }
98 #else
99 bmp_image_t *gunzip_bmp(unsigned long addr, unsigned long *lenp,
100                         void **alloc_addr)
101 {
102         return NULL;
103 }
104 #endif
105
106 static int do_bmp_info(cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
107 {
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:
118                 return CMD_RET_USAGE;
119         }
120
121         return (bmp_info(addr));
122 }
123
124 static int do_bmp_display(cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
125 {
126         ulong addr;
127         int x = 0, y = 0;
128
129         splash_get_pos(&x, &y);
130
131         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:
144                 return CMD_RET_USAGE;
145         }
146
147          return (bmp_display(addr, x, y));
148 }
149
150 static 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
155 #ifdef CONFIG_NEEDS_MANUAL_RELOC
156 void bmp_reloc(void) {
157         fixup_cmdtable(cmd_bmp_sub, ARRAY_SIZE(cmd_bmp_sub));
158 }
159 #endif
160
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  */
171 static int do_bmp(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
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
181         if (c)
182                 return  c->cmd(cmdtp, flag, argc, argv);
183         else
184                 return CMD_RET_USAGE;
185 }
186
187 U_BOOT_CMD(
188         bmp,    5,      1,      do_bmp,
189         "manipulate BMP image data",
190         "info <imageAddr>          - display image info\n"
191         "bmp display <imageAddr> [x y] - display image at x,y"
192 );
193
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  */
204 static int bmp_info(ulong addr)
205 {
206         bmp_image_t *bmp=(bmp_image_t *)addr;
207         void *bmp_alloc_addr = NULL;
208         unsigned long len;
209
210         if (!((bmp->header.signature[0]=='B') &&
211               (bmp->header.signature[1]=='M')))
212                 bmp = gunzip_bmp(addr, &len, &bmp_alloc_addr);
213
214         if (bmp == NULL) {
215                 printf("There is no valid bmp file at the given address\n");
216                 return 1;
217         }
218
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));
223
224         if (bmp_alloc_addr)
225                 free(bmp_alloc_addr);
226
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  */
240 int bmp_display(ulong addr, int x, int y)
241 {
242         int ret;
243         bmp_image_t *bmp = (bmp_image_t *)addr;
244         void *bmp_alloc_addr = NULL;
245         unsigned long len;
246
247         if (!((bmp->header.signature[0]=='B') &&
248               (bmp->header.signature[1]=='M')))
249                 bmp = gunzip_bmp(addr, &len, &bmp_alloc_addr);
250
251         if (!bmp) {
252                 printf("There is no valid bmp file at the given address\n");
253                 return 1;
254         }
255
256 #if defined(CONFIG_LCD)
257         ret = lcd_display_bitmap((ulong)bmp, x, y);
258 #elif defined(CONFIG_VIDEO)
259         ret = video_display_bitmap((unsigned long)bmp, x, y);
260 #else
261 # error bmp_display() requires CONFIG_LCD or CONFIG_VIDEO
262 #endif
263
264         if (bmp_alloc_addr)
265                 free(bmp_alloc_addr);
266
267         return ret;
268 }