[msm8655]: Add feature flag to build Trustzone with LK

Add ENABLE_TRUSTZONE compile time flag to allow Trustzone
initializations with LK. The linker scripts move LK up in
memory, making room for TZ sysini to be placed at reset
vector and take control of Scorpion from power up itself.

This is a partial solution to enable TZ as part of LK.The
TZ/code/image itself is currently not part of LK tree and
is managed separately.As a result, this feature will be
turned off by default.

Change-Id: I1b4e4b380c415428fe22f34563a97440082befee
diff --git a/makefile b/makefile
index d6687da..f93bfd9 100644
--- a/makefile
+++ b/makefile
@@ -34,6 +34,14 @@
 OUTELF := $(BUILDDIR)/lk
 CONFIGHEADER := $(BUILDDIR)/config.h
 
+#Initialize the command-line flag ENABLE_TRUSTZONE. Value for flag passed in at command-line will take precedence
+ENABLE_TRUSTZONE := 0
+
+ifeq ($(ENABLE_TRUSTZONE),1)
+	INPUT_TZ_BIN := tzbsp/tzbsp.bin
+	OUTPUT_TZ_BIN := $(BUILDDIR)/tzbsp_bin.o
+endif
+
 INCLUDES := -I$(BUILDDIR) -Iinclude
 CFLAGS := -O2 -g -fno-builtin -finline -W -Wall -Wno-multichar -Wno-unused-parameter -Wno-unused-function -include $(CONFIGHEADER)
 #CFLAGS += -Werror