msm: iomap-8960: Add QFPROM base for TSENS

Add base address for QFPROM to access the calibration data.

Signed-off-by: Siddartha Mohanadoss <smohanad@codeaurora.org>
diff --git a/arch/arm/mach-msm/include/mach/msm_iomap-8960.h b/arch/arm/mach-msm/include/mach/msm_iomap-8960.h
index 3803646..9252387 100644
--- a/arch/arm/mach-msm/include/mach/msm_iomap-8960.h
+++ b/arch/arm/mach-msm/include/mach/msm_iomap-8960.h
@@ -113,4 +113,7 @@
 #endif
 #endif
 
+#define MSM8960_QFPROM_PHYS		0x00700000
+#define MSM8960_QFPROM_SIZE		SZ_4K
+
 #endif
diff --git a/arch/arm/mach-msm/include/mach/msm_iomap.h b/arch/arm/mach-msm/include/mach/msm_iomap.h
index 5e88d0b..384a192 100644
--- a/arch/arm/mach-msm/include/mach/msm_iomap.h
+++ b/arch/arm/mach-msm/include/mach/msm_iomap.h
@@ -71,6 +71,7 @@
 #define MSM_HDMI_BASE		IOMEM(0xFA800000)	/*  4K  */
 #define MSM_RPM_BASE		IOMEM(0xFA801000)	/*  4K	*/
 #define MSM_RPM_MPM_BASE	IOMEM(0xFA802000)	/*  4K	*/
+#define MSM_QFPROM_BASE		IOMEM(0xFA700000)	/*  4K  */
 
 #define MSM_SHARED_RAM_SIZE	SZ_2M
 
diff --git a/arch/arm/mach-msm/io.c b/arch/arm/mach-msm/io.c
index d9cf680..f00842a 100644
--- a/arch/arm/mach-msm/io.c
+++ b/arch/arm/mach-msm/io.c
@@ -204,6 +204,7 @@
 #ifdef CONFIG_MSM_DEBUG_UART
 	MSM_DEVICE(DEBUG_UART),
 #endif
+	MSM_CHIP_DEVICE(QFPROM, MSM8960),
 };
 
 void __init msm_map_msm8960_io(void)