]> git.karo-electronics.de Git - karo-tx-uboot.git/blobdiff - board/mpl/vcma9/cmd_vcma9.c
Add GPL-2.0+ SPDX-License-Identifier to source files
[karo-tx-uboot.git] / board / mpl / vcma9 / cmd_vcma9.c
index 0d5f46e5cd1994fec012e52846564852706382c0..c2d62e4aaf4b54af334372cb3226f52346bef1f5 100644 (file)
@@ -5,24 +5,7 @@
  * adapted for VCMA9
  * David Mueller, ELSOFT AG, d.mueller@elsoft.ch
  *
- * See file CREDITS for list of people who contributed to this
- * project.
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License as
- * published by the Free Software Foundation; either version 2 of
- * the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
- * MA 02111-1307 USA
- *
+ * SPDX-License-Identifier:    GPL-2.0+
  */
 
 #include <common.h>
@@ -43,15 +26,6 @@ static uchar cs8900_chksum(ushort data)
 
 DECLARE_GLOBAL_DATA_PTR;
 
-extern void print_vcma9_info(void);
-extern int vcma9_cantest(int);
-extern int vcma9_nandtest(void);
-extern int vcma9_nanderase(void);
-extern int vcma9_nandread(ulong);
-extern int vcma9_nandwrite(ulong);
-extern int vcma9_dactest(int);
-extern int do_mplcommon(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
-
 /* ------------------------------------------------------------------------- */
 
 int do_vcma9(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
@@ -60,7 +34,7 @@ int do_vcma9(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
        char cs8900_name[10];
        if (strcmp(argv[1], "info") == 0)
        {
-               print_vcma9_info();
+               vcma9_print_info();
                return 0;
        }
 #if defined(CONFIG_CS8900)
@@ -133,48 +107,6 @@ int do_vcma9(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
                return 0;
        }
 #endif
-#if 0
-       if (strcmp(argv[1], "cantest") == 0) {
-               if (argc >= 3)
-                       vcma9_cantest(strcmp(argv[2], "s") ? 0 : 1);
-               else
-                       vcma9_cantest(0);
-               return 0;
-       }
-       if (strcmp(argv[1], "nandtest") == 0) {
-               vcma9_nandtest();
-               return 0;
-       }
-       if (strcmp(argv[1], "nanderase") == 0) {
-               vcma9_nanderase();
-               return 0;
-       }
-       if (strcmp(argv[1], "nandread") == 0) {
-               ulong offset = 0;
-
-               if (argc >= 3)
-                       offset = simple_strtoul(argv[2], NULL, 16);
-
-               vcma9_nandread(offset);
-               return 0;
-       }
-       if (strcmp(argv[1], "nandwrite") == 0) {
-               ulong offset = 0;
-
-               if (argc >= 3)
-                       offset = simple_strtoul(argv[2], NULL, 16);
-
-               vcma9_nandwrite(offset);
-               return 0;
-       }
-       if (strcmp(argv[1], "dactest") == 0) {
-               if (argc >= 3)
-                       vcma9_dactest(strcmp(argv[2], "s") ? 0 : 1);
-               else
-               vcma9_dactest(0);
-               return 0;
-       }
-#endif
 
        return (do_mplcommon(cmdtp, flag, argc, argv));
 }
@@ -182,5 +114,6 @@ int do_vcma9(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
 U_BOOT_CMD(
        vcma9, 6, 1, do_vcma9,
        "VCMA9 specific commands",
-       "flash mem [SrcAddr]\n    - updates U-Boot with image in memory"
+       "flash mem [SrcAddr] - updates U-Boot with image in memory\n"
+       "vcma9 info                - displays board information"
 );