Re: [U-Boot] [PATCH v2 3/4] arm: Remove VCMA9 board

2016-11-26 Thread Jagan Teki
On Sat, Nov 26, 2016 at 12:55 PM, David Müller (ELSOFT AG)
 wrote:
> Simon Glass wrote:
>> This board has not been converted to DM_SERIAL by the deadline.
>> Remove it.
>>
>> Signed-off-by: Simon Glass 
>
> Acked-by: David Müller 

Reviewed-by: Jagan Teki 

thanks!
-- 
Jagan Teki
Free Software Engineer | www.openedev.com
U-Boot, Linux | Upstream Maintainer
Hyderabad, India.
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH v2 3/4] arm: Remove VCMA9 board

2016-11-25 Thread ELSOFT AG
Simon Glass wrote:
> This board has not been converted to DM_SERIAL by the deadline.
> Remove it.
> 
> Signed-off-by: Simon Glass 

Acked-by: David Müller 


___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


[U-Boot] [PATCH v2 3/4] arm: Remove VCMA9 board

2016-11-23 Thread Simon Glass
This board has not been converted to DM_SERIAL by the deadline.
Remove it.

Signed-off-by: Simon Glass 
---

Changes in v2: None

 arch/arm/Kconfig|   5 -
 board/mpl/common/common_util.c  |  23 --
 board/mpl/vcma9/Kconfig |  15 --
 board/mpl/vcma9/MAINTAINERS |   6 -
 board/mpl/vcma9/Makefile|  11 -
 board/mpl/vcma9/cmd_vcma9.c | 119 --
 board/mpl/vcma9/lowlevel_init.S | 500 
 board/mpl/vcma9/vcma9.c | 209 -
 board/mpl/vcma9/vcma9.h |  28 ---
 configs/VCMA9_defconfig |  17 --
 include/configs/VCMA9.h | 205 
 scripts/config_whitelist.txt|   1 -
 12 files changed, 1139 deletions(-)
 delete mode 100644 board/mpl/vcma9/Kconfig
 delete mode 100644 board/mpl/vcma9/MAINTAINERS
 delete mode 100644 board/mpl/vcma9/Makefile
 delete mode 100644 board/mpl/vcma9/cmd_vcma9.c
 delete mode 100644 board/mpl/vcma9/lowlevel_init.S
 delete mode 100644 board/mpl/vcma9/vcma9.c
 delete mode 100644 board/mpl/vcma9/vcma9.h
 delete mode 100644 configs/VCMA9_defconfig
 delete mode 100644 include/configs/VCMA9.h

diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig
index 398dbe0..993485a 100644
--- a/arch/arm/Kconfig
+++ b/arch/arm/Kconfig
@@ -142,10 +142,6 @@ config TARGET_EDB93XX
bool "Support edb93xx"
select CPU_ARM920T
 
-config TARGET_VCMA9
-   bool "Support VCMA9"
-   select CPU_ARM920T
-
 config TARGET_ASPENITE
bool "Support aspenite"
select CPU_ARM926EJS
@@ -971,7 +967,6 @@ source "board/h2200/Kconfig"
 source "board/hisilicon/hikey/Kconfig"
 source "board/imx31_phycore/Kconfig"
 source "board/isee/igep0033/Kconfig"
-source "board/mpl/vcma9/Kconfig"
 source "board/olimex/mx23_olinuxino/Kconfig"
 source "board/phytec/pcm051/Kconfig"
 source "board/phytec/pcm052/Kconfig"
diff --git a/board/mpl/common/common_util.c b/board/mpl/common/common_util.c
index a6edb6d..101b6ef 100644
--- a/board/mpl/common/common_util.c
+++ b/board/mpl/common/common_util.c
@@ -273,29 +273,6 @@ mpl_prg(uchar *src, ulong size)
return (1);
}
 #endif /* defined(CONFIG_PATI) */
-
-#elif defined(CONFIG_VCMA9)
-   start = 0;
-
-   /* search end sector */
-   for (i = 0; i < info->sector_count; i++)
-   if (size < info->start[i])
-   break;
-
-   flash_protect(FLAG_PROTECT_CLEAR,
- start,
- size,
- info);
-
-   /* now erase flash */
-   printf("Erasing at %lx (sector %d) (start %lx)\n",
-   start,0,info->start[0]);
-   if ((rc = flash_erase (info, 0, i)) != 0) {
-   puts("ERROR ");
-   flash_perror(rc);
-   return (1);
-   }
-
 #endif
printf("flash erased, programming from 0x%lx 0x%lx Bytes\n",
(ulong)src, size);
diff --git a/board/mpl/vcma9/Kconfig b/board/mpl/vcma9/Kconfig
deleted file mode 100644
index a156452..000
--- a/board/mpl/vcma9/Kconfig
+++ /dev/null
@@ -1,15 +0,0 @@
-if TARGET_VCMA9
-
-config SYS_BOARD
-   default "vcma9"
-
-config SYS_VENDOR
-   default "mpl"
-
-config SYS_SOC
-   default "s3c24x0"
-
-config SYS_CONFIG_NAME
-   default "VCMA9"
-
-endif
diff --git a/board/mpl/vcma9/MAINTAINERS b/board/mpl/vcma9/MAINTAINERS
deleted file mode 100644
index 3817436..000
--- a/board/mpl/vcma9/MAINTAINERS
+++ /dev/null
@@ -1,6 +0,0 @@
-VCMA9 BOARD
-M: David Müller 
-S: Maintained
-F: board/mpl/vcma9/
-F: include/configs/VCMA9.h
-F: configs/VCMA9_defconfig
diff --git a/board/mpl/vcma9/Makefile b/board/mpl/vcma9/Makefile
deleted file mode 100644
index 175a19f..000
--- a/board/mpl/vcma9/Makefile
+++ /dev/null
@@ -1,11 +0,0 @@
-#
-# (C) Copyright 2000-2006
-# Wolfgang Denk, DENX Software Engineering, w...@denx.de.
-#
-# SPDX-License-Identifier: GPL-2.0+
-#
-
-obj-y  := ../common/common_util.o
-obj-y  += vcma9.o cmd_vcma9.o
-
-obj-y  += lowlevel_init.o
diff --git a/board/mpl/vcma9/cmd_vcma9.c b/board/mpl/vcma9/cmd_vcma9.c
deleted file mode 100644
index c2d62e4..000
--- a/board/mpl/vcma9/cmd_vcma9.c
+++ /dev/null
@@ -1,119 +0,0 @@
-/*
- * (C) Copyright 2002
- * Denis Peter, MPL AG Switzerland, d.pe...@mpl.ch
- *
- * adapted for VCMA9
- * David Mueller, ELSOFT AG, d.muel...@elsoft.ch
- *
- * SPDX-License-Identifier:GPL-2.0+
- */
-
-#include 
-#include 
-#include 
-#include "vcma9.h"
-#include "../common/common_util.h"
-
-#if defined(CONFIG_CS8900)
-#include <../drivers/net/cs8900.h>
-
-static uchar cs8900_chksum(ushort data)
-{
-   return((data >> 8) & 0x00FF) + (data & 0x00FF);
-}
-
-#endif
-
-DECLARE_GLOBAL_DATA_PTR;
-
-/* - */
-
-int do_vcma9(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
-{
-   struct eth_device *dev;
-   char cs8900_name[10];
-