Add qemu 2.4.0
[kvmfornfv.git] / qemu / roms / u-boot / board / mpl / mip405 / cmd_mip405.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 MIP405
8  */
9
10 #include <common.h>
11 #include <command.h>
12 #include "mip405.h"
13 #include "../common/common_util.h"
14
15
16 extern void print_mip405_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_mip405(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
23 {
24
25         ulong led_on;
26
27         if (strcmp(argv[1], "info") == 0)
28         {
29                 print_mip405_info();
30                 return 0;
31         }
32         if (strcmp(argv[1], "led") == 0)
33         {
34                 led_on = (ulong)simple_strtoul(argv[2], NULL, 10);
35                 user_led0(led_on);
36                 return 0;
37         }
38         return (do_mplcommon(cmdtp, flag, argc, argv));
39 }
40 U_BOOT_CMD(
41         mip405, 8,      1,      do_mip405,
42         "MIP405 specific Cmds",
43         "flash mem [SrcAddr] - updates U-Boot with image in memory\n"
44         "mip405 flash mps - updates U-Boot with image from MPS\n"
45         "mip405 info      - displays board information\n"
46         "mip405 led <on>  - switches LED on (on=1) or off (on=0)"
47 );
48
49 /* ------------------------------------------------------------------------- */