msm: 8064: Add machine types and board support for mpq.
Two machine types are needed for the MPQ_HRD and MPQ_DTV
devices. These are variations of the APQ8064 and use the
same ARCH_APQ8064 architecture.
Change-Id: Ie060570ff83a9081766bed096dffb6645dca1d92
Signed-off-by: Joel King <joelking@codeaurora.org>
diff --git a/arch/arm/mach-msm/Kconfig b/arch/arm/mach-msm/Kconfig
index 0b0f733..18fbcf6 100644
--- a/arch/arm/mach-msm/Kconfig
+++ b/arch/arm/mach-msm/Kconfig
@@ -747,6 +747,18 @@
help
Support for the Qualcomm APQ8064 LIQUID device.
+config MACH_MPQ8064_HRD
+ depends on ARCH_APQ8064
+ bool "MPQ8064 HRD"
+ help
+ Support for the Qualcomm MPQ8064 HRD device.
+
+config MACH_MPQ8064_DTV
+ depends on ARCH_APQ8064
+ bool "MPQ8064 DTV"
+ help
+ Support for the Qualcomm MPQ8064 DTV device.
+
config MACH_FSM9XXX_SURF
depends on ARCH_FSM9XXX
depends on !MSM_STACKED_MEMORY
diff --git a/arch/arm/mach-msm/board-8064.c b/arch/arm/mach-msm/board-8064.c
index 33e22c3..2feb40e 100644
--- a/arch/arm/mach-msm/board-8064.c
+++ b/arch/arm/mach-msm/board-8064.c
@@ -1758,3 +1758,21 @@
.init_early = apq8064_allocate_memory_regions,
MACHINE_END
+MACHINE_START(MPQ8064_HRD, "QCT MPQ8064 HRD")
+ .map_io = apq8064_map_io,
+ .reserve = apq8064_reserve,
+ .init_irq = apq8064_init_irq,
+ .handle_irq = gic_handle_irq,
+ .timer = &msm_timer,
+ .init_machine = apq8064_cdp_init,
+MACHINE_END
+
+MACHINE_START(MPQ8064_DTV, "QCT MPQ8064 DTV")
+ .map_io = apq8064_map_io,
+ .reserve = apq8064_reserve,
+ .init_irq = apq8064_init_irq,
+ .handle_irq = gic_handle_irq,
+ .timer = &msm_timer,
+ .init_machine = apq8064_cdp_init,
+MACHINE_END
+