blob: c6a16a46cfb5966bbe6838697fd7a979ce93a438 [file] [log] [blame]
wdenk059ae172003-04-20 16:52:09 +00001/*
2 * (C) Copyright 2002
3 * Dtlev 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 <bmp_layout.h>
30#include <command.h>
31
32#if (CONFIG_COMMANDS & CFG_CMD_BMP)
33
34static int bmp_info (ulong addr);
35static int bmp_display (ulong addr);
36
37/*
38 * Subroutine: do_bmp
39 *
40 * Description: Handler for 'bmp' command..
41 *
42 * Inputs: argv[1] contains the subcommand
43 *
44 * Return: None
45 *
46 */
47int do_bmp(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
48{
49 ulong addr;
50
51 switch (argc) {
52 case 2: /* use load_addr as default address */
53 addr = load_addr;
54 break;
55 case 3: /* use argument */
56 addr = simple_strtoul(argv[2], NULL, 16);
57 break;
58 default:
59 printf ("Usage:\n%s\n", cmdtp->usage);
60 return 1;
61 }
62
63 /* Allow for short names
64 * Adjust length if more sub-commands get added
65 */
66 if (strncmp(argv[1],"info",1) == 0) {
67 return (bmp_info(addr));
68 } else if (strncmp(argv[1],"display",1) == 0) {
69 return (bmp_display(addr));
70 } else {
71 printf ("Usage:\n%s\n", cmdtp->usage);
72 return 1;
73 }
74}
75
76/*
77 * Subroutine: bmp_info
78 *
79 * Description: Show information about bmp file in memory
80 *
81 * Inputs: addr address of the bmp file
82 *
83 * Return: None
84 *
85 */
86static int bmp_info(ulong addr)
87{
88 bmp_image_t *bmp=(bmp_image_t *)addr;
89 if (!((bmp->header.signature[0]=='B') &&
90 (bmp->header.signature[1]=='M'))) {
91 printf("There is no valid bmp file at the given address\n");
92 return(1);
93 }
94 printf("Image size : %d x %d\n", le32_to_cpu(bmp->header.width),
95 le32_to_cpu(bmp->header.height));
96 printf("Bits per pixel: %d\n", le16_to_cpu(bmp->header.bit_count));
97 printf("Compression : %d\n", le32_to_cpu(bmp->header.compression));
98 return(0);
99}
100
101/*
102 * Subroutine: bmp_display
103 *
104 * Description: Display bmp file located in memory
105 *
106 * Inputs: addr address of the bmp file
107 *
108 * Return: None
109 *
110 */
111static int bmp_display(ulong addr)
112{
113 extern int lcd_display_bitmap (ulong);
114
115 return (lcd_display_bitmap (addr));
116}
117
118#endif /* (CONFIG_COMMANDS & CFG_CMD_BMP) */