msm: Add regulators for 7627/PM7540

Add regulator API support for PM7540 regulators on 7627.

Change-Id: I50840a223d05ce73ebead47d8b0123ecf84dfe31
Signed-off-by: Pankaj Kumar <pakuma@codeaurora.org>
diff --git a/arch/arm/mach-msm/Kconfig b/arch/arm/mach-msm/Kconfig
index 486d80e..66d1044 100644
--- a/arch/arm/mach-msm/Kconfig
+++ b/arch/arm/mach-msm/Kconfig
@@ -29,6 +29,7 @@
 	select MSM_GPIOMUX
 	select REGULATOR
 	select MULTI_IRQ_HANDLER
+	select MSM_PROC_COMM_REGULATOR
 
 config ARCH_MSM7X30
 	bool "MSM7x30"
diff --git a/arch/arm/mach-msm/Makefile b/arch/arm/mach-msm/Makefile
index 292cee2..74f312a 100644
--- a/arch/arm/mach-msm/Makefile
+++ b/arch/arm/mach-msm/Makefile
@@ -290,6 +290,8 @@
 
 obj-$(CONFIG_MSM_PROC_COMM_REGULATOR) += proccomm-regulator.o
 ifdef CONFIG_MSM_PROC_COMM_REGULATOR
+obj-$(CONFIG_MACH_MSM7X27_SURF) += board-msm7627-regulator.o
+obj-$(CONFIG_MACH_MSM7X27_FFA) += board-msm7627-regulator.o
 obj-$(CONFIG_ARCH_MSM7X30) += board-msm7x30-regulator.o
 obj-$(CONFIG_ARCH_MSM7X27A) += board-msm7x27a-regulator.o
 endif
diff --git a/arch/arm/mach-msm/board-msm7627-regulator.c b/arch/arm/mach-msm/board-msm7627-regulator.c
new file mode 100644
index 0000000..2ecda72c
--- /dev/null
+++ b/arch/arm/mach-msm/board-msm7627-regulator.c
@@ -0,0 +1,221 @@
+/*
+ * Copyright (c) 2011, Code Aurora Forum. All rights reserved.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 and
+ * only version 2 as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ */
+
+#include "board-msm7627-regulator.h"
+
+#define PCOM_VREG_CONSUMERS(name) \
+	static struct regulator_consumer_supply __pcom_vreg_supply_##name[]
+
+#define PCOM_VREG_CONSTRAINT_LVSW(_name, _always_on, _boot_on, _supply_uV) \
+{ \
+	.name = #_name, \
+	.min_uV = 0, \
+	.max_uV = 0, \
+	.input_uV = _supply_uV, \
+	.valid_modes_mask = REGULATOR_MODE_NORMAL, \
+	.valid_ops_mask = REGULATOR_CHANGE_STATUS, \
+	.apply_uV = 0, \
+	.boot_on = _boot_on, \
+	.always_on = _always_on \
+}
+
+#define PCOM_VREG_CONSTRAINT_DYN(_name, _min_uV, _max_uV, _always_on, \
+		_boot_on, _apply_uV, _supply_uV) \
+{ \
+	.name = #_name, \
+	.min_uV = _min_uV, \
+	.max_uV = _max_uV, \
+	.valid_modes_mask = REGULATOR_MODE_NORMAL, \
+	.valid_ops_mask = REGULATOR_CHANGE_VOLTAGE | REGULATOR_CHANGE_STATUS, \
+	.input_uV = _supply_uV, \
+	.apply_uV = _apply_uV, \
+	.boot_on = _boot_on, \
+	.always_on = _always_on \
+}
+
+
+#define PCOM_VREG_INIT(_name, _supply, _constraints)\
+{ \
+	.supply_regulator = _supply, \
+	.consumer_supplies = __pcom_vreg_supply_##_name, \
+	.num_consumer_supplies = ARRAY_SIZE(__pcom_vreg_supply_##_name), \
+	.constraints = _constraints \
+}
+
+#define PCOM_VREG_SMP(_name, _id, _supply, _min_uV, _max_uV, _rise_time, \
+		_pulldown, _always_on, _boot_on, _apply_uV, _supply_uV) \
+{ \
+	.init_data = PCOM_VREG_INIT(_name, _supply, \
+		PCOM_VREG_CONSTRAINT_DYN(_name, _min_uV, _max_uV, _always_on, \
+			_boot_on, _apply_uV, _supply_uV)), \
+	.id = _id, \
+	.rise_time = _rise_time, \
+	.pulldown = _pulldown, \
+	.negative = 0, \
+}
+
+#define PCOM_VREG_LDO PCOM_VREG_SMP
+
+PCOM_VREG_CONSUMERS(smps0) = {
+	REGULATOR_SUPPLY("smps0",	NULL),
+	REGULATOR_SUPPLY("msmc1",	NULL),
+};
+
+PCOM_VREG_CONSUMERS(smps1) = {
+	REGULATOR_SUPPLY("smps1",	NULL),
+	REGULATOR_SUPPLY("msmc2",	NULL),
+};
+
+PCOM_VREG_CONSUMERS(smps2) = {
+	REGULATOR_SUPPLY("smps2",	NULL),
+	REGULATOR_SUPPLY("pa",		NULL),
+};
+
+PCOM_VREG_CONSUMERS(smps3) = {
+	REGULATOR_SUPPLY("smps3",	NULL),
+	REGULATOR_SUPPLY("msme1",	NULL),
+};
+
+PCOM_VREG_CONSUMERS(ldo00) = {
+	REGULATOR_SUPPLY("ldo00",	NULL),
+	REGULATOR_SUPPLY("gp3",		NULL),
+};
+
+PCOM_VREG_CONSUMERS(ldo01) = {
+	REGULATOR_SUPPLY("ldo01",	NULL),
+	REGULATOR_SUPPLY("msma",	NULL),
+};
+
+PCOM_VREG_CONSUMERS(ldo02) = {
+	REGULATOR_SUPPLY("ldo02",	NULL),
+	REGULATOR_SUPPLY("msmp",	NULL),
+};
+
+PCOM_VREG_CONSUMERS(ldo03) = {
+	REGULATOR_SUPPLY("ldo03",	NULL),
+	REGULATOR_SUPPLY("ruim",	NULL),
+};
+
+PCOM_VREG_CONSUMERS(ldo04) = {
+	REGULATOR_SUPPLY("ldo04",	NULL),
+	REGULATOR_SUPPLY("tcxo",	NULL),
+};
+
+PCOM_VREG_CONSUMERS(ldo05) = {
+	REGULATOR_SUPPLY("ldo05",	NULL),
+	REGULATOR_SUPPLY("mmc",		NULL),
+};
+
+PCOM_VREG_CONSUMERS(ldo06) = {
+	REGULATOR_SUPPLY("ldo06",	NULL),
+	REGULATOR_SUPPLY("usb",		NULL),
+};
+
+PCOM_VREG_CONSUMERS(ldo07) = {
+	REGULATOR_SUPPLY("ldo07",	NULL),
+	REGULATOR_SUPPLY("rfrx1",	NULL),
+};
+
+PCOM_VREG_CONSUMERS(ldo08) = {
+	REGULATOR_SUPPLY("ldo08",	NULL),
+	REGULATOR_SUPPLY("synt",	NULL),
+};
+
+PCOM_VREG_CONSUMERS(ldo09) = {
+	REGULATOR_SUPPLY("ldo09",	NULL),
+	REGULATOR_SUPPLY("gp1",		NULL),
+};
+
+PCOM_VREG_CONSUMERS(ldo10) = {
+	REGULATOR_SUPPLY("ldo10",	NULL),
+	REGULATOR_SUPPLY("gp4",		NULL),
+};
+
+PCOM_VREG_CONSUMERS(ldo11) = {
+	REGULATOR_SUPPLY("ldo11",	NULL),
+	REGULATOR_SUPPLY("gp2",		NULL),
+};
+
+PCOM_VREG_CONSUMERS(ldo12) = {
+	REGULATOR_SUPPLY("ldo12",	NULL),
+	REGULATOR_SUPPLY("rftx",	NULL),
+};
+
+PCOM_VREG_CONSUMERS(ldo13) = {
+	REGULATOR_SUPPLY("ldo13",	NULL),
+	REGULATOR_SUPPLY("wlan",	NULL),
+};
+
+PCOM_VREG_CONSUMERS(ldo14) = {
+	REGULATOR_SUPPLY("ldo14",	NULL),
+	REGULATOR_SUPPLY("rf",		NULL),
+};
+
+PCOM_VREG_CONSUMERS(ldo15) = {
+	REGULATOR_SUPPLY("ldo15",	NULL),
+	REGULATOR_SUPPLY("gp6",		NULL),
+};
+
+PCOM_VREG_CONSUMERS(ldo16) = {
+	REGULATOR_SUPPLY("ldo16",	NULL),
+	REGULATOR_SUPPLY("gp5",	NULL),
+};
+
+PCOM_VREG_CONSUMERS(ldo17) = {
+	REGULATOR_SUPPLY("ldo17",	NULL),
+	REGULATOR_SUPPLY("msme2",	NULL),
+};
+
+/**
+ * Minimum and Maximum range for the regulators is as per the
+ * device Datasheet. Actual value used by consumer is between
+ * the provided range.
+ */
+static struct proccomm_regulator_info msm7627_pcom_vreg_info[] = {
+	/* Standard regulators (SMPS and LDO)
+	 * R = rise time (us)
+	 * P = pulldown (1 = pull down, 0 = float, -1 = don't care)
+	 * A = always on
+	 * B = boot on
+	 * V = automatic voltage set (meaningful for single-voltage regs only)
+	 * S = supply voltage (uV)
+	 *             name  id  supp    min uV    max uV  R   P  A  B  V  S */
+	PCOM_VREG_SMP(smps0,  3, NULL,  750000,  3050000, 0, -1, 0, 0, 0, 0),
+	PCOM_VREG_SMP(smps1,  4, NULL,  750000,  3050000, 0, -1, 0, 0, 0, 0),
+	PCOM_VREG_SMP(smps2, 10, NULL,  750000,  3050000, 0, -1, 0, 0, 0, 0),
+	PCOM_VREG_SMP(smps3,  2, NULL,  750000,  3050000, 0, -1, 0, 0, 0, 0),
+	PCOM_VREG_LDO(ldo00,  5, NULL,  2850000,  2850000, 0, -1, 0, 0, 0, 0),
+	PCOM_VREG_LDO(ldo01,  0, NULL,  2600000,  2600000, 0, -1, 0, 0, 0, 0),
+	PCOM_VREG_LDO(ldo02,  1, NULL,  2600000,  2600000, 0, -1, 0, 0, 0, 0),
+	PCOM_VREG_LDO(ldo03, 19, NULL,  2850000,  2850000, 0, -1, 0, 0, 0, 0),
+	PCOM_VREG_LDO(ldo04,  9, NULL,  2850000,  2850000, 0, -1, 0, 0, 0, 0),
+	PCOM_VREG_LDO(ldo05, 18, NULL,  2850000,  2850000, 0, -1, 0, 0, 0, 0),
+	PCOM_VREG_LDO(ldo06, 16, NULL,  3300000,  3300000, 0, -1, 0, 0, 0, 0),
+	PCOM_VREG_LDO(ldo07, 12, NULL,  2700000,  2700000, 0, -1, 0, 0, 0, 0),
+	PCOM_VREG_LDO(ldo08, 14, NULL,  2700000,  2700000, 0, -1, 0, 0, 0, 0),
+	PCOM_VREG_LDO(ldo09,  8, NULL,  2900000,  2900000, 0, -1, 0, 0, 0, 0),
+	PCOM_VREG_LDO(ldo10,  7, NULL,  2600000,  2600000, 0, -1, 0, 0, 0, 0),
+	PCOM_VREG_LDO(ldo11, 21, NULL,  1800000,  1800000, 0, -1, 0, 0, 0, 0),
+	PCOM_VREG_LDO(ldo12, 11, NULL,  1800000,  1800000, 0, -1, 0, 0, 0, 0),
+	PCOM_VREG_LDO(ldo13, 15, NULL,  2850000,  2850000, 0, -1, 0, 0, 0, 0),
+	PCOM_VREG_LDO(ldo14, 24, NULL,  2700000,  2700000, 0, -1, 0, 0, 0, 0),
+	PCOM_VREG_LDO(ldo15, 23, NULL,  2600000,  2600000, 0, -1, 0, 0, 0, 0),
+	PCOM_VREG_LDO(ldo16, 22, NULL,  3000000,  3000000, 0, -1, 0, 0, 0, 0),
+	PCOM_VREG_LDO(ldo17,  6, NULL,  1300000,  1300000, 0, -1, 0, 0, 0, 0),
+
+};
+
+struct proccomm_regulator_platform_data msm7627_proccomm_regulator_data = {
+	.regs = msm7627_pcom_vreg_info,
+	.nregs = ARRAY_SIZE(msm7627_pcom_vreg_info)
+};
diff --git a/arch/arm/mach-msm/board-msm7627-regulator.h b/arch/arm/mach-msm/board-msm7627-regulator.h
new file mode 100644
index 0000000..d82c5c0
--- /dev/null
+++ b/arch/arm/mach-msm/board-msm7627-regulator.h
@@ -0,0 +1,21 @@
+/*
+ * Copyright (c) 2011, Code Aurora Forum. All rights reserved.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 and
+ * only version 2 as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ */
+
+#ifndef __ARCH_ARM_MACH_MSM_BOARD_7627_REGULATOR_H__
+#define __ARCH_ARM_MACH_MSM_BOARD_7627_REGULATOR_H__
+
+#include "proccomm-regulator.h"
+
+extern struct proccomm_regulator_platform_data msm7627_proccomm_regulator_data;
+
+#endif
diff --git a/arch/arm/mach-msm/board-msm7x27.c b/arch/arm/mach-msm/board-msm7x27.c
index ef1bf2d..3114e42 100644
--- a/arch/arm/mach-msm/board-msm7x27.c
+++ b/arch/arm/mach-msm/board-msm7x27.c
@@ -63,6 +63,7 @@
 #include <mach/usbdiag.h>
 #endif
 
+#include "board-msm7627-regulator.h"
 #include "devices.h"
 #include "clock.h"
 #include "acpuclock.h"
@@ -1569,7 +1570,21 @@
 	.aux_dat = 96,
 	.msm_i2c_config_gpio = msm_i2c_gpio_config,
 };
+static struct platform_device msm_proccomm_regulator_dev = {
+	.name   = PROCCOMM_REGULATOR_DEV_NAME,
+	.id     = -1,
+	.dev    = {
+		.platform_data = &msm7627_proccomm_regulator_data
+	}
+};
 
+static void __init msm7627_init_regulators(void)
+{
+	int rc = platform_device_register(&msm_proccomm_regulator_dev);
+	if (rc)
+		pr_err("%s: could not register regulator device: %d\n",
+				__func__, rc);
+}
 static void __init msm_device_i2c_init(void)
 {
 	if (gpio_request(60, "i2c_pri_clk"))
@@ -1624,6 +1639,7 @@
 static void __init msm7x2x_init(void)
 {
 
+	msm7627_init_regulators();
 #ifdef CONFIG_ARCH_MSM7X25
 	msm_clock_init(msm_clocks_7x25, msm_num_clocks_7x25);
 #elif defined(CONFIG_ARCH_MSM7X27)