[Feature]add MT2731_MP2_MR2_SVN388 baseline version
Change-Id: Ief04314834b31e27effab435d3ca8ba33b499059
diff --git a/src/bsp/lk/target/aud8521pevb2/include/target/cust_usb.h b/src/bsp/lk/target/aud8521pevb2/include/target/cust_usb.h
new file mode 100644
index 0000000..c84152c
--- /dev/null
+++ b/src/bsp/lk/target/aud8521pevb2/include/target/cust_usb.h
@@ -0,0 +1,9 @@
+#pragma once
+
+#define CONFIG_USBD_LANG "0409"
+
+#define USB_VENDORID (0x0BB4)
+#define USB_PRODUCTID (0x0C01)
+#define USB_VERSIONID (0x0100)
+#define USB_MANUFACTURER "MediaTek"
+#define USB_PRODUCT_NAME "Yocto"
diff --git a/src/bsp/lk/target/aud8521pevb2/include/target/debugconfig.h b/src/bsp/lk/target/aud8521pevb2/include/target/debugconfig.h
new file mode 100644
index 0000000..8f463ef
--- /dev/null
+++ b/src/bsp/lk/target/aud8521pevb2/include/target/debugconfig.h
@@ -0,0 +1,26 @@
+/*
+ * Copyright (c) 2014 Travis Geiselbrecht
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining
+ * a copy of this software and associated documentation files
+ * (the "Software"), to deal in the Software without restriction,
+ * including without limitation the rights to use, copy, modify, merge,
+ * publish, distribute, sublicense, and/or sell copies of the Software,
+ * and to permit persons to whom the Software is furnished to do so,
+ * subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be
+ * included in all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+ * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+ * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+ * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+ * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+ */
+#pragma once
+
+#define DEBUG_UART 0
+
diff --git a/src/bsp/lk/target/aud8521pevb2/rules.mk b/src/bsp/lk/target/aud8521pevb2/rules.mk
new file mode 100644
index 0000000..197fcdb
--- /dev/null
+++ b/src/bsp/lk/target/aud8521pevb2/rules.mk
@@ -0,0 +1,46 @@
+LOCAL_DIR := $(GET_LOCAL_DIR)
+MODULE := ${LOCAL_DIR}
+
+GLOBAL_INCLUDES += \
+ $(LOCAL_DIR)/include
+
+MODULE_SRCS += \
+ $(LOCAL_DIR)/target.c \
+
+PLATFORM := mt2701
+
+TZ_PART_NAME := TEE1
+RECOVERY_TZ_PART_NAME = TEE1
+DTBO_PART_NAME := DTBO
+BOOT_PART_NAME := BOOTIMG
+RECOVERY_BOOT_PART_NAME = RECOVERY
+
+CACHED_MEMPOOL_ADDR := 0x85000000
+CACHED_MEMPOOL_SIZE := 0x1AE00000 # 430MB
+
+SCRATCH_SIZE := 0x08000000 # 128MB
+MAX_TEE_DRAM_SIZE := 0x10000000 # 256M
+
+BL33_ADDR := 0x81e00000
+
+OPTION_CLEAR_FASTBOOT_FLAG := 1
+OPTION_CLEAR_RECOVERY_FLAG := 1
+
+GLOBAL_CFLAGS += -DTZ_PART_NAME=\"$(TZ_PART_NAME)\" \
+ -DDTBO_PART_NAME=\"$(DTBO_PART_NAME)\" \
+ -DBOOT_PART_NAME=\"$(BOOT_PART_NAME)\" \
+ -DRECOVERY_BOOT_PART_NAME=\"$(RECOVERY_BOOT_PART_NAME)\" \
+ -DRECOVERY_TZ_PART_NAME=\"$(RECOVERY_TZ_PART_NAME)\" \
+
+GLOBAL_DEFINES += CACHED_MEMPOOL_ADDR=$(CACHED_MEMPOOL_ADDR) \
+ CACHED_MEMPOOL_SIZE=$(CACHED_MEMPOOL_SIZE) \
+ OPTION_CLEAR_FASTBOOT_FLAG=$(OPTION_CLEAR_FASTBOOT_FLAG) \
+ OPTION_CLEAR_RECOVERY_FLAG=$(OPTION_CLEAR_RECOVERY_FLAG) \
+ BL33_ADDR=$(BL33_ADDR)
+
+MODULE_DEPS += \
+ platform/$(PLATFORM)/drivers/mmc \
+ platform/$(PLATFORM)/drivers/efuse \
+
+include make/module.mk
+
diff --git a/src/bsp/lk/target/aud8521pevb2/target.c b/src/bsp/lk/target/aud8521pevb2/target.c
new file mode 100644
index 0000000..740ca9e
--- /dev/null
+++ b/src/bsp/lk/target/aud8521pevb2/target.c
@@ -0,0 +1,30 @@
+/*
+ * Copyright (c) 2016 MediaTek Inc.
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining
+ * a copy of this software and associated documentation files
+ * (the "Software"), to deal in the Software without restriction,
+ * including without limitation the rights to use, copy, modify, merge,
+ * publish, distribute, sublicense, and/or sell copies of the Software,
+ * and to permit persons to whom the Software is furnished to do so,
+ * subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be
+ * included in all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+ * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+ * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+ * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+ * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+*/
+
+#include <platform/mmc_core.h>
+
+void target_init(void)
+{
+ emmc_init();
+}
+