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/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
+