ASoC: msm8960: Add platform device for ALSA Audio RT Proxy Driver.

Add support for RTPorts Playback and Capture.
There have two RTPorts RT_PORT_PROXY_001_RX,RT_PORT_PROXY_001_TX.
Each port works as combo supporting playback and capture of PCM.
Four BE devices are added - two for each combo port.

Signed-off-by: Laxminath Kasam <lkasam@codeaurora.org>
diff --git a/arch/arm/mach-msm/board-msm8960.c b/arch/arm/mach-msm/board-msm8960.c
index 99f97ab..87896df 100644
--- a/arch/arm/mach-msm/board-msm8960.c
+++ b/arch/arm/mach-msm/board-msm8960.c
@@ -3067,6 +3067,11 @@
 	&msm_voice,
 	&msm_voip,
 	&msm_lpa_pcm,
+	&msm_cpudai_afe_01_rx,
+	&msm_cpudai_afe_01_tx,
+	&msm_cpudai_afe_02_rx,
+	&msm_cpudai_afe_02_tx,
+	&msm_pcm_afe,
 #ifdef CONFIG_FB_MSM_HDMI_MSM_PANEL
 	&hdmi_msm_device,
 #endif
diff --git a/arch/arm/mach-msm/devices-8960.c b/arch/arm/mach-msm/devices-8960.c
index 67179d8..08c8435 100644
--- a/arch/arm/mach-msm/devices-8960.c
+++ b/arch/arm/mach-msm/devices-8960.c
@@ -1148,6 +1148,31 @@
 	.id	= -1,
 };
 
+struct platform_device msm_cpudai_afe_01_rx = {
+	.name = "msm-dai-q6",
+	.id = 0xE0,
+};
+
+struct platform_device msm_cpudai_afe_01_tx = {
+	.name = "msm-dai-q6",
+	.id = 0xF0,
+};
+
+struct platform_device msm_cpudai_afe_02_rx = {
+	.name = "msm-dai-q6",
+	.id = 0xF1,
+};
+
+struct platform_device msm_cpudai_afe_02_tx = {
+	.name = "msm-dai-q6",
+	.id = 0xE1,
+};
+
+struct platform_device msm_pcm_afe = {
+	.name	= "msm-pcm-afe",
+	.id	= -1,
+};
+
 struct platform_device *msm_footswitch_devices[] = {
 	FS_8X60(FS_MDP,    "fs_mdp"),
 	FS_8X60(FS_ROT,    "fs_rot"),
diff --git a/arch/arm/mach-msm/devices.h b/arch/arm/mach-msm/devices.h
index 012ba27..72e4ec2 100644
--- a/arch/arm/mach-msm/devices.h
+++ b/arch/arm/mach-msm/devices.h
@@ -137,6 +137,11 @@
 extern struct platform_device msm_voip;
 extern struct platform_device msm_lpa_pcm;
 extern struct platform_device msm_pcm_hostless;
+extern struct platform_device msm_cpudai_afe_01_rx;
+extern struct platform_device msm_cpudai_afe_01_tx;
+extern struct platform_device msm_cpudai_afe_02_rx;
+extern struct platform_device msm_cpudai_afe_02_tx;
+extern struct platform_device msm_pcm_afe;
 
 extern struct platform_device *msm_footswitch_devices[];
 extern unsigned msm_num_footswitch_devices;