]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/mpl/pip405/cmd_pip405.c
Merge git://git.denx.de/u-boot-arm
[karo-tx-uboot.git] / board / mpl / pip405 / cmd_pip405.c
1 /*
2  * (C) Copyright 2001
3  * Denis Peter, MPL AG Switzerland, d.peter@mpl.ch
4  *
5  * SPDX-License-Identifier:     GPL-2.0+
6  *
7  * hacked for PIP405
8  */
9
10 #include <common.h>
11 #include <command.h>
12 #include "pip405.h"
13 #include "../common/common_util.h"
14
15
16 extern void print_pip405_info(void);
17 extern int do_mplcommon(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
18
19
20 /* ------------------------------------------------------------------------- */
21
22 int do_pip405(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
23 {
24
25         ulong led_on,led_nr;
26
27         if (strcmp(argv[1], "info") == 0)
28         {
29                 print_pip405_info();
30                 return 0;
31         }
32         if (strcmp(argv[1], "led") == 0)
33         {
34                 led_nr = (ulong)simple_strtoul(argv[2], NULL, 10);
35                 led_on = (ulong)simple_strtoul(argv[3], NULL, 10);
36                 if(!led_nr)
37                         user_led0(led_on);
38                 else
39                         user_led1(led_on);
40                 return 0;
41         }
42
43         return (do_mplcommon(cmdtp, flag, argc, argv));
44 }
45 U_BOOT_CMD(
46         pip405, 6,      1,      do_pip405,
47         "PIP405 specific Cmds",
48         "flash mem [SrcAddr] - updates U-Boot with image in memory\n"
49         "pip405 flash floppy [SrcAddr] - updates U-Boot with image from floppy\n"
50         "pip405 flash mps - updates U-Boot with image from MPS"
51 );
52
53 /* ------------------------------------------------------------------------- */