[Feature]add MT2731_MP2_MR2_SVN388 baseline version

Change-Id: Ief04314834b31e27effab435d3ca8ba33b499059
diff --git a/src/bsp/trustzone/teeloader/mt2701/tllink.lds b/src/bsp/trustzone/teeloader/mt2701/tllink.lds
new file mode 100644
index 0000000..d55d335
--- /dev/null
+++ b/src/bsp/trustzone/teeloader/mt2701/tllink.lds
@@ -0,0 +1,51 @@
+OUTPUT_ARCH(arm)
+
+ENTRY(_start)
+
+SECTIONS {
+
+	. = %BASE_ADDR%;
+	.start ALIGN(4) : {	
+		*(.text.start)
+	} 
+
+	. = . + 0x01FC;
+	.rom_info ALIGN(4) : {	    	    	    	     
+		*(.data.rom_info)
+	} 
+	.text ALIGN(4) : {
+		*(.text)
+		*(.text.*)        
+	} 
+	.rodata ALIGN(4) : {
+		*(.rodata)
+		*(.rodata.*)        
+	} 
+	.data ALIGN(4) : {
+		*(.data)
+		*(.data.*)        
+	} 
+	.got ALIGN(4) : {
+		*(.got)
+		*(.got.*)        
+	} 
+
+	. = %BASE_ADDR%-0x100000 ;
+	.bss ALIGN(16) : {
+		_bss_start = .;
+		*(.bss)
+		*(.bss.*)
+		*(COMMON)
+		/* make _bss_end as 4 bytes alignment */
+		. = ALIGN(4);
+		_bss_end = .;
+	}
+
+	.secbuf ALIGN(4) : {
+		_secbuf_start = .;
+		*(.secbuf)
+		_secbuf_end = .;
+	} 
+
+}
+