project: msm8909: Enable peripheral drivers for MSM8909.

Add feature flag for SMD and RPM-SMD driver in LK
for MSM8909. Also,enable boot_config,bam support,etc.

Change-Id: Ib0d75e59ee3d32534f6c5766dbfa39533eecb51d
diff --git a/project/msm8909.mk b/project/msm8909.mk
index 1f013f1..0ffce48 100644
--- a/project/msm8909.mk
+++ b/project/msm8909.mk
@@ -9,6 +9,9 @@
 DEBUG := 1
 EMMC_BOOT := 1
 
+ENABLE_SMD_SUPPORT := 1
+ENABLE_BOOT_CONFIG_SUPPORT := 1
+
 #DEFINES += WITH_DEBUG_DCC=1
 DEFINES += WITH_DEBUG_UART=1
 #DEFINES += WITH_DEBUG_FBCON=1
@@ -22,6 +25,11 @@
 DEFINES += ABOOT_FORCE_TAGS_ADDR=0x81E00000
 DEFINES += ABOOT_FORCE_KERNEL64_ADDR=0x00080000
 
+DEFINES += BAM_V170=1
+
+#Enable the feature of long press power on
+DEFINES += LONG_PRESS_POWER_ON=1
+
 #Disable thumb mode
 ENABLE_THUMB := false
 
@@ -31,6 +39,17 @@
 DEFINES += MMC_SDHCI_SUPPORT=1
 endif
 
+#enable power on vibrator feature
+ENABLE_PON_VIB_SUPPORT := true
+
 ifeq ($(EMMC_BOOT),1)
 DEFINES += _EMMC_BOOT=1
 endif
+
+ifeq ($(ENABLE_PON_VIB_SUPPORT),true)
+DEFINES += PON_VIB_SUPPORT=1
+endif
+
+ifeq ($(ENABLE_SMD_SUPPORT),1)
+DEFINES += SMD_SUPPORT=1
+endif