[T106][ZXW-22]7520V3SCV2.01.01.02P42U09_VEC_V0.8_AP_VEC origin source commit

Change-Id: Ic6e05d89ecd62fc34f82b23dcf306c93764aec4b
diff --git a/boot/common/src/loader/board/zx297520v3/Makefile b/boot/common/src/loader/board/zx297520v3/Makefile
new file mode 100644
index 0000000..cb6c0d2
--- /dev/null
+++ b/boot/common/src/loader/board/zx297520v3/Makefile
@@ -0,0 +1,44 @@
+#
+# (C) Copyright 2009
+# Texas Instruments, <www.ti.com>
+#
+# (C) Copyright 2000, 2001, 2002
+# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
+#
+# 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
+# version 2 as published by the Free Software Foundation.
+#
+# 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
+#
+
+include $(TOPDIR)/config.mk
+
+LIB	= lib$(BOARD).a
+
+OBJS	:= zx297520v3.o
+
+$(LIB):	$(OBJS) $(SOBJS)
+	$(AR) crv $@ $^
+
+clean:
+	rm -f $(SOBJS) $(OBJS)
+
+distclean:	clean
+	rm -f $(LIB) core *.bak .depend
+
+#########################################################################
+-include .depend
+
+#########################################################################
diff --git a/boot/common/src/loader/board/zx297520v3/config.mk b/boot/common/src/loader/board/zx297520v3/config.mk
new file mode 100644
index 0000000..41c43a8
--- /dev/null
+++ b/boot/common/src/loader/board/zx297520v3/config.mk
@@ -0,0 +1 @@
+TEXT_BASE = 0x82000
diff --git a/boot/common/src/loader/board/zx297520v3/zx297520v3.c b/boot/common/src/loader/board/zx297520v3/zx297520v3.c
new file mode 100644
index 0000000..a0fef71
--- /dev/null
+++ b/boot/common/src/loader/board/zx297520v3/zx297520v3.c
@@ -0,0 +1,21 @@
+/*
+ * (C) Copyright 2016 ZXIC Inc.
+ *
+ */
+ 
+#include <common.h>
+#include <asm/io.h>
+#if (CONFIG_COMMANDS & CFG_CMD_NAND) && defined(CFG_NAND_LEGACY)
+#include <linux/mtd/nand_legacy.h>
+#endif
+
+
+/*****************************************
+ * Routine: board_init
+ * Description: Early hardware init.
+ *****************************************/
+int board_init(void)
+{
+	return 0;
+}
+