target: msm7627a: Populate target mmc capabilities

Add function to populate mmc capabilities such as ddr, hs200
mode, bus width support, clock rate etc.

Change-Id: I9dd9e55cf4d1cd7c57f5cd420e69f380261934d7
diff --git a/target/msm7627a/init.c b/target/msm7627a/init.c
index 2bb46c2..502cb54 100644
--- a/target/msm7627a/init.c
+++ b/target/msm7627a/init.c
@@ -1,7 +1,7 @@
 /*
  * Copyright (c) 2009, Google Inc.
  * All rights reserved.
- * Copyright (c) 2009-2012, The Linux Foundation. All rights reserved.
+ * Copyright (c) 2009-2013, The Linux Foundation. All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
@@ -722,3 +722,12 @@
 	};
 	return ret;
 }
+
+/* Function to set the capabilities for the host */
+void target_mmc_caps(struct mmc_host *host)
+{
+	host->caps.ddr_mode = 0;
+	host->caps.hs200_mode = 0;
+	host->caps.bus_width = MMC_BOOT_BUS_WIDTH_4_BIT;
+	host->caps.hs_clk_rate = MMC_CLK_50MHZ;
+}