]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - common/cmd_bmp.c
imported Freescale specific U-Boot additions for i.MX28,... release L2.6.31_10.08.01
[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
35 static int bmp_info (ulong addr);
36 static int bmp_display (ulong addr, int x, int y);
37
38 int gunzip(void *, int, unsigned char *, unsigned long *);
39
40 /*
41  * Allocate and decompress a BMP image using gunzip().
42  *
43  * Returns a pointer to the decompressed image data. Must be freed by
44  * the caller after use.
45  *
46  * Returns NULL if decompression failed, or if the decompressed data
47  * didn't contain a valid BMP signature.
48  */
49 #ifdef CONFIG_VIDEO_BMP_GZIP
50 bmp_image_t *gunzip_bmp(unsigned long addr, unsigned long *lenp)
51 {
52         void *dst;
53         unsigned long len;
54         bmp_image_t *bmp;
55
56         /*
57          * Decompress bmp image
58          */
59         len = CONFIG_SYS_VIDEO_LOGO_MAX_SIZE;
60         dst = malloc(CONFIG_SYS_VIDEO_LOGO_MAX_SIZE);
61         if (dst == NULL) {
62                 puts("Error: malloc in gunzip failed!\n");
63                 return NULL;
64         }
65         if (gunzip(dst, CONFIG_SYS_VIDEO_LOGO_MAX_SIZE, (uchar *)addr, &len) != 0) {
66                 free(dst);
67                 return NULL;
68         }
69         if (len == CONFIG_SYS_VIDEO_LOGO_MAX_SIZE)
70                 puts("Image could be truncated"
71                                 " (increase CONFIG_SYS_VIDEO_LOGO_MAX_SIZE)!\n");
72
73         bmp = dst;
74
75         /*
76          * Check for bmp mark 'BM'
77          */
78         if (!((bmp->header.signature[0] == 'B') &&
79               (bmp->header.signature[1] == 'M'))) {
80                 free(dst);
81                 return NULL;
82         }
83
84         puts("Gzipped BMP image detected!\n");
85
86         return bmp;
87 }
88 #else
89 bmp_image_t *gunzip_bmp(unsigned long addr, unsigned long *lenp)
90 {
91         return NULL;
92 }
93 #endif
94
95
96 /*
97  * Subroutine:  do_bmp
98  *
99  * Description: Handler for 'bmp' command..
100  *
101  * Inputs:      argv[1] contains the subcommand
102  *
103  * Return:      None
104  *
105  */
106 int do_bmp(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
107 {
108         ulong addr;
109         int x = 0, y = 0;
110
111         switch (argc) {
112         case 2:         /* use load_addr as default address */
113                 addr = load_addr;
114                 break;
115         case 3:         /* use argument */
116                 addr = simple_strtoul(argv[2], NULL, 16);
117                 break;
118         case 5:
119                 addr = simple_strtoul(argv[2], NULL, 16);
120                 x = simple_strtoul(argv[3], NULL, 10);
121                 y = simple_strtoul(argv[4], NULL, 10);
122                 break;
123         default:
124                 cmd_usage(cmdtp);
125                 return 1;
126         }
127
128         /* Allow for short names
129          * Adjust length if more sub-commands get added
130          */
131         if (strncmp(argv[1],"info",1) == 0) {
132                 return (bmp_info(addr));
133         } else if (strncmp(argv[1],"display",1) == 0) {
134             return (bmp_display(addr, x, y));
135         } else {
136                 cmd_usage(cmdtp);
137                 return 1;
138         }
139 }
140
141 U_BOOT_CMD(
142         bmp,    5,      1,      do_bmp,
143         "manipulate BMP image data",
144         "info <imageAddr>          - display image info\n"
145         "bmp display <imageAddr> [x y] - display image at x,y"
146 );
147
148 /*
149  * Subroutine:  bmp_info
150  *
151  * Description: Show information about bmp file in memory
152  *
153  * Inputs:      addr            address of the bmp file
154  *
155  * Return:      None
156  *
157  */
158 static int bmp_info(ulong addr)
159 {
160         bmp_image_t *bmp=(bmp_image_t *)addr;
161         unsigned long len;
162
163         if (!((bmp->header.signature[0]=='B') &&
164               (bmp->header.signature[1]=='M')))
165                 bmp = gunzip_bmp(addr, &len);
166
167         if (bmp == NULL) {
168                 printf("There is no valid bmp file at the given address\n");
169                 return 1;
170         }
171
172         printf("Image size    : %d x %d\n", le32_to_cpu(bmp->header.width),
173                le32_to_cpu(bmp->header.height));
174         printf("Bits per pixel: %d\n", le16_to_cpu(bmp->header.bit_count));
175         printf("Compression   : %d\n", le32_to_cpu(bmp->header.compression));
176
177         if ((unsigned long)bmp != addr)
178                 free(bmp);
179
180         return(0);
181 }
182
183 /*
184  * Subroutine:  bmp_display
185  *
186  * Description: Display bmp file located in memory
187  *
188  * Inputs:      addr            address of the bmp file
189  *
190  * Return:      None
191  *
192  */
193 static int bmp_display(ulong addr, int x, int y)
194 {
195         int ret;
196         bmp_image_t *bmp = (bmp_image_t *)addr;
197         unsigned long len;
198
199         if (!((bmp->header.signature[0]=='B') &&
200               (bmp->header.signature[1]=='M')))
201                 bmp = gunzip_bmp(addr, &len);
202
203         if (!bmp) {
204                 printf("There is no valid bmp file at the given address\n");
205                 return 1;
206         }
207
208 #if defined(CONFIG_LCD)
209         extern int lcd_display_bitmap (ulong, int, int);
210
211         ret = lcd_display_bitmap ((unsigned long)bmp, x, y);
212 #elif defined(CONFIG_VIDEO)
213         extern int video_display_bitmap (ulong, int, int);
214
215         ret = video_display_bitmap ((unsigned long)bmp, x, y);
216 #else
217 # error bmp_display() requires CONFIG_LCD or CONFIG_VIDEO
218 #endif
219
220         if ((unsigned long)bmp != addr)
221                 free(bmp);
222
223         return ret;
224 }