blob: 18c14d1f3bc9456eac24618b5492ef910310e022 [file] [log] [blame]
wdenk1a4d6162002-11-01 00:21:20 +00001/*
2 * (C) Copyright 2001
3 * Wolfgang Denk, DENX Software Engineering, wd@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 * Command to load a splash screen to the VFDs.
26 * NOTE that this will be controlled by a key combination when
27 * the keyboard stuff works. For now the user has to enter a
28 * bitmap number (only VFD_TEST_LOGO is supported now - 16.10.2002).
29 * Added VFD_REMOTE_LOGO (same as VFD_TEST_LOGO but a different color)
30 * on 20.10.2002.
31 *
32 * This rather crudely requires that each bitmap be included as a
33 * header file.
34 */
35#include <common.h>
36#include <command.h>
37
Jon Loeligerfd9bcaa2007-07-08 18:05:39 -050038#if defined(CONFIG_CMD_VFD)
wdenk82226bf2003-05-20 20:49:01 +000039
wdenk1a4d6162002-11-01 00:21:20 +000040#include <vfd_logo.h>
41#define VFD_TEST_LOGO_BMPNR 0
42#define VFD_REMOTE_LOGO_BMPNR 1
wdenk1a4d6162002-11-01 00:21:20 +000043
44extern int transfer_pic(unsigned char, unsigned char *, int, int);
45
46int trab_vfd (ulong bitmap);
47
Wolfgang Denk54841ab2010-06-28 22:00:46 +020048int do_vfd (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk1a4d6162002-11-01 00:21:20 +000049{
50 ulong bitmap;
51
Wolfgang Denk47e26b12010-07-17 01:06:04 +020052 if (argc != 2)
53 return cmd_usage(cmdtp);
wdenk1a4d6162002-11-01 00:21:20 +000054
wdenk4f7cb082003-09-11 23:06:34 +000055 if (argv[1][0] == '/') { /* select bitmap by number */
wdenk82226bf2003-05-20 20:49:01 +000056 bitmap = simple_strtoul(argv[1]+1, NULL, 10);
57 return (trab_vfd(bitmap));
58 }
wdenk1a4d6162002-11-01 00:21:20 +000059
wdenk82226bf2003-05-20 20:49:01 +000060 /* display bitmap at given address */
61 bitmap = simple_strtoul(argv[1], NULL, 16);
wdenkc8c3a8b2003-05-21 20:26:20 +000062 transfer_pic(3, (uchar *)bitmap, VFD_LOGO_HEIGHT, VFD_LOGO_WIDTH);
wdenk82226bf2003-05-20 20:49:01 +000063 return 0;
wdenk1a4d6162002-11-01 00:21:20 +000064}
wdenk8bde7f72003-06-27 21:31:46 +000065
wdenk0d498392003-07-01 21:06:45 +000066U_BOOT_CMD(
Wolfgang Denk53677ef2008-05-20 16:00:29 +020067 vfd, 2, 0, do_vfd,
Peter Tyser2fb26042009-01-27 18:03:12 -060068 "load a bitmap to the VFDs on TRAB",
Wolfgang Denk53677ef2008-05-20 16:00:29 +020069 "/N\n"
70 " - load bitmap N to the VFDs (N is _decimal_ !!!)\n"
wdenk4f7cb082003-09-11 23:06:34 +000071 "vfd ADDR\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +020072 " - load bitmap at address ADDR"
wdenk8bde7f72003-06-27 21:31:46 +000073);
Jon Loeliger90253172007-07-10 11:02:44 -050074#endif
wdenk1a4d6162002-11-01 00:21:20 +000075
wdenk1a4d6162002-11-01 00:21:20 +000076int trab_vfd (ulong bitmap)
77{
wdenkc8c3a8b2003-05-21 20:26:20 +000078 uchar *addr;
79 char *s;
80
wdenk1a4d6162002-11-01 00:21:20 +000081 switch (bitmap) {
wdenk82226bf2003-05-20 20:49:01 +000082 case VFD_TEST_LOGO_BMPNR:
wdenkc8c3a8b2003-05-21 20:26:20 +000083 if ((s = getenv ("bitmap0")) != NULL) {
84 addr = (uchar *)simple_strtoul (s, NULL, 16);
85 } else {
86 addr = &vfd_test_logo_bitmap[0];
87 }
88 break;
wdenk82226bf2003-05-20 20:49:01 +000089 case VFD_REMOTE_LOGO_BMPNR:
wdenkc8c3a8b2003-05-21 20:26:20 +000090 if ((s = getenv ("bitmap1")) != NULL) {
91 addr = (uchar *)simple_strtoul (s, NULL, 16);
92 } else {
93 addr = &vfd_remote_logo_bitmap[0];
94 }
95 break;
wdenk82226bf2003-05-20 20:49:01 +000096 default:
97 printf("Unknown bitmap %ld\n", bitmap);
98 return 1;
wdenk1a4d6162002-11-01 00:21:20 +000099 }
wdenkc8c3a8b2003-05-21 20:26:20 +0000100 transfer_pic(3, addr, VFD_LOGO_HEIGHT, VFD_LOGO_WIDTH);
101 return 0;
wdenk1a4d6162002-11-01 00:21:20 +0000102}