[platform/msm7630]: Enable MDDI display in android bootloader.

--Initialize MDDI host and client
  to enable display. Enable PMDH and PMDH_P clock using proc comm.
--Add code to configure voltage regulators using SSBI writes.

By default, Display in bootloader is disabled on this target.

This code doesn't have support for Local clock control. To further
optimize the code, PMDH and PMDH_P clock should be enabled in the
modem bootloader code instead of enabling them in application
bootloader.

Change-Id: Ie10f8b096addf9f62e65526f8ffad80e64c5db93
diff --git a/platform/msm_shared/proc_comm.c b/platform/msm_shared/proc_comm.c
index d82beaa..5056917 100644
--- a/platform/msm_shared/proc_comm.c
+++ b/platform/msm_shared/proc_comm.c
@@ -83,6 +83,7 @@
 
 #define P_USB_HS_CORE_CLK     53  /* High speed USB 1 core clock */
 /* msm7x30 adds... */
+#define PMDH_P_CLK            82
 #define MDP_P_CLK             86
 
 enum {
@@ -262,6 +263,9 @@
 
 	clock_enable(clock_id);
 	clock_set_rate(clock_id, rate);
+#ifdef PLATFORM_MSM7X30
+	clock_enable (PMDH_P_CLK);
+#endif
 }
 
 void reboot(unsigned reboot_reason)