blob: daa54e77692f2936047dde1612bee1a9cfc0a357 [file] [log] [blame]
wdenk059ae172003-04-20 16:52:09 +00001/*
2 * (C) Copyright 2002
wdenkb37c7e52003-06-30 16:24:52 +00003 * Detlev Zundel, DENX Software Engineering, dzu@denx.de.
wdenk059ae172003-04-20 16:52:09 +00004 *
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>
wdenk8655b6f2004-10-09 23:25:58 +000031#include <asm/byteorder.h>
wdenk059ae172003-04-20 16:52:09 +000032
33#if (CONFIG_COMMANDS & CFG_CMD_BMP)
34
35static int bmp_info (ulong addr);
wdenk4b248f32004-03-14 16:51:43 +000036static int bmp_display (ulong addr, int x, int y);
wdenk059ae172003-04-20 16:52:09 +000037
38/*
39 * Subroutine: do_bmp
40 *
41 * Description: Handler for 'bmp' command..
42 *
43 * Inputs: argv[1] contains the subcommand
44 *
45 * Return: None
46 *
47 */
48int do_bmp(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
49{
50 ulong addr;
wdenk4b248f32004-03-14 16:51:43 +000051 int x = 0, y = 0;
wdenk059ae172003-04-20 16:52:09 +000052
53 switch (argc) {
54 case 2: /* use load_addr as default address */
55 addr = load_addr;
56 break;
57 case 3: /* use argument */
58 addr = simple_strtoul(argv[2], NULL, 16);
59 break;
wdenk4b248f32004-03-14 16:51:43 +000060 case 5:
61 addr = simple_strtoul(argv[2], NULL, 16);
62 x = simple_strtoul(argv[3], NULL, 10);
63 y = simple_strtoul(argv[4], NULL, 10);
64 break;
wdenk059ae172003-04-20 16:52:09 +000065 default:
66 printf ("Usage:\n%s\n", cmdtp->usage);
67 return 1;
68 }
69
70 /* Allow for short names
71 * Adjust length if more sub-commands get added
72 */
73 if (strncmp(argv[1],"info",1) == 0) {
74 return (bmp_info(addr));
75 } else if (strncmp(argv[1],"display",1) == 0) {
wdenk4b248f32004-03-14 16:51:43 +000076 return (bmp_display(addr, x, y));
wdenk059ae172003-04-20 16:52:09 +000077 } else {
78 printf ("Usage:\n%s\n", cmdtp->usage);
79 return 1;
80 }
81}
82
wdenk0d498392003-07-01 21:06:45 +000083U_BOOT_CMD(
wdenk4b248f32004-03-14 16:51:43 +000084 bmp, 5, 1, do_bmp,
wdenkb0fce992003-06-29 21:03:46 +000085 "bmp - manipulate BMP image data\n",
wdenk4b248f32004-03-14 16:51:43 +000086 "info <imageAddr> - display image info\n"
87 "bmp display <imageAddr> [x y] - display image at x,y\n"
wdenkb0fce992003-06-29 21:03:46 +000088);
89
wdenk059ae172003-04-20 16:52:09 +000090/*
91 * Subroutine: bmp_info
92 *
93 * Description: Show information about bmp file in memory
94 *
95 * Inputs: addr address of the bmp file
96 *
97 * Return: None
98 *
99 */
100static int bmp_info(ulong addr)
101{
102 bmp_image_t *bmp=(bmp_image_t *)addr;
103 if (!((bmp->header.signature[0]=='B') &&
104 (bmp->header.signature[1]=='M'))) {
105 printf("There is no valid bmp file at the given address\n");
106 return(1);
107 }
108 printf("Image size : %d x %d\n", le32_to_cpu(bmp->header.width),
109 le32_to_cpu(bmp->header.height));
110 printf("Bits per pixel: %d\n", le16_to_cpu(bmp->header.bit_count));
111 printf("Compression : %d\n", le32_to_cpu(bmp->header.compression));
112 return(0);
113}
114
115/*
116 * Subroutine: bmp_display
117 *
118 * Description: Display bmp file located in memory
119 *
120 * Inputs: addr address of the bmp file
121 *
122 * Return: None
123 *
124 */
wdenk4b248f32004-03-14 16:51:43 +0000125static int bmp_display(ulong addr, int x, int y)
wdenk059ae172003-04-20 16:52:09 +0000126{
wdenk281e00a2004-08-01 22:48:16 +0000127#if defined(CONFIG_LCD)
128 extern int lcd_display_bitmap (ulong, int, int);
wdenk059ae172003-04-20 16:52:09 +0000129
wdenk4b248f32004-03-14 16:51:43 +0000130 return (lcd_display_bitmap (addr, x, y));
wdenk281e00a2004-08-01 22:48:16 +0000131#elif defined(CONFIG_VIDEO)
wdenk4b248f32004-03-14 16:51:43 +0000132 extern int video_display_bitmap (ulong, int, int);
133 return (video_display_bitmap (addr, x, y));
wdenk281e00a2004-08-01 22:48:16 +0000134#else
135# error bmp_display() requires CONFIG_LCD or CONFIG_VIDEO
wdenk4b248f32004-03-14 16:51:43 +0000136#endif
wdenk059ae172003-04-20 16:52:09 +0000137}
138
139#endif /* (CONFIG_COMMANDS & CFG_CMD_BMP) */