All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCHv3] support PMIC mc13892
       [not found] <1291778460-22819-1-git-send-email-yong.shen@freescale.com>
@ 2010-12-08  3:21 ` yong.shen at freescale.com
  2010-12-08  3:28   ` Yong Shen
                     ` (3 more replies)
  0 siblings, 4 replies; 20+ messages in thread
From: yong.shen at freescale.com @ 2010-12-08  3:21 UTC (permalink / raw)
  To: linux-arm-kernel

From: Yong Shen <yong.shen@linaro.org>

add support for mc13892, tested on mx51 babbage board

Signed-off-by: Arnaud Patard <arnaud.patard@rtp-net.org>
Signed-off-by: Yong Shen <yong.shen@linaro.org>
---
 drivers/regulator/Kconfig             |    8 +
 drivers/regulator/Makefile            |    1 +
 drivers/regulator/mc13892-regulator.c |  644 +++++++++++++++++++++++++++++++++
 include/linux/mfd/mc13892.h           |   38 ++
 4 files changed, 691 insertions(+), 0 deletions(-)
 create mode 100644 drivers/regulator/mc13892-regulator.c
 create mode 100644 include/linux/mfd/mc13892.h

diff --git a/drivers/regulator/Kconfig b/drivers/regulator/Kconfig
index 6e54253..1673a4f 100644
--- a/drivers/regulator/Kconfig
+++ b/drivers/regulator/Kconfig
@@ -197,6 +197,14 @@ config REGULATOR_MC13783
 	  Say y here to support the regulators found on the Freescale MC13783
 	  PMIC.
 
+config REGULATOR_MC13892
+	tristate "Support regulators on Freescale MC13892 PMIC"
+	depends on MFD_MC13XXX
+	select REGULATOR_MC13XXX_CORE
+	help
+	  Say y here to support the regulators found on the Freescale MC13892
+	  PMIC.
+
 config REGULATOR_AB3100
 	tristate "ST-Ericsson AB3100 Regulator functions"
 	depends on AB3100_CORE
diff --git a/drivers/regulator/Makefile b/drivers/regulator/Makefile
index 11876be..3107480 100644
--- a/drivers/regulator/Makefile
+++ b/drivers/regulator/Makefile
@@ -30,6 +30,7 @@ obj-$(CONFIG_REGULATOR_DA903X)	+= da903x.o
 obj-$(CONFIG_REGULATOR_PCF50633) += pcf50633-regulator.o
 obj-$(CONFIG_REGULATOR_PCAP) += pcap-regulator.o
 obj-$(CONFIG_REGULATOR_MC13783) += mc13783-regulator.o
+obj-$(CONFIG_REGULATOR_MC13892) += mc13892-regulator.o
 obj-$(CONFIG_REGULATOR_MC13XXX_CORE) +=  mc13xxx-regulator-core.o
 obj-$(CONFIG_REGULATOR_AB3100) += ab3100.o
 
diff --git a/drivers/regulator/mc13892-regulator.c b/drivers/regulator/mc13892-regulator.c
new file mode 100644
index 0000000..1b23170
--- /dev/null
+++ b/drivers/regulator/mc13892-regulator.c
@@ -0,0 +1,644 @@
+/*
+ * Regulator Driver for Freescale MC13892 PMIC
+ *
+ * Copyright 2010 Yong Shen <yong.shen@linaro.org>
+ *
+ * Based on draft driver from Arnaud Patard <arnaud.patard@rtp-net.org>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ */
+
+#include <linux/mfd/mc13892.h>
+#include <linux/regulator/machine.h>
+#include <linux/regulator/driver.h>
+#include <linux/platform_device.h>
+#include <linux/kernel.h>
+#include <linux/slab.h>
+#include <linux/init.h>
+#include <linux/err.h>
+#include "mc13xxx.h"
+
+#define MC13892_REVISION				7
+
+#define MC13892_POWERCTL0				13
+#define MC13892_POWERCTL0_USEROFFSPI		3
+#define MC13892_POWERCTL0_VCOINCELLVSEL		20
+#define MC13892_POWERCTL0_VCOINCELLVSEL_M		(7<<20)
+#define MC13892_POWERCTL0_VCOINCELLEN		(1<<23)
+
+#define MC13892_SWITCHERS0_SWxHI			(1<<23)
+
+#define MC13892_SWITCHERS0				24
+#define MC13892_SWITCHERS0_SW1VSEL			0
+#define MC13892_SWITCHERS0_SW1VSEL_M		(0x1f<<0)
+#define MC13892_SWITCHERS0_SW1HI			(1<<23)
+#define MC13892_SWITCHERS0_SW1EN		0
+
+#define MC13892_SWITCHERS1				25
+#define MC13892_SWITCHERS1_SW2VSEL			0
+#define MC13892_SWITCHERS1_SW2VSEL_M		(0x1f<<0)
+#define MC13892_SWITCHERS1_SW2HI			(1<<23)
+#define MC13892_SWITCHERS1_SW2EN		0
+
+#define MC13892_SWITCHERS2				26
+#define MC13892_SWITCHERS2_SW3VSEL			0
+#define MC13892_SWITCHERS2_SW3VSEL_M		(0x1f<<0)
+#define MC13892_SWITCHERS2_SW3HI			(1<<23)
+#define MC13892_SWITCHERS2_SW3EN		0
+
+#define MC13892_SWITCHERS3				27
+#define MC13892_SWITCHERS3_SW4VSEL			0
+#define MC13892_SWITCHERS3_SW4VSEL_M		(0x1f<<0)
+#define MC13892_SWITCHERS3_SW4HI			(1<<23)
+#define MC13892_SWITCHERS3_SW4EN		0
+
+#define MC13892_SWITCHERS4				28
+#define MC13892_SWITCHERS4_SW1MODE			0
+#define MC13892_SWITCHERS4_SW1MODE_AUTO		(8<<0)
+#define MC13892_SWITCHERS4_SW1MODE_M		(0xf<<0)
+#define MC13892_SWITCHERS4_SW2MODE			10
+#define MC13892_SWITCHERS4_SW2MODE_AUTO		(8<<10)
+#define MC13892_SWITCHERS4_SW2MODE_M		(0xf<<10)
+
+#define MC13892_SWITCHERS5				29
+#define MC13892_SWITCHERS5_SW3MODE			0
+#define MC13892_SWITCHERS5_SW3MODE_AUTO		(8<<0)
+#define MC13892_SWITCHERS5_SW3MODE_M		(0xf<<0)
+#define MC13892_SWITCHERS5_SW4MODE			8
+#define MC13892_SWITCHERS5_SW4MODE_AUTO		(8<<8)
+#define MC13892_SWITCHERS5_SW4MODE_M		(0xf<<8)
+#define MC13892_SWITCHERS5_SWBSTEN			(1<<20)
+
+
+#define MC13892_REGULATORSETTING0			30
+#define MC13892_REGULATORSETTING0_VGEN1VSEL		0
+#define MC13892_REGULATORSETTING0_VDIGVSEL		4
+#define MC13892_REGULATORSETTING0_VGEN2VSEL		6
+#define MC13892_REGULATORSETTING0_VPLLVSEL		9
+#define MC13892_REGULATORSETTING0_VUSB2VSEL		11
+#define MC13892_REGULATORSETTING0_VGEN3VSEL		14
+#define MC13892_REGULATORSETTING0_VCAMVSEL		16
+
+#define MC13892_REGULATORSETTING0_VGEN1VSEL_M	(3<<0)
+#define MC13892_REGULATORSETTING0_VDIGVSEL_M	(3<<4)
+#define MC13892_REGULATORSETTING0_VGEN2VSEL_M	(7<<6)
+#define MC13892_REGULATORSETTING0_VPLLVSEL_M	(3<<9)
+#define MC13892_REGULATORSETTING0_VUSB2VSEL_M	(3<<11)
+#define MC13892_REGULATORSETTING0_VGEN3VSEL_M	(1<<14)
+#define MC13892_REGULATORSETTING0_VCAMVSEL_M	(3<<16)
+
+#define MC13892_REGULATORSETTING1			31
+#define MC13892_REGULATORSETTING1_VVIDEOVSEL	2
+#define MC13892_REGULATORSETTING1_VAUDIOVSEL	4
+#define MC13892_REGULATORSETTING1_VSDVSEL		6
+
+#define MC13892_REGULATORSETTING1_VVIDEOVSEL_M	(3<<2)
+#define MC13892_REGULATORSETTING1_VAUDIOVSEL_M	(3<<4)
+#define MC13892_REGULATORSETTING1_VSDVSEL_M		(7<<6)
+
+#define MC13892_REGULATORMODE0			32
+#define MC13892_REGULATORMODE0_VGEN1EN		(1<<0)
+#define MC13892_REGULATORMODE0_VGEN1STDBY		(1<<1)
+#define MC13892_REGULATORMODE0_VGEN1MODE		(1<<2)
+#define MC13892_REGULATORMODE0_VIOHIEN		(1<<3)
+#define MC13892_REGULATORMODE0_VIOHISTDBY		(1<<4)
+#define MC13892_REGULATORMODE0_VIOHIMODE		(1<<5)
+#define MC13892_REGULATORMODE0_VDIGEN		(1<<9)
+#define MC13892_REGULATORMODE0_VDIGSTDBY		(1<<10)
+#define MC13892_REGULATORMODE0_VDIGMODE		(1<<11)
+#define MC13892_REGULATORMODE0_VGEN2EN		(1<<12)
+#define MC13892_REGULATORMODE0_VGEN2STDBY		(1<<13)
+#define MC13892_REGULATORMODE0_VGEN2MODE		(1<<14)
+#define MC13892_REGULATORMODE0_VPLLEN		(1<<15)
+#define MC13892_REGULATORMODE0_VPLLSTDBY		(1<<16)
+#define MC13892_REGULATORMODE0_VPLLMODE		(1<<17)
+#define MC13892_REGULATORMODE0_VUSB2EN		(1<<18)
+#define MC13892_REGULATORMODE0_VUSB2STDBY		(1<<19)
+#define MC13892_REGULATORMODE0_VUSB2MODE		(1<<20)
+
+#define MC13892_REGULATORMODE1			33
+#define MC13892_REGULATORMODE1_VGEN3EN		(1<<0)
+#define MC13892_REGULATORMODE1_VGEN3STDBY		(1<<1)
+#define MC13892_REGULATORMODE1_VGEN3MODE		(1<<2)
+#define MC13892_REGULATORMODE1_VCAMEN		(1<<6)
+#define MC13892_REGULATORMODE1_VCAMSTDBY		(1<<7)
+#define MC13892_REGULATORMODE1_VCAMMODE		(1<<8)
+#define MC13892_REGULATORMODE1_VCAMCONFIGEN		(1<<9)
+#define MC13892_REGULATORMODE1_VVIDEOEN		(1<<12)
+#define MC13892_REGULATORMODE1_VVIDEOSTDBY		(1<<13)
+#define MC13892_REGULATORMODE1_VVIDEOMODE		(1<<14)
+#define MC13892_REGULATORMODE1_VAUDIOEN		(1<<15)
+#define MC13892_REGULATORMODE1_VAUDIOSTDBY		(1<<16)
+#define MC13892_REGULATORMODE1_VAUDIOMODE		(1<<17)
+#define MC13892_REGULATORMODE1_VSDEN		(1<<18)
+#define MC13892_REGULATORMODE1_VSDSTDBY		(1<<19)
+#define MC13892_REGULATORMODE1_VSDMODE		(1<<20)
+
+#define MC13892_POWERMISC				34
+#define MC13892_POWERMISC_GPO1EN			(1<<6)
+#define MC13892_POWERMISC_GPO2EN			(1<<8)
+#define MC13892_POWERMISC_GPO3EN			(1<<10)
+#define MC13892_POWERMISC_GPO4EN			(1<<12)
+#define MC13892_POWERMISC_PWGT1SPIEN		(1<<15)
+#define MC13892_POWERMISC_PWGT2SPIEN		(1<<16)
+#define MC13892_POWERMISC_GPO4ADINEN		(1<<21)
+
+#define MC13892_POWERMISC_PWGTSPI_M			(3 << 15)
+
+#define MC13892_USB1				50
+#define MC13892_USB1_VUSBEN				(1<<3)
+
+static const int mc13892_vcoincell[] = {
+	2500000, 2700000, 2800000, 2900000, 3000000, 3100000,
+	3200000, 3300000,
+};
+
+static const int mc13892_sw1[] = {
+	600000,   625000,  650000,  675000,  700000,  725000,
+	750000,   775000,  800000,  825000,  850000,  875000,
+	900000,   925000,  950000,  975000, 1000000, 1025000,
+	1050000, 1075000, 1100000, 1125000, 1150000, 1175000,
+	1200000, 1225000, 1250000, 1275000, 1300000, 1325000,
+	1350000, 1375000
+};
+
+static const int mc13892_sw[] = {
+	600000,   625000,  650000,  675000,  700000,  725000,
+	750000,   775000,  800000,  825000,  850000,  875000,
+	900000,   925000,  950000,  975000, 1000000, 1025000,
+	1050000, 1075000, 1100000, 1125000, 1150000, 1175000,
+	1200000, 1225000, 1250000, 1275000, 1300000, 1325000,
+	1350000, 1375000, 1400000, 1425000, 1450000, 1475000,
+	1500000, 1525000, 1550000, 1575000, 1600000, 1625000,
+	1650000, 1675000, 1700000, 1725000, 1750000, 1775000,
+	1800000, 1825000, 1850000, 1875000
+};
+
+static const int mc13892_swbst[] = {
+	5000000,
+};
+
+static const int mc13892_viohi[] = {
+	2775000,
+};
+
+static const int mc13892_vpll[] = {
+	1050000, 1250000, 1650000, 1800000,
+};
+
+static const int mc13892_vdig[] = {
+	1050000, 1250000, 1650000, 1800000,
+};
+
+static const int mc13892_vsd[] = {
+	1800000, 2000000, 2600000, 2700000,
+	2800000, 2900000, 3000000, 3150000,
+};
+
+static const int mc13892_vusb2[] = {
+	2400000, 2600000, 2700000, 2775000,
+};
+
+static const int mc13892_vvideo[] = {
+	2700000, 2775000, 2500000, 2600000,
+};
+
+static const int mc13892_vaudio[] = {
+	2300000, 2500000, 2775000, 3000000,
+};
+
+static const int mc13892_vcam[] = {
+	2500000, 2600000, 2750000, 3000000,
+};
+
+static const int mc13892_vgen1[] = {
+	1200000, 1500000, 2775000, 3150000,
+};
+
+static const int mc13892_vgen2[] = {
+	1200000, 1500000, 1600000, 1800000,
+	2700000, 2800000, 3000000, 3150000,
+};
+
+static const int mc13892_vgen3[] = {
+	1800000, 2900000,
+};
+
+static const int mc13892_vusb[] = {
+	3300000,
+};
+
+static const int mc13892_gpo[] = {
+	2750000,
+};
+
+static const int mc13892_pwgtdrv[] = {
+	5000000,
+};
+
+static struct regulator_ops mc13892_gpo_regulator_ops;
+/* sw regulators need special care due to the "hi bit" */
+static struct regulator_ops mc13892_sw_regulator_ops;
+
+
+#define MC13892_FIXED_DEFINE(name, reg, voltages)\
+	MC13xxx_FIXED_DEFINE(MC13892_, name, reg, voltages, \
+			mc13xxx_fixed_regulator_ops)
+
+#define MC13892_GPO_DEFINE(name, reg, voltages)		\
+	MC13xxx_GPO_DEFINE(MC13892_, name, reg, voltages, \
+			mc13892_gpo_regulator_ops)
+
+#define MC13892_SW_DEFINE(name, reg, vsel_reg, voltages)		\
+	MC13xxx_DEFINE(MC13892_, name, reg, vsel_reg, voltages, \
+			mc13892_sw_regulator_ops)
+
+#define MC13892_DEFINE_REGU(name, reg, vsel_reg, voltages)		\
+	MC13xxx_DEFINE(MC13892_, name, reg, vsel_reg, voltages, \
+			mc13xxx_regulator_ops)
+
+static struct mc13xxx_regulator mc13892_regulators[] = {
+	MC13892_DEFINE_REGU(VCOINCELL, POWERCTL0, POWERCTL0,		\
+			    mc13892_vcoincell),
+	MC13892_SW_DEFINE(SW1, SWITCHERS0, SWITCHERS0, mc13892_sw1),
+	MC13892_SW_DEFINE(SW2, SWITCHERS1, SWITCHERS1, mc13892_sw),
+	MC13892_SW_DEFINE(SW3, SWITCHERS2, SWITCHERS2, mc13892_sw),
+	MC13892_SW_DEFINE(SW4, SWITCHERS3, SWITCHERS3, mc13892_sw),
+	MC13892_FIXED_DEFINE(SWBST, SWITCHERS5, mc13892_swbst),
+	MC13892_FIXED_DEFINE(VIOHI, REGULATORMODE0, mc13892_viohi),
+	MC13892_DEFINE_REGU(VPLL, REGULATORMODE0, REGULATORSETTING0,	\
+			    mc13892_vpll),
+	MC13892_DEFINE_REGU(VDIG, REGULATORMODE0, REGULATORSETTING0,	\
+			    mc13892_vdig),
+	MC13892_DEFINE_REGU(VSD, REGULATORMODE1, REGULATORSETTING1,	\
+			    mc13892_vsd),
+	MC13892_DEFINE_REGU(VUSB2, REGULATORMODE0, REGULATORSETTING0,	\
+			    mc13892_vusb2),
+	MC13892_DEFINE_REGU(VVIDEO, REGULATORMODE1, REGULATORSETTING1,	\
+			    mc13892_vvideo),
+	MC13892_DEFINE_REGU(VAUDIO, REGULATORMODE1, REGULATORSETTING1,	\
+			    mc13892_vaudio),
+	MC13892_DEFINE_REGU(VCAM, REGULATORMODE1, REGULATORSETTING0, \
+			    mc13892_vcam),
+	MC13892_DEFINE_REGU(VGEN1, REGULATORMODE0, REGULATORSETTING0,	\
+			    mc13892_vgen1),
+	MC13892_DEFINE_REGU(VGEN2, REGULATORMODE0, REGULATORSETTING0,	\
+			    mc13892_vgen2),
+	MC13892_DEFINE_REGU(VGEN3, REGULATORMODE1, REGULATORSETTING0,	\
+			    mc13892_vgen3),
+	MC13892_FIXED_DEFINE(VUSB, USB1, mc13892_vusb),
+	MC13892_GPO_DEFINE(GPO1, POWERMISC, mc13892_gpo),
+	MC13892_GPO_DEFINE(GPO2, POWERMISC, mc13892_gpo),
+	MC13892_GPO_DEFINE(GPO3, POWERMISC, mc13892_gpo),
+	MC13892_GPO_DEFINE(GPO4, POWERMISC, mc13892_gpo),
+	MC13892_GPO_DEFINE(PWGT1SPI, POWERMISC, mc13892_pwgtdrv),
+	MC13892_GPO_DEFINE(PWGT2SPI, POWERMISC, mc13892_pwgtdrv),
+};
+
+int mc13892_powermisc_rmw(struct mc13xxx_regulator_priv *priv, u32 mask,
+									u32 val)
+{
+	struct mc13xxx *mc13892 = priv->mc13xxx;
+	int ret;
+	u32 valread;
+
+	BUG_ON(val & ~mask);
+
+	ret = mc13xxx_reg_read(mc13892, MC13892_POWERMISC, &valread);
+	if (ret)
+		return ret;
+
+	/* Update the stored state for Power Gates. */
+	priv->powermisc_pwgt_state =
+				(priv->powermisc_pwgt_state & ~mask) | val;
+	priv->powermisc_pwgt_state &= MC13892_POWERMISC_PWGTSPI_M;
+
+	/* Construct the new register value */
+	valread = (valread & ~mask) | val;
+	/* Overwrite the PWGTxEN with the stored version */
+	valread = (valread & ~MC13892_POWERMISC_PWGTSPI_M) |
+						priv->powermisc_pwgt_state;
+
+	return mc13xxx_reg_write(mc13892, MC13892_POWERMISC, valread);
+}
+
+static int mc13892_gpo_regulator_enable(struct regulator_dev *rdev)
+{
+	struct mc13xxx_regulator_priv *priv = rdev_get_drvdata(rdev);
+	int id = rdev_get_id(rdev);
+	int ret;
+	u32 en_val = mc13892_regulators[id].enable_bit;
+	u32 mask = mc13892_regulators[id].enable_bit;
+
+	dev_dbg(rdev_get_dev(rdev), "%s id: %d\n", __func__, id);
+
+	/* Power Gate enable value is 0 */
+	if (id == MC13892_PWGT1SPI ||
+	    id == MC13892_PWGT2SPI)
+		en_val = 0;
+
+	if (id == MC13892_GPO4)
+		mask |= MC13892_POWERMISC_GPO4ADINEN;
+
+	mc13xxx_lock(priv->mc13xxx);
+	ret = mc13892_powermisc_rmw(priv, mask, en_val);
+	mc13xxx_unlock(priv->mc13xxx);
+
+	return ret;
+}
+
+static int mc13892_gpo_regulator_disable(struct regulator_dev *rdev)
+{
+	struct mc13xxx_regulator_priv *priv = rdev_get_drvdata(rdev);
+	int id = rdev_get_id(rdev);
+	int ret;
+	u32 dis_val = 0;
+
+	dev_dbg(rdev_get_dev(rdev), "%s id: %d\n", __func__, id);
+
+	/* Power Gate disable value is 1 */
+	if (id == MC13892_PWGT1SPI ||
+	    id == MC13892_PWGT2SPI)
+		dis_val = mc13892_regulators[id].enable_bit;
+
+	mc13xxx_lock(priv->mc13xxx);
+	ret = mc13892_powermisc_rmw(priv, mc13892_regulators[id].enable_bit,
+					dis_val);
+	mc13xxx_unlock(priv->mc13xxx);
+
+	return ret;
+}
+
+static int mc13892_gpo_regulator_is_enabled(struct regulator_dev *rdev)
+{
+	struct mc13xxx_regulator_priv *priv = rdev_get_drvdata(rdev);
+	int ret, id = rdev_get_id(rdev);
+	unsigned int val;
+
+	mc13xxx_lock(priv->mc13xxx);
+	ret = mc13xxx_reg_read(priv->mc13xxx, mc13892_regulators[id].reg, &val);
+	mc13xxx_unlock(priv->mc13xxx);
+
+	if (ret)
+		return ret;
+
+	/* Power Gates state is stored in powermisc_pwgt_state
+	 * where the meaning of bits is negated */
+	val = (val & ~MC13892_POWERMISC_PWGTSPI_M) |
+	      (priv->powermisc_pwgt_state ^ MC13892_POWERMISC_PWGTSPI_M);
+
+	return (val & mc13892_regulators[id].enable_bit) != 0;
+}
+
+
+static struct regulator_ops mc13892_gpo_regulator_ops = {
+	.enable = mc13892_gpo_regulator_enable,
+	.disable = mc13892_gpo_regulator_disable,
+	.is_enabled = mc13892_gpo_regulator_is_enabled,
+	.list_voltage = mc13xxx_regulator_list_voltage,
+	.set_voltage = mc13xxx_fixed_regulator_set_voltage,
+	.get_voltage = mc13xxx_fixed_regulator_get_voltage,
+};
+
+static int mc13892_sw_regulator_get_voltage(struct regulator_dev *rdev)
+{
+	struct mc13xxx_regulator_priv *priv = rdev_get_drvdata(rdev);
+	int ret, id = rdev_get_id(rdev);
+	unsigned int val, hi;
+
+	dev_dbg(rdev_get_dev(rdev), "%s id: %d\n", __func__, id);
+
+	mc13xxx_lock(priv->mc13xxx);
+	ret = mc13xxx_reg_read(priv->mc13xxx,
+				mc13892_regulators[id].vsel_reg, &val);
+	mc13xxx_unlock(priv->mc13xxx);
+	if (ret)
+		return ret;
+
+	hi  = val & MC13892_SWITCHERS0_SWxHI;
+	val = (val & mc13892_regulators[id].vsel_mask)
+		>> mc13892_regulators[id].vsel_shift;
+
+	dev_dbg(rdev_get_dev(rdev), "%s id: %d val: %d\n", __func__, id, val);
+
+	if (hi)
+		val = (25000 * val) + 1100000;
+	else
+		val = (25000 * val) + 600000;
+
+	return val;
+}
+
+static int mc13892_sw_regulator_set_voltage(struct regulator_dev *rdev,
+						int min_uV, int max_uV)
+{
+	struct mc13xxx_regulator_priv *priv = rdev_get_drvdata(rdev);
+	int hi, value, val, mask, id = rdev_get_id(rdev);
+	int ret;
+
+	dev_dbg(rdev_get_dev(rdev), "%s id: %d min_uV: %d max_uV: %d\n",
+		__func__, id, min_uV, max_uV);
+
+	/* Find the best index */
+	value = mc13xxx_get_best_voltage_index(rdev, min_uV, max_uV);
+	dev_dbg(rdev_get_dev(rdev), "%s best value: %d\n", __func__, value);
+	if (value < 0)
+		return value;
+
+	value = mc13892_regulators[id].voltages[value];
+
+	mc13xxx_lock(priv->mc13xxx);
+	ret = mc13xxx_reg_read(priv->mc13xxx,
+				mc13892_regulators[id].vsel_reg, &val);
+	if (ret)
+		goto err;
+
+	hi  = val & MC13892_SWITCHERS0_SWxHI;
+	if (value > 1375)
+		hi = 1;
+	if (value < 1100)
+		hi = 0;
+
+	if (hi) {
+		value = (value - 1100000) / 25000;
+		value |= MC13892_SWITCHERS0_SWxHI;
+	} else
+		value = (value - 600000) / 25000;
+
+	mask = mc13892_regulators[id].vsel_mask | MC13892_SWITCHERS0_SWxHI;
+	ret = mc13xxx_reg_rmw(priv->mc13xxx, mc13892_regulators[id].vsel_reg,
+			mask,
+			value << mc13892_regulators[id].vsel_shift);
+err:
+	mc13xxx_unlock(priv->mc13xxx);
+
+	return ret;
+}
+
+static struct regulator_ops mc13892_sw_regulator_ops = {
+	.is_enabled = mc13xxx_sw_regulator_is_enabled,
+	.list_voltage = mc13xxx_regulator_list_voltage,
+	.set_voltage = mc13892_sw_regulator_set_voltage,
+	.get_voltage = mc13892_sw_regulator_get_voltage,
+};
+
+static int mc13892_vcam_set_mode(struct regulator_dev *rdev, unsigned int mode)
+{
+	unsigned int en_val = 0;
+	struct mc13xxx_regulator_priv *priv = rdev_get_drvdata(rdev);
+	int ret, id = rdev_get_id(rdev);
+
+	if (mode == REGULATOR_MODE_FAST)
+		en_val = MC13892_REGULATORMODE1_VCAMCONFIGEN;
+
+	mc13xxx_lock(priv->mc13xxx);
+	ret = mc13xxx_reg_rmw(priv->mc13xxx, mc13892_regulators[id].reg,
+			MC13892_REGULATORMODE1_VCAMCONFIGEN,
+			en_val);
+	mc13xxx_unlock(priv->mc13xxx);
+
+	return ret;
+}
+
+unsigned int mc13892_vcam_get_mode(struct regulator_dev *rdev)
+{
+	struct mc13xxx_regulator_priv *priv = rdev_get_drvdata(rdev);
+	int ret, id = rdev_get_id(rdev);
+	unsigned int val;
+
+	mc13xxx_lock(priv->mc13xxx);
+	ret = mc13xxx_reg_read(priv->mc13xxx, mc13892_regulators[id].reg, &val);
+	mc13xxx_unlock(priv->mc13xxx);
+
+	if (ret)
+		return ret;
+
+	if (val & MC13892_REGULATORMODE1_VCAMCONFIGEN)
+		return REGULATOR_MODE_FAST;
+
+	return REGULATOR_MODE_NORMAL;
+}
+
+
+static int __devinit mc13892_regulator_probe(struct platform_device *pdev)
+{
+	struct mc13xxx_regulator_priv *priv;
+	struct mc13xxx *mc13892 = dev_get_drvdata(pdev->dev.parent);
+	struct mc13xxx_regulator_platform_data *pdata =
+		dev_get_platdata(&pdev->dev);
+	struct mc13xxx_regulator_init_data *init_data;
+	int i, ret;
+	u32 val;
+
+	priv = kzalloc(sizeof(*priv) +
+			pdata->num_regulators * sizeof(priv->regulators[0]),
+			GFP_KERNEL);
+	if (!priv)
+		return -ENOMEM;
+
+	priv->mc13xxx_regulators = mc13892_regulators;
+	priv->mc13xxx = mc13892;
+
+	mc13xxx_lock(mc13892);
+	ret = mc13xxx_reg_read(mc13892, MC13892_REVISION, &val);
+	mc13xxx_unlock(mc13892);
+	if (ret)
+		goto err_alloc;
+
+	/* enable switch auto mode */
+	if ((val & 0x0000FFFF) == 0x45d0) {
+		mc13xxx_lock(mc13892);
+		ret = mc13xxx_reg_rmw(mc13892, MC13892_SWITCHERS4,
+			MC13892_SWITCHERS4_SW1MODE_M |
+			MC13892_SWITCHERS4_SW2MODE_M,
+			MC13892_SWITCHERS4_SW1MODE_AUTO |
+			MC13892_SWITCHERS4_SW2MODE_AUTO);
+		mc13xxx_unlock(mc13892);
+		if (ret)
+			goto err_alloc;
+
+		mc13xxx_lock(mc13892);
+		mc13xxx_reg_rmw(mc13892, MC13892_SWITCHERS5,
+			MC13892_SWITCHERS5_SW3MODE_M |
+			MC13892_SWITCHERS5_SW4MODE_M,
+			MC13892_SWITCHERS5_SW3MODE_AUTO |
+			MC13892_SWITCHERS5_SW4MODE_AUTO);
+		mc13xxx_unlock(mc13892);
+		if (ret)
+			goto err_alloc;
+	}
+
+	mc13892_regulators[MC13892_VCAM].desc.ops->set_mode
+		= mc13892_vcam_set_mode;
+	mc13892_regulators[MC13892_VCAM].desc.ops->get_mode
+		= mc13892_vcam_get_mode;
+	for (i = 0; i < pdata->num_regulators; i++) {
+		init_data = &pdata->regulators[i];
+		priv->regulators[i] = regulator_register(
+				&mc13892_regulators[init_data->id].desc,
+				&pdev->dev, init_data->init_data, priv);
+
+		if (IS_ERR(priv->regulators[i])) {
+			dev_err(&pdev->dev, "failed to register regulator %s\n",
+				mc13892_regulators[i].desc.name);
+			ret = PTR_ERR(priv->regulators[i]);
+			goto err;
+		}
+	}
+
+	platform_set_drvdata(pdev, priv);
+
+	return 0;
+err:
+	while (--i >= 0)
+		regulator_unregister(priv->regulators[i]);
+
+err_alloc:
+	kfree(priv);
+
+	return ret;
+}
+
+static int __devexit mc13892_regulator_remove(struct platform_device *pdev)
+{
+	struct mc13xxx_regulator_priv *priv = platform_get_drvdata(pdev);
+	struct mc13xxx_regulator_platform_data *pdata =
+		dev_get_platdata(&pdev->dev);
+	int i;
+
+	platform_set_drvdata(pdev, NULL);
+
+	for (i = 0; i < pdata->num_regulators; i++)
+		regulator_unregister(priv->regulators[i]);
+
+	kfree(priv);
+	return 0;
+}
+
+static struct platform_driver mc13892_regulator_driver = {
+	.driver	= {
+		.name	= "mc13892-regulator",
+		.owner	= THIS_MODULE,
+	},
+	.remove	= __devexit_p(mc13892_regulator_remove),
+	.probe	= mc13892_regulator_probe,
+};
+
+static int __init mc13892_regulator_init(void)
+{
+	return platform_driver_register(&mc13892_regulator_driver);
+}
+subsys_initcall(mc13892_regulator_init);
+
+static void __exit mc13892_regulator_exit(void)
+{
+	platform_driver_unregister(&mc13892_regulator_driver);
+}
+module_exit(mc13892_regulator_exit);
+
+MODULE_LICENSE("GPL v2");
+MODULE_AUTHOR("Yong Shen <yong.shen@linaro.org>");
+MODULE_DESCRIPTION("Regulator Driver for Freescale MC13892 PMIC");
+MODULE_ALIAS("platform:mc13892-regulator");
diff --git a/include/linux/mfd/mc13892.h b/include/linux/mfd/mc13892.h
new file mode 100644
index 0000000..7df13e8
--- /dev/null
+++ b/include/linux/mfd/mc13892.h
@@ -0,0 +1,38 @@
+/*
+ * Copyright 2010 Yong Shen <yong.shen@linaro.org>
+ *
+ * This program is free software; you can redistribute it and/or modify it under
+ * the terms of the GNU General Public License version 2 as published by the
+ * Free Software Foundation.
+ */
+
+#ifndef __LINUX_MFD_MC13892_H
+#define __LINUX_MFD_MC13892_H
+#include <linux/mfd/mc13xxx.h>
+
+#define MC13892_SW1		0
+#define MC13892_SW2		1
+#define MC13892_SW3		2
+#define MC13892_SW4		3
+#define MC13892_SWBST	4
+#define MC13892_VIOHI	5
+#define MC13892_VPLL	6
+#define MC13892_VDIG	7
+#define MC13892_VSD	8
+#define MC13892_VUSB2	9
+#define MC13892_VVIDEO	10
+#define MC13892_VAUDIO	11
+#define MC13892_VCAM	12
+#define MC13892_VGEN1	13
+#define MC13892_VGEN2	14
+#define MC13892_VGEN3	15
+#define MC13892_VUSB	16
+#define MC13892_GPO1	17
+#define MC13892_GPO2	18
+#define MC13892_GPO3	19
+#define MC13892_GPO4	20
+#define MC13892_PWGT1SPI	21
+#define MC13892_PWGT2SPI	22
+#define MC13892_VCOINCELL	23
+
+#endif
-- 
1.7.0.4

^ permalink raw reply related	[flat|nested] 20+ messages in thread

* [PATCHv3] support PMIC mc13892
  2010-12-08  3:21 ` [PATCHv3] support PMIC mc13892 yong.shen at freescale.com
@ 2010-12-08  3:28   ` Yong Shen
  2010-12-08  8:52     ` Uwe Kleine-König
                       ` (2 more replies)
  2010-12-08  9:12   ` Uwe Kleine-König
                     ` (2 subsequent siblings)
  3 siblings, 3 replies; 20+ messages in thread
From: Yong Shen @ 2010-12-08  3:28 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Liam,

Last time, you took the previous patches for mc13783 code
reorganization in your tree, I suppose you can also please take
mc13892, which had passed review.

Thanks
Yong

On Wed, Dec 8, 2010 at 11:21 AM,  <yong.shen@freescale.com> wrote:
> From: Yong Shen <yong.shen@linaro.org>
>
> add support for mc13892, tested on mx51 babbage board
>
> Signed-off-by: Arnaud Patard <arnaud.patard@rtp-net.org>
> Signed-off-by: Yong Shen <yong.shen@linaro.org>
> ---
> ?drivers/regulator/Kconfig ? ? ? ? ? ? | ? ?8 +
> ?drivers/regulator/Makefile ? ? ? ? ? ?| ? ?1 +
> ?drivers/regulator/mc13892-regulator.c | ?644 +++++++++++++++++++++++++++++++++
> ?include/linux/mfd/mc13892.h ? ? ? ? ? | ? 38 ++
> ?4 files changed, 691 insertions(+), 0 deletions(-)
> ?create mode 100644 drivers/regulator/mc13892-regulator.c
> ?create mode 100644 include/linux/mfd/mc13892.h
>
> diff --git a/drivers/regulator/Kconfig b/drivers/regulator/Kconfig
> index 6e54253..1673a4f 100644
> --- a/drivers/regulator/Kconfig
> +++ b/drivers/regulator/Kconfig
> @@ -197,6 +197,14 @@ config REGULATOR_MC13783
> ? ? ? ? ?Say y here to support the regulators found on the Freescale MC13783
> ? ? ? ? ?PMIC.
>
> +config REGULATOR_MC13892
> + ? ? ? tristate "Support regulators on Freescale MC13892 PMIC"
> + ? ? ? depends on MFD_MC13XXX
> + ? ? ? select REGULATOR_MC13XXX_CORE
> + ? ? ? help
> + ? ? ? ? Say y here to support the regulators found on the Freescale MC13892
> + ? ? ? ? PMIC.
> +
> ?config REGULATOR_AB3100
> ? ? ? ?tristate "ST-Ericsson AB3100 Regulator functions"
> ? ? ? ?depends on AB3100_CORE
> diff --git a/drivers/regulator/Makefile b/drivers/regulator/Makefile
> index 11876be..3107480 100644
> --- a/drivers/regulator/Makefile
> +++ b/drivers/regulator/Makefile
> @@ -30,6 +30,7 @@ obj-$(CONFIG_REGULATOR_DA903X) ? ? ? ?+= da903x.o
> ?obj-$(CONFIG_REGULATOR_PCF50633) += pcf50633-regulator.o
> ?obj-$(CONFIG_REGULATOR_PCAP) += pcap-regulator.o
> ?obj-$(CONFIG_REGULATOR_MC13783) += mc13783-regulator.o
> +obj-$(CONFIG_REGULATOR_MC13892) += mc13892-regulator.o
> ?obj-$(CONFIG_REGULATOR_MC13XXX_CORE) += ?mc13xxx-regulator-core.o
> ?obj-$(CONFIG_REGULATOR_AB3100) += ab3100.o
>
> diff --git a/drivers/regulator/mc13892-regulator.c b/drivers/regulator/mc13892-regulator.c
> new file mode 100644
> index 0000000..1b23170
> --- /dev/null
> +++ b/drivers/regulator/mc13892-regulator.c
> @@ -0,0 +1,644 @@
> +/*
> + * Regulator Driver for Freescale MC13892 PMIC
> + *
> + * Copyright 2010 Yong Shen <yong.shen@linaro.org>
> + *
> + * Based on draft driver from Arnaud Patard <arnaud.patard@rtp-net.org>
> + *
> + * This program is free software; you can redistribute it and/or modify
> + * it under the terms of the GNU General Public License version 2 as
> + * published by the Free Software Foundation.
> + */
> +
> +#include <linux/mfd/mc13892.h>
> +#include <linux/regulator/machine.h>
> +#include <linux/regulator/driver.h>
> +#include <linux/platform_device.h>
> +#include <linux/kernel.h>
> +#include <linux/slab.h>
> +#include <linux/init.h>
> +#include <linux/err.h>
> +#include "mc13xxx.h"
> +
> +#define MC13892_REVISION ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 7
> +
> +#define MC13892_POWERCTL0 ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?13
> +#define MC13892_POWERCTL0_USEROFFSPI ? ? ? ? ? 3
> +#define MC13892_POWERCTL0_VCOINCELLVSEL ? ? ? ? ? ? ? ?20
> +#define MC13892_POWERCTL0_VCOINCELLVSEL_M ? ? ? ? ? ? ?(7<<20)
> +#define MC13892_POWERCTL0_VCOINCELLEN ? ? ? ? ?(1<<23)
> +
> +#define MC13892_SWITCHERS0_SWxHI ? ? ? ? ? ? ? ? ? ? ? (1<<23)
> +
> +#define MC13892_SWITCHERS0 ? ? ? ? ? ? ? ? ? ? ? ? ? ? 24
> +#define MC13892_SWITCHERS0_SW1VSEL ? ? ? ? ? ? ? ? ? ? 0
> +#define MC13892_SWITCHERS0_SW1VSEL_M ? ? ? ? ? (0x1f<<0)
> +#define MC13892_SWITCHERS0_SW1HI ? ? ? ? ? ? ? ? ? ? ? (1<<23)
> +#define MC13892_SWITCHERS0_SW1EN ? ? ? ? ? ? ? 0
> +
> +#define MC13892_SWITCHERS1 ? ? ? ? ? ? ? ? ? ? ? ? ? ? 25
> +#define MC13892_SWITCHERS1_SW2VSEL ? ? ? ? ? ? ? ? ? ? 0
> +#define MC13892_SWITCHERS1_SW2VSEL_M ? ? ? ? ? (0x1f<<0)
> +#define MC13892_SWITCHERS1_SW2HI ? ? ? ? ? ? ? ? ? ? ? (1<<23)
> +#define MC13892_SWITCHERS1_SW2EN ? ? ? ? ? ? ? 0
> +
> +#define MC13892_SWITCHERS2 ? ? ? ? ? ? ? ? ? ? ? ? ? ? 26
> +#define MC13892_SWITCHERS2_SW3VSEL ? ? ? ? ? ? ? ? ? ? 0
> +#define MC13892_SWITCHERS2_SW3VSEL_M ? ? ? ? ? (0x1f<<0)
> +#define MC13892_SWITCHERS2_SW3HI ? ? ? ? ? ? ? ? ? ? ? (1<<23)
> +#define MC13892_SWITCHERS2_SW3EN ? ? ? ? ? ? ? 0
> +
> +#define MC13892_SWITCHERS3 ? ? ? ? ? ? ? ? ? ? ? ? ? ? 27
> +#define MC13892_SWITCHERS3_SW4VSEL ? ? ? ? ? ? ? ? ? ? 0
> +#define MC13892_SWITCHERS3_SW4VSEL_M ? ? ? ? ? (0x1f<<0)
> +#define MC13892_SWITCHERS3_SW4HI ? ? ? ? ? ? ? ? ? ? ? (1<<23)
> +#define MC13892_SWITCHERS3_SW4EN ? ? ? ? ? ? ? 0
> +
> +#define MC13892_SWITCHERS4 ? ? ? ? ? ? ? ? ? ? ? ? ? ? 28
> +#define MC13892_SWITCHERS4_SW1MODE ? ? ? ? ? ? ? ? ? ? 0
> +#define MC13892_SWITCHERS4_SW1MODE_AUTO ? ? ? ? ? ? ? ?(8<<0)
> +#define MC13892_SWITCHERS4_SW1MODE_M ? ? ? ? ? (0xf<<0)
> +#define MC13892_SWITCHERS4_SW2MODE ? ? ? ? ? ? ? ? ? ? 10
> +#define MC13892_SWITCHERS4_SW2MODE_AUTO ? ? ? ? ? ? ? ?(8<<10)
> +#define MC13892_SWITCHERS4_SW2MODE_M ? ? ? ? ? (0xf<<10)
> +
> +#define MC13892_SWITCHERS5 ? ? ? ? ? ? ? ? ? ? ? ? ? ? 29
> +#define MC13892_SWITCHERS5_SW3MODE ? ? ? ? ? ? ? ? ? ? 0
> +#define MC13892_SWITCHERS5_SW3MODE_AUTO ? ? ? ? ? ? ? ?(8<<0)
> +#define MC13892_SWITCHERS5_SW3MODE_M ? ? ? ? ? (0xf<<0)
> +#define MC13892_SWITCHERS5_SW4MODE ? ? ? ? ? ? ? ? ? ? 8
> +#define MC13892_SWITCHERS5_SW4MODE_AUTO ? ? ? ? ? ? ? ?(8<<8)
> +#define MC13892_SWITCHERS5_SW4MODE_M ? ? ? ? ? (0xf<<8)
> +#define MC13892_SWITCHERS5_SWBSTEN ? ? ? ? ? ? ? ? ? ? (1<<20)
> +
> +
> +#define MC13892_REGULATORSETTING0 ? ? ? ? ? ? ? ? ? ? ?30
> +#define MC13892_REGULATORSETTING0_VGEN1VSEL ? ? ? ? ? ?0
> +#define MC13892_REGULATORSETTING0_VDIGVSEL ? ? ? ? ? ? 4
> +#define MC13892_REGULATORSETTING0_VGEN2VSEL ? ? ? ? ? ?6
> +#define MC13892_REGULATORSETTING0_VPLLVSEL ? ? ? ? ? ? 9
> +#define MC13892_REGULATORSETTING0_VUSB2VSEL ? ? ? ? ? ?11
> +#define MC13892_REGULATORSETTING0_VGEN3VSEL ? ? ? ? ? ?14
> +#define MC13892_REGULATORSETTING0_VCAMVSEL ? ? ? ? ? ? 16
> +
> +#define MC13892_REGULATORSETTING0_VGEN1VSEL_M ?(3<<0)
> +#define MC13892_REGULATORSETTING0_VDIGVSEL_M ? (3<<4)
> +#define MC13892_REGULATORSETTING0_VGEN2VSEL_M ?(7<<6)
> +#define MC13892_REGULATORSETTING0_VPLLVSEL_M ? (3<<9)
> +#define MC13892_REGULATORSETTING0_VUSB2VSEL_M ?(3<<11)
> +#define MC13892_REGULATORSETTING0_VGEN3VSEL_M ?(1<<14)
> +#define MC13892_REGULATORSETTING0_VCAMVSEL_M ? (3<<16)
> +
> +#define MC13892_REGULATORSETTING1 ? ? ? ? ? ? ? ? ? ? ?31
> +#define MC13892_REGULATORSETTING1_VVIDEOVSEL ? 2
> +#define MC13892_REGULATORSETTING1_VAUDIOVSEL ? 4
> +#define MC13892_REGULATORSETTING1_VSDVSEL ? ? ? ? ? ? ?6
> +
> +#define MC13892_REGULATORSETTING1_VVIDEOVSEL_M (3<<2)
> +#define MC13892_REGULATORSETTING1_VAUDIOVSEL_M (3<<4)
> +#define MC13892_REGULATORSETTING1_VSDVSEL_M ? ? ? ? ? ?(7<<6)
> +
> +#define MC13892_REGULATORMODE0 ? ? ? ? ? ? ? ? 32
> +#define MC13892_REGULATORMODE0_VGEN1EN ? ? ? ? (1<<0)
> +#define MC13892_REGULATORMODE0_VGEN1STDBY ? ? ? ? ? ? ?(1<<1)
> +#define MC13892_REGULATORMODE0_VGEN1MODE ? ? ? ? ? ? ? (1<<2)
> +#define MC13892_REGULATORMODE0_VIOHIEN ? ? ? ? (1<<3)
> +#define MC13892_REGULATORMODE0_VIOHISTDBY ? ? ? ? ? ? ?(1<<4)
> +#define MC13892_REGULATORMODE0_VIOHIMODE ? ? ? ? ? ? ? (1<<5)
> +#define MC13892_REGULATORMODE0_VDIGEN ? ? ? ? ?(1<<9)
> +#define MC13892_REGULATORMODE0_VDIGSTDBY ? ? ? ? ? ? ? (1<<10)
> +#define MC13892_REGULATORMODE0_VDIGMODE ? ? ? ? ? ? ? ?(1<<11)
> +#define MC13892_REGULATORMODE0_VGEN2EN ? ? ? ? (1<<12)
> +#define MC13892_REGULATORMODE0_VGEN2STDBY ? ? ? ? ? ? ?(1<<13)
> +#define MC13892_REGULATORMODE0_VGEN2MODE ? ? ? ? ? ? ? (1<<14)
> +#define MC13892_REGULATORMODE0_VPLLEN ? ? ? ? ?(1<<15)
> +#define MC13892_REGULATORMODE0_VPLLSTDBY ? ? ? ? ? ? ? (1<<16)
> +#define MC13892_REGULATORMODE0_VPLLMODE ? ? ? ? ? ? ? ?(1<<17)
> +#define MC13892_REGULATORMODE0_VUSB2EN ? ? ? ? (1<<18)
> +#define MC13892_REGULATORMODE0_VUSB2STDBY ? ? ? ? ? ? ?(1<<19)
> +#define MC13892_REGULATORMODE0_VUSB2MODE ? ? ? ? ? ? ? (1<<20)
> +
> +#define MC13892_REGULATORMODE1 ? ? ? ? ? ? ? ? 33
> +#define MC13892_REGULATORMODE1_VGEN3EN ? ? ? ? (1<<0)
> +#define MC13892_REGULATORMODE1_VGEN3STDBY ? ? ? ? ? ? ?(1<<1)
> +#define MC13892_REGULATORMODE1_VGEN3MODE ? ? ? ? ? ? ? (1<<2)
> +#define MC13892_REGULATORMODE1_VCAMEN ? ? ? ? ?(1<<6)
> +#define MC13892_REGULATORMODE1_VCAMSTDBY ? ? ? ? ? ? ? (1<<7)
> +#define MC13892_REGULATORMODE1_VCAMMODE ? ? ? ? ? ? ? ?(1<<8)
> +#define MC13892_REGULATORMODE1_VCAMCONFIGEN ? ? ? ? ? ?(1<<9)
> +#define MC13892_REGULATORMODE1_VVIDEOEN ? ? ? ? ? ? ? ?(1<<12)
> +#define MC13892_REGULATORMODE1_VVIDEOSTDBY ? ? ? ? ? ? (1<<13)
> +#define MC13892_REGULATORMODE1_VVIDEOMODE ? ? ? ? ? ? ?(1<<14)
> +#define MC13892_REGULATORMODE1_VAUDIOEN ? ? ? ? ? ? ? ?(1<<15)
> +#define MC13892_REGULATORMODE1_VAUDIOSTDBY ? ? ? ? ? ? (1<<16)
> +#define MC13892_REGULATORMODE1_VAUDIOMODE ? ? ? ? ? ? ?(1<<17)
> +#define MC13892_REGULATORMODE1_VSDEN ? ? ? ? ? (1<<18)
> +#define MC13892_REGULATORMODE1_VSDSTDBY ? ? ? ? ? ? ? ?(1<<19)
> +#define MC13892_REGULATORMODE1_VSDMODE ? ? ? ? (1<<20)
> +
> +#define MC13892_POWERMISC ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?34
> +#define MC13892_POWERMISC_GPO1EN ? ? ? ? ? ? ? ? ? ? ? (1<<6)
> +#define MC13892_POWERMISC_GPO2EN ? ? ? ? ? ? ? ? ? ? ? (1<<8)
> +#define MC13892_POWERMISC_GPO3EN ? ? ? ? ? ? ? ? ? ? ? (1<<10)
> +#define MC13892_POWERMISC_GPO4EN ? ? ? ? ? ? ? ? ? ? ? (1<<12)
> +#define MC13892_POWERMISC_PWGT1SPIEN ? ? ? ? ? (1<<15)
> +#define MC13892_POWERMISC_PWGT2SPIEN ? ? ? ? ? (1<<16)
> +#define MC13892_POWERMISC_GPO4ADINEN ? ? ? ? ? (1<<21)
> +
> +#define MC13892_POWERMISC_PWGTSPI_M ? ? ? ? ? ? ? ? ? ?(3 << 15)
> +
> +#define MC13892_USB1 ? ? ? ? ? ? ? ? ? ? ? ? ? 50
> +#define MC13892_USB1_VUSBEN ? ? ? ? ? ? ? ? ? ? ? ? ? ?(1<<3)
> +
> +static const int mc13892_vcoincell[] = {
> + ? ? ? 2500000, 2700000, 2800000, 2900000, 3000000, 3100000,
> + ? ? ? 3200000, 3300000,
> +};
> +
> +static const int mc13892_sw1[] = {
> + ? ? ? 600000, ? 625000, ?650000, ?675000, ?700000, ?725000,
> + ? ? ? 750000, ? 775000, ?800000, ?825000, ?850000, ?875000,
> + ? ? ? 900000, ? 925000, ?950000, ?975000, 1000000, 1025000,
> + ? ? ? 1050000, 1075000, 1100000, 1125000, 1150000, 1175000,
> + ? ? ? 1200000, 1225000, 1250000, 1275000, 1300000, 1325000,
> + ? ? ? 1350000, 1375000
> +};
> +
> +static const int mc13892_sw[] = {
> + ? ? ? 600000, ? 625000, ?650000, ?675000, ?700000, ?725000,
> + ? ? ? 750000, ? 775000, ?800000, ?825000, ?850000, ?875000,
> + ? ? ? 900000, ? 925000, ?950000, ?975000, 1000000, 1025000,
> + ? ? ? 1050000, 1075000, 1100000, 1125000, 1150000, 1175000,
> + ? ? ? 1200000, 1225000, 1250000, 1275000, 1300000, 1325000,
> + ? ? ? 1350000, 1375000, 1400000, 1425000, 1450000, 1475000,
> + ? ? ? 1500000, 1525000, 1550000, 1575000, 1600000, 1625000,
> + ? ? ? 1650000, 1675000, 1700000, 1725000, 1750000, 1775000,
> + ? ? ? 1800000, 1825000, 1850000, 1875000
> +};
> +
> +static const int mc13892_swbst[] = {
> + ? ? ? 5000000,
> +};
> +
> +static const int mc13892_viohi[] = {
> + ? ? ? 2775000,
> +};
> +
> +static const int mc13892_vpll[] = {
> + ? ? ? 1050000, 1250000, 1650000, 1800000,
> +};
> +
> +static const int mc13892_vdig[] = {
> + ? ? ? 1050000, 1250000, 1650000, 1800000,
> +};
> +
> +static const int mc13892_vsd[] = {
> + ? ? ? 1800000, 2000000, 2600000, 2700000,
> + ? ? ? 2800000, 2900000, 3000000, 3150000,
> +};
> +
> +static const int mc13892_vusb2[] = {
> + ? ? ? 2400000, 2600000, 2700000, 2775000,
> +};
> +
> +static const int mc13892_vvideo[] = {
> + ? ? ? 2700000, 2775000, 2500000, 2600000,
> +};
> +
> +static const int mc13892_vaudio[] = {
> + ? ? ? 2300000, 2500000, 2775000, 3000000,
> +};
> +
> +static const int mc13892_vcam[] = {
> + ? ? ? 2500000, 2600000, 2750000, 3000000,
> +};
> +
> +static const int mc13892_vgen1[] = {
> + ? ? ? 1200000, 1500000, 2775000, 3150000,
> +};
> +
> +static const int mc13892_vgen2[] = {
> + ? ? ? 1200000, 1500000, 1600000, 1800000,
> + ? ? ? 2700000, 2800000, 3000000, 3150000,
> +};
> +
> +static const int mc13892_vgen3[] = {
> + ? ? ? 1800000, 2900000,
> +};
> +
> +static const int mc13892_vusb[] = {
> + ? ? ? 3300000,
> +};
> +
> +static const int mc13892_gpo[] = {
> + ? ? ? 2750000,
> +};
> +
> +static const int mc13892_pwgtdrv[] = {
> + ? ? ? 5000000,
> +};
> +
> +static struct regulator_ops mc13892_gpo_regulator_ops;
> +/* sw regulators need special care due to the "hi bit" */
> +static struct regulator_ops mc13892_sw_regulator_ops;
> +
> +
> +#define MC13892_FIXED_DEFINE(name, reg, voltages)\
> + ? ? ? MC13xxx_FIXED_DEFINE(MC13892_, name, reg, voltages, \
> + ? ? ? ? ? ? ? ? ? ? ? mc13xxx_fixed_regulator_ops)
> +
> +#define MC13892_GPO_DEFINE(name, reg, voltages) ? ? ? ? ? ? ? ?\
> + ? ? ? MC13xxx_GPO_DEFINE(MC13892_, name, reg, voltages, \
> + ? ? ? ? ? ? ? ? ? ? ? mc13892_gpo_regulator_ops)
> +
> +#define MC13892_SW_DEFINE(name, reg, vsel_reg, voltages) ? ? ? ? ? ? ? \
> + ? ? ? MC13xxx_DEFINE(MC13892_, name, reg, vsel_reg, voltages, \
> + ? ? ? ? ? ? ? ? ? ? ? mc13892_sw_regulator_ops)
> +
> +#define MC13892_DEFINE_REGU(name, reg, vsel_reg, voltages) ? ? ? ? ? ? \
> + ? ? ? MC13xxx_DEFINE(MC13892_, name, reg, vsel_reg, voltages, \
> + ? ? ? ? ? ? ? ? ? ? ? mc13xxx_regulator_ops)
> +
> +static struct mc13xxx_regulator mc13892_regulators[] = {
> + ? ? ? MC13892_DEFINE_REGU(VCOINCELL, POWERCTL0, POWERCTL0, ? ? ? ? ? ?\
> + ? ? ? ? ? ? ? ? ? ? ? ? ? mc13892_vcoincell),
> + ? ? ? MC13892_SW_DEFINE(SW1, SWITCHERS0, SWITCHERS0, mc13892_sw1),
> + ? ? ? MC13892_SW_DEFINE(SW2, SWITCHERS1, SWITCHERS1, mc13892_sw),
> + ? ? ? MC13892_SW_DEFINE(SW3, SWITCHERS2, SWITCHERS2, mc13892_sw),
> + ? ? ? MC13892_SW_DEFINE(SW4, SWITCHERS3, SWITCHERS3, mc13892_sw),
> + ? ? ? MC13892_FIXED_DEFINE(SWBST, SWITCHERS5, mc13892_swbst),
> + ? ? ? MC13892_FIXED_DEFINE(VIOHI, REGULATORMODE0, mc13892_viohi),
> + ? ? ? MC13892_DEFINE_REGU(VPLL, REGULATORMODE0, REGULATORSETTING0, ? ?\
> + ? ? ? ? ? ? ? ? ? ? ? ? ? mc13892_vpll),
> + ? ? ? MC13892_DEFINE_REGU(VDIG, REGULATORMODE0, REGULATORSETTING0, ? ?\
> + ? ? ? ? ? ? ? ? ? ? ? ? ? mc13892_vdig),
> + ? ? ? MC13892_DEFINE_REGU(VSD, REGULATORMODE1, REGULATORSETTING1, ? ? \
> + ? ? ? ? ? ? ? ? ? ? ? ? ? mc13892_vsd),
> + ? ? ? MC13892_DEFINE_REGU(VUSB2, REGULATORMODE0, REGULATORSETTING0, ? \
> + ? ? ? ? ? ? ? ? ? ? ? ? ? mc13892_vusb2),
> + ? ? ? MC13892_DEFINE_REGU(VVIDEO, REGULATORMODE1, REGULATORSETTING1, ?\
> + ? ? ? ? ? ? ? ? ? ? ? ? ? mc13892_vvideo),
> + ? ? ? MC13892_DEFINE_REGU(VAUDIO, REGULATORMODE1, REGULATORSETTING1, ?\
> + ? ? ? ? ? ? ? ? ? ? ? ? ? mc13892_vaudio),
> + ? ? ? MC13892_DEFINE_REGU(VCAM, REGULATORMODE1, REGULATORSETTING0, \
> + ? ? ? ? ? ? ? ? ? ? ? ? ? mc13892_vcam),
> + ? ? ? MC13892_DEFINE_REGU(VGEN1, REGULATORMODE0, REGULATORSETTING0, ? \
> + ? ? ? ? ? ? ? ? ? ? ? ? ? mc13892_vgen1),
> + ? ? ? MC13892_DEFINE_REGU(VGEN2, REGULATORMODE0, REGULATORSETTING0, ? \
> + ? ? ? ? ? ? ? ? ? ? ? ? ? mc13892_vgen2),
> + ? ? ? MC13892_DEFINE_REGU(VGEN3, REGULATORMODE1, REGULATORSETTING0, ? \
> + ? ? ? ? ? ? ? ? ? ? ? ? ? mc13892_vgen3),
> + ? ? ? MC13892_FIXED_DEFINE(VUSB, USB1, mc13892_vusb),
> + ? ? ? MC13892_GPO_DEFINE(GPO1, POWERMISC, mc13892_gpo),
> + ? ? ? MC13892_GPO_DEFINE(GPO2, POWERMISC, mc13892_gpo),
> + ? ? ? MC13892_GPO_DEFINE(GPO3, POWERMISC, mc13892_gpo),
> + ? ? ? MC13892_GPO_DEFINE(GPO4, POWERMISC, mc13892_gpo),
> + ? ? ? MC13892_GPO_DEFINE(PWGT1SPI, POWERMISC, mc13892_pwgtdrv),
> + ? ? ? MC13892_GPO_DEFINE(PWGT2SPI, POWERMISC, mc13892_pwgtdrv),
> +};
> +
> +int mc13892_powermisc_rmw(struct mc13xxx_regulator_priv *priv, u32 mask,
> + ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? u32 val)
> +{
> + ? ? ? struct mc13xxx *mc13892 = priv->mc13xxx;
> + ? ? ? int ret;
> + ? ? ? u32 valread;
> +
> + ? ? ? BUG_ON(val & ~mask);
> +
> + ? ? ? ret = mc13xxx_reg_read(mc13892, MC13892_POWERMISC, &valread);
> + ? ? ? if (ret)
> + ? ? ? ? ? ? ? return ret;
> +
> + ? ? ? /* Update the stored state for Power Gates. */
> + ? ? ? priv->powermisc_pwgt_state =
> + ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? (priv->powermisc_pwgt_state & ~mask) | val;
> + ? ? ? priv->powermisc_pwgt_state &= MC13892_POWERMISC_PWGTSPI_M;
> +
> + ? ? ? /* Construct the new register value */
> + ? ? ? valread = (valread & ~mask) | val;
> + ? ? ? /* Overwrite the PWGTxEN with the stored version */
> + ? ? ? valread = (valread & ~MC13892_POWERMISC_PWGTSPI_M) |
> + ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? priv->powermisc_pwgt_state;
> +
> + ? ? ? return mc13xxx_reg_write(mc13892, MC13892_POWERMISC, valread);
> +}
> +
> +static int mc13892_gpo_regulator_enable(struct regulator_dev *rdev)
> +{
> + ? ? ? struct mc13xxx_regulator_priv *priv = rdev_get_drvdata(rdev);
> + ? ? ? int id = rdev_get_id(rdev);
> + ? ? ? int ret;
> + ? ? ? u32 en_val = mc13892_regulators[id].enable_bit;
> + ? ? ? u32 mask = mc13892_regulators[id].enable_bit;
> +
> + ? ? ? dev_dbg(rdev_get_dev(rdev), "%s id: %d\n", __func__, id);
> +
> + ? ? ? /* Power Gate enable value is 0 */
> + ? ? ? if (id == MC13892_PWGT1SPI ||
> + ? ? ? ? ? id == MC13892_PWGT2SPI)
> + ? ? ? ? ? ? ? en_val = 0;
> +
> + ? ? ? if (id == MC13892_GPO4)
> + ? ? ? ? ? ? ? mask |= MC13892_POWERMISC_GPO4ADINEN;
> +
> + ? ? ? mc13xxx_lock(priv->mc13xxx);
> + ? ? ? ret = mc13892_powermisc_rmw(priv, mask, en_val);
> + ? ? ? mc13xxx_unlock(priv->mc13xxx);
> +
> + ? ? ? return ret;
> +}
> +
> +static int mc13892_gpo_regulator_disable(struct regulator_dev *rdev)
> +{
> + ? ? ? struct mc13xxx_regulator_priv *priv = rdev_get_drvdata(rdev);
> + ? ? ? int id = rdev_get_id(rdev);
> + ? ? ? int ret;
> + ? ? ? u32 dis_val = 0;
> +
> + ? ? ? dev_dbg(rdev_get_dev(rdev), "%s id: %d\n", __func__, id);
> +
> + ? ? ? /* Power Gate disable value is 1 */
> + ? ? ? if (id == MC13892_PWGT1SPI ||
> + ? ? ? ? ? id == MC13892_PWGT2SPI)
> + ? ? ? ? ? ? ? dis_val = mc13892_regulators[id].enable_bit;
> +
> + ? ? ? mc13xxx_lock(priv->mc13xxx);
> + ? ? ? ret = mc13892_powermisc_rmw(priv, mc13892_regulators[id].enable_bit,
> + ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? dis_val);
> + ? ? ? mc13xxx_unlock(priv->mc13xxx);
> +
> + ? ? ? return ret;
> +}
> +
> +static int mc13892_gpo_regulator_is_enabled(struct regulator_dev *rdev)
> +{
> + ? ? ? struct mc13xxx_regulator_priv *priv = rdev_get_drvdata(rdev);
> + ? ? ? int ret, id = rdev_get_id(rdev);
> + ? ? ? unsigned int val;
> +
> + ? ? ? mc13xxx_lock(priv->mc13xxx);
> + ? ? ? ret = mc13xxx_reg_read(priv->mc13xxx, mc13892_regulators[id].reg, &val);
> + ? ? ? mc13xxx_unlock(priv->mc13xxx);
> +
> + ? ? ? if (ret)
> + ? ? ? ? ? ? ? return ret;
> +
> + ? ? ? /* Power Gates state is stored in powermisc_pwgt_state
> + ? ? ? ?* where the meaning of bits is negated */
> + ? ? ? val = (val & ~MC13892_POWERMISC_PWGTSPI_M) |
> + ? ? ? ? ? ? (priv->powermisc_pwgt_state ^ MC13892_POWERMISC_PWGTSPI_M);
> +
> + ? ? ? return (val & mc13892_regulators[id].enable_bit) != 0;
> +}
> +
> +
> +static struct regulator_ops mc13892_gpo_regulator_ops = {
> + ? ? ? .enable = mc13892_gpo_regulator_enable,
> + ? ? ? .disable = mc13892_gpo_regulator_disable,
> + ? ? ? .is_enabled = mc13892_gpo_regulator_is_enabled,
> + ? ? ? .list_voltage = mc13xxx_regulator_list_voltage,
> + ? ? ? .set_voltage = mc13xxx_fixed_regulator_set_voltage,
> + ? ? ? .get_voltage = mc13xxx_fixed_regulator_get_voltage,
> +};
> +
> +static int mc13892_sw_regulator_get_voltage(struct regulator_dev *rdev)
> +{
> + ? ? ? struct mc13xxx_regulator_priv *priv = rdev_get_drvdata(rdev);
> + ? ? ? int ret, id = rdev_get_id(rdev);
> + ? ? ? unsigned int val, hi;
> +
> + ? ? ? dev_dbg(rdev_get_dev(rdev), "%s id: %d\n", __func__, id);
> +
> + ? ? ? mc13xxx_lock(priv->mc13xxx);
> + ? ? ? ret = mc13xxx_reg_read(priv->mc13xxx,
> + ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? mc13892_regulators[id].vsel_reg, &val);
> + ? ? ? mc13xxx_unlock(priv->mc13xxx);
> + ? ? ? if (ret)
> + ? ? ? ? ? ? ? return ret;
> +
> + ? ? ? hi ?= val & MC13892_SWITCHERS0_SWxHI;
> + ? ? ? val = (val & mc13892_regulators[id].vsel_mask)
> + ? ? ? ? ? ? ? >> mc13892_regulators[id].vsel_shift;
> +
> + ? ? ? dev_dbg(rdev_get_dev(rdev), "%s id: %d val: %d\n", __func__, id, val);
> +
> + ? ? ? if (hi)
> + ? ? ? ? ? ? ? val = (25000 * val) + 1100000;
> + ? ? ? else
> + ? ? ? ? ? ? ? val = (25000 * val) + 600000;
> +
> + ? ? ? return val;
> +}
> +
> +static int mc13892_sw_regulator_set_voltage(struct regulator_dev *rdev,
> + ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? int min_uV, int max_uV)
> +{
> + ? ? ? struct mc13xxx_regulator_priv *priv = rdev_get_drvdata(rdev);
> + ? ? ? int hi, value, val, mask, id = rdev_get_id(rdev);
> + ? ? ? int ret;
> +
> + ? ? ? dev_dbg(rdev_get_dev(rdev), "%s id: %d min_uV: %d max_uV: %d\n",
> + ? ? ? ? ? ? ? __func__, id, min_uV, max_uV);
> +
> + ? ? ? /* Find the best index */
> + ? ? ? value = mc13xxx_get_best_voltage_index(rdev, min_uV, max_uV);
> + ? ? ? dev_dbg(rdev_get_dev(rdev), "%s best value: %d\n", __func__, value);
> + ? ? ? if (value < 0)
> + ? ? ? ? ? ? ? return value;
> +
> + ? ? ? value = mc13892_regulators[id].voltages[value];
> +
> + ? ? ? mc13xxx_lock(priv->mc13xxx);
> + ? ? ? ret = mc13xxx_reg_read(priv->mc13xxx,
> + ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? mc13892_regulators[id].vsel_reg, &val);
> + ? ? ? if (ret)
> + ? ? ? ? ? ? ? goto err;
> +
> + ? ? ? hi ?= val & MC13892_SWITCHERS0_SWxHI;
> + ? ? ? if (value > 1375)
> + ? ? ? ? ? ? ? hi = 1;
> + ? ? ? if (value < 1100)
> + ? ? ? ? ? ? ? hi = 0;
> +
> + ? ? ? if (hi) {
> + ? ? ? ? ? ? ? value = (value - 1100000) / 25000;
> + ? ? ? ? ? ? ? value |= MC13892_SWITCHERS0_SWxHI;
> + ? ? ? } else
> + ? ? ? ? ? ? ? value = (value - 600000) / 25000;
> +
> + ? ? ? mask = mc13892_regulators[id].vsel_mask | MC13892_SWITCHERS0_SWxHI;
> + ? ? ? ret = mc13xxx_reg_rmw(priv->mc13xxx, mc13892_regulators[id].vsel_reg,
> + ? ? ? ? ? ? ? ? ? ? ? mask,
> + ? ? ? ? ? ? ? ? ? ? ? value << mc13892_regulators[id].vsel_shift);
> +err:
> + ? ? ? mc13xxx_unlock(priv->mc13xxx);
> +
> + ? ? ? return ret;
> +}
> +
> +static struct regulator_ops mc13892_sw_regulator_ops = {
> + ? ? ? .is_enabled = mc13xxx_sw_regulator_is_enabled,
> + ? ? ? .list_voltage = mc13xxx_regulator_list_voltage,
> + ? ? ? .set_voltage = mc13892_sw_regulator_set_voltage,
> + ? ? ? .get_voltage = mc13892_sw_regulator_get_voltage,
> +};
> +
> +static int mc13892_vcam_set_mode(struct regulator_dev *rdev, unsigned int mode)
> +{
> + ? ? ? unsigned int en_val = 0;
> + ? ? ? struct mc13xxx_regulator_priv *priv = rdev_get_drvdata(rdev);
> + ? ? ? int ret, id = rdev_get_id(rdev);
> +
> + ? ? ? if (mode == REGULATOR_MODE_FAST)
> + ? ? ? ? ? ? ? en_val = MC13892_REGULATORMODE1_VCAMCONFIGEN;
> +
> + ? ? ? mc13xxx_lock(priv->mc13xxx);
> + ? ? ? ret = mc13xxx_reg_rmw(priv->mc13xxx, mc13892_regulators[id].reg,
> + ? ? ? ? ? ? ? ? ? ? ? MC13892_REGULATORMODE1_VCAMCONFIGEN,
> + ? ? ? ? ? ? ? ? ? ? ? en_val);
> + ? ? ? mc13xxx_unlock(priv->mc13xxx);
> +
> + ? ? ? return ret;
> +}
> +
> +unsigned int mc13892_vcam_get_mode(struct regulator_dev *rdev)
> +{
> + ? ? ? struct mc13xxx_regulator_priv *priv = rdev_get_drvdata(rdev);
> + ? ? ? int ret, id = rdev_get_id(rdev);
> + ? ? ? unsigned int val;
> +
> + ? ? ? mc13xxx_lock(priv->mc13xxx);
> + ? ? ? ret = mc13xxx_reg_read(priv->mc13xxx, mc13892_regulators[id].reg, &val);
> + ? ? ? mc13xxx_unlock(priv->mc13xxx);
> +
> + ? ? ? if (ret)
> + ? ? ? ? ? ? ? return ret;
> +
> + ? ? ? if (val & MC13892_REGULATORMODE1_VCAMCONFIGEN)
> + ? ? ? ? ? ? ? return REGULATOR_MODE_FAST;
> +
> + ? ? ? return REGULATOR_MODE_NORMAL;
> +}
> +
> +
> +static int __devinit mc13892_regulator_probe(struct platform_device *pdev)
> +{
> + ? ? ? struct mc13xxx_regulator_priv *priv;
> + ? ? ? struct mc13xxx *mc13892 = dev_get_drvdata(pdev->dev.parent);
> + ? ? ? struct mc13xxx_regulator_platform_data *pdata =
> + ? ? ? ? ? ? ? dev_get_platdata(&pdev->dev);
> + ? ? ? struct mc13xxx_regulator_init_data *init_data;
> + ? ? ? int i, ret;
> + ? ? ? u32 val;
> +
> + ? ? ? priv = kzalloc(sizeof(*priv) +
> + ? ? ? ? ? ? ? ? ? ? ? pdata->num_regulators * sizeof(priv->regulators[0]),
> + ? ? ? ? ? ? ? ? ? ? ? GFP_KERNEL);
> + ? ? ? if (!priv)
> + ? ? ? ? ? ? ? return -ENOMEM;
> +
> + ? ? ? priv->mc13xxx_regulators = mc13892_regulators;
> + ? ? ? priv->mc13xxx = mc13892;
> +
> + ? ? ? mc13xxx_lock(mc13892);
> + ? ? ? ret = mc13xxx_reg_read(mc13892, MC13892_REVISION, &val);
> + ? ? ? mc13xxx_unlock(mc13892);
> + ? ? ? if (ret)
> + ? ? ? ? ? ? ? goto err_alloc;
> +
> + ? ? ? /* enable switch auto mode */
> + ? ? ? if ((val & 0x0000FFFF) == 0x45d0) {
> + ? ? ? ? ? ? ? mc13xxx_lock(mc13892);
> + ? ? ? ? ? ? ? ret = mc13xxx_reg_rmw(mc13892, MC13892_SWITCHERS4,
> + ? ? ? ? ? ? ? ? ? ? ? MC13892_SWITCHERS4_SW1MODE_M |
> + ? ? ? ? ? ? ? ? ? ? ? MC13892_SWITCHERS4_SW2MODE_M,
> + ? ? ? ? ? ? ? ? ? ? ? MC13892_SWITCHERS4_SW1MODE_AUTO |
> + ? ? ? ? ? ? ? ? ? ? ? MC13892_SWITCHERS4_SW2MODE_AUTO);
> + ? ? ? ? ? ? ? mc13xxx_unlock(mc13892);
> + ? ? ? ? ? ? ? if (ret)
> + ? ? ? ? ? ? ? ? ? ? ? goto err_alloc;
> +
> + ? ? ? ? ? ? ? mc13xxx_lock(mc13892);
> + ? ? ? ? ? ? ? mc13xxx_reg_rmw(mc13892, MC13892_SWITCHERS5,
> + ? ? ? ? ? ? ? ? ? ? ? MC13892_SWITCHERS5_SW3MODE_M |
> + ? ? ? ? ? ? ? ? ? ? ? MC13892_SWITCHERS5_SW4MODE_M,
> + ? ? ? ? ? ? ? ? ? ? ? MC13892_SWITCHERS5_SW3MODE_AUTO |
> + ? ? ? ? ? ? ? ? ? ? ? MC13892_SWITCHERS5_SW4MODE_AUTO);
> + ? ? ? ? ? ? ? mc13xxx_unlock(mc13892);
> + ? ? ? ? ? ? ? if (ret)
> + ? ? ? ? ? ? ? ? ? ? ? goto err_alloc;
> + ? ? ? }
> +
> + ? ? ? mc13892_regulators[MC13892_VCAM].desc.ops->set_mode
> + ? ? ? ? ? ? ? = mc13892_vcam_set_mode;
> + ? ? ? mc13892_regulators[MC13892_VCAM].desc.ops->get_mode
> + ? ? ? ? ? ? ? = mc13892_vcam_get_mode;
> + ? ? ? for (i = 0; i < pdata->num_regulators; i++) {
> + ? ? ? ? ? ? ? init_data = &pdata->regulators[i];
> + ? ? ? ? ? ? ? priv->regulators[i] = regulator_register(
> + ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? &mc13892_regulators[init_data->id].desc,
> + ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? &pdev->dev, init_data->init_data, priv);
> +
> + ? ? ? ? ? ? ? if (IS_ERR(priv->regulators[i])) {
> + ? ? ? ? ? ? ? ? ? ? ? dev_err(&pdev->dev, "failed to register regulator %s\n",
> + ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? mc13892_regulators[i].desc.name);
> + ? ? ? ? ? ? ? ? ? ? ? ret = PTR_ERR(priv->regulators[i]);
> + ? ? ? ? ? ? ? ? ? ? ? goto err;
> + ? ? ? ? ? ? ? }
> + ? ? ? }
> +
> + ? ? ? platform_set_drvdata(pdev, priv);
> +
> + ? ? ? return 0;
> +err:
> + ? ? ? while (--i >= 0)
> + ? ? ? ? ? ? ? regulator_unregister(priv->regulators[i]);
> +
> +err_alloc:
> + ? ? ? kfree(priv);
> +
> + ? ? ? return ret;
> +}
> +
> +static int __devexit mc13892_regulator_remove(struct platform_device *pdev)
> +{
> + ? ? ? struct mc13xxx_regulator_priv *priv = platform_get_drvdata(pdev);
> + ? ? ? struct mc13xxx_regulator_platform_data *pdata =
> + ? ? ? ? ? ? ? dev_get_platdata(&pdev->dev);
> + ? ? ? int i;
> +
> + ? ? ? platform_set_drvdata(pdev, NULL);
> +
> + ? ? ? for (i = 0; i < pdata->num_regulators; i++)
> + ? ? ? ? ? ? ? regulator_unregister(priv->regulators[i]);
> +
> + ? ? ? kfree(priv);
> + ? ? ? return 0;
> +}
> +
> +static struct platform_driver mc13892_regulator_driver = {
> + ? ? ? .driver = {
> + ? ? ? ? ? ? ? .name ? = "mc13892-regulator",
> + ? ? ? ? ? ? ? .owner ?= THIS_MODULE,
> + ? ? ? },
> + ? ? ? .remove = __devexit_p(mc13892_regulator_remove),
> + ? ? ? .probe ?= mc13892_regulator_probe,
> +};
> +
> +static int __init mc13892_regulator_init(void)
> +{
> + ? ? ? return platform_driver_register(&mc13892_regulator_driver);
> +}
> +subsys_initcall(mc13892_regulator_init);
> +
> +static void __exit mc13892_regulator_exit(void)
> +{
> + ? ? ? platform_driver_unregister(&mc13892_regulator_driver);
> +}
> +module_exit(mc13892_regulator_exit);
> +
> +MODULE_LICENSE("GPL v2");
> +MODULE_AUTHOR("Yong Shen <yong.shen@linaro.org>");
> +MODULE_DESCRIPTION("Regulator Driver for Freescale MC13892 PMIC");
> +MODULE_ALIAS("platform:mc13892-regulator");
> diff --git a/include/linux/mfd/mc13892.h b/include/linux/mfd/mc13892.h
> new file mode 100644
> index 0000000..7df13e8
> --- /dev/null
> +++ b/include/linux/mfd/mc13892.h
> @@ -0,0 +1,38 @@
> +/*
> + * Copyright 2010 Yong Shen <yong.shen@linaro.org>
> + *
> + * This program is free software; you can redistribute it and/or modify it under
> + * the terms of the GNU General Public License version 2 as published by the
> + * Free Software Foundation.
> + */
> +
> +#ifndef __LINUX_MFD_MC13892_H
> +#define __LINUX_MFD_MC13892_H
> +#include <linux/mfd/mc13xxx.h>
> +
> +#define MC13892_SW1 ? ? ? ? ? ?0
> +#define MC13892_SW2 ? ? ? ? ? ?1
> +#define MC13892_SW3 ? ? ? ? ? ?2
> +#define MC13892_SW4 ? ? ? ? ? ?3
> +#define MC13892_SWBST ?4
> +#define MC13892_VIOHI ?5
> +#define MC13892_VPLL ? 6
> +#define MC13892_VDIG ? 7
> +#define MC13892_VSD ? ?8
> +#define MC13892_VUSB2 ?9
> +#define MC13892_VVIDEO 10
> +#define MC13892_VAUDIO 11
> +#define MC13892_VCAM ? 12
> +#define MC13892_VGEN1 ?13
> +#define MC13892_VGEN2 ?14
> +#define MC13892_VGEN3 ?15
> +#define MC13892_VUSB ? 16
> +#define MC13892_GPO1 ? 17
> +#define MC13892_GPO2 ? 18
> +#define MC13892_GPO3 ? 19
> +#define MC13892_GPO4 ? 20
> +#define MC13892_PWGT1SPI ? ? ? 21
> +#define MC13892_PWGT2SPI ? ? ? 22
> +#define MC13892_VCOINCELL ? ? ?23
> +
> +#endif
> --
> 1.7.0.4
>
>
>

^ permalink raw reply	[flat|nested] 20+ messages in thread

* [PATCHv3] support PMIC mc13892
  2010-12-08  3:28   ` Yong Shen
@ 2010-12-08  8:52     ` Uwe Kleine-König
  2010-12-08  9:02       ` Yong Shen
  2010-12-08 12:54     ` Liam Girdwood
  2010-12-09 22:33     ` Liam Girdwood
  2 siblings, 1 reply; 20+ messages in thread
From: Uwe Kleine-König @ 2010-12-08  8:52 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Yong,

On Wed, Dec 08, 2010 at 11:28:38AM +0800, Yong Shen wrote:
> Last time, you took the previous patches for mc13783 code
> reorganization in your tree, I suppose you can also please take
> mc13892, which had passed review.
IMHO it's fair to wait a bit longer than 7 minutes after the last post
to request merging.  The changes compared to v2 might be trivial, still
you should give your reviewers a chance to check what you did.

Uwe

-- 
Pengutronix e.K.                           | Uwe Kleine-K?nig            |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |

^ permalink raw reply	[flat|nested] 20+ messages in thread

* [PATCHv3] support PMIC mc13892
  2010-12-08  8:52     ` Uwe Kleine-König
@ 2010-12-08  9:02       ` Yong Shen
  0 siblings, 0 replies; 20+ messages in thread
From: Yong Shen @ 2010-12-08  9:02 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Uwe,

2010/12/8 Uwe Kleine-K?nig <u.kleine-koenig@pengutronix.de>:
> Hi Yong,
>
> On Wed, Dec 08, 2010 at 11:28:38AM +0800, Yong Shen wrote:
>> Last time, you took the previous patches for mc13783 code
>> reorganization in your tree, I suppose you can also please take
>> mc13892, which had passed review.
> IMHO it's fair to wait a bit longer than 7 minutes after the last post
> to request merging. ?The changes compared to v2 might be trivial, still
> you should give your reviewers a chance to check what you did.
>
You are right.
Since it was quite a while after v2, I had not received comments, I
had this illusion of "no more comments coming" :).
Thanks for reminding and welcome more feedback.

Yong

> Uwe
>
> --
> Pengutronix e.K. ? ? ? ? ? ? ? ? ? ? ? ? ? | Uwe Kleine-K?nig ? ? ? ? ? ?|
> Industrial Linux Solutions ? ? ? ? ? ? ? ? | http://www.pengutronix.de/ ?|
>

^ permalink raw reply	[flat|nested] 20+ messages in thread

* [PATCHv3] support PMIC mc13892
  2010-12-08  3:21 ` [PATCHv3] support PMIC mc13892 yong.shen at freescale.com
  2010-12-08  3:28   ` Yong Shen
@ 2010-12-08  9:12   ` Uwe Kleine-König
  2010-12-08  9:51     ` Yong Shen
  2010-12-08 10:01     ` Mark Brown
  2010-12-08  9:25   ` Samuel Ortiz
  2010-12-09 10:25   ` Sascha Hauer
  3 siblings, 2 replies; 20+ messages in thread
From: Uwe Kleine-König @ 2010-12-08  9:12 UTC (permalink / raw)
  To: linux-arm-kernel

Hello,

Can you please add "regulator:" to the subject?

Some of the following comments are admittedly a bit picky, still I'd
like them fixed.

On Wed, Dec 08, 2010 at 11:21:00AM +0800, yong.shen at freescale.com wrote:
> From: Yong Shen <yong.shen@linaro.org>
> 
> add support for mc13892, tested on mx51 babbage board
> 
> Signed-off-by: Arnaud Patard <arnaud.patard@rtp-net.org>
> Signed-off-by: Yong Shen <yong.shen@linaro.org>
> ---
>  drivers/regulator/Kconfig             |    8 +
>  drivers/regulator/Makefile            |    1 +
>  drivers/regulator/mc13892-regulator.c |  644 +++++++++++++++++++++++++++++++++
>  include/linux/mfd/mc13892.h           |   38 ++
>  4 files changed, 691 insertions(+), 0 deletions(-)
>  create mode 100644 drivers/regulator/mc13892-regulator.c
>  create mode 100644 include/linux/mfd/mc13892.h
> 
> diff --git a/drivers/regulator/Kconfig b/drivers/regulator/Kconfig
> index 6e54253..1673a4f 100644
> --- a/drivers/regulator/Kconfig
> +++ b/drivers/regulator/Kconfig
> @@ -197,6 +197,14 @@ config REGULATOR_MC13783
>  	  Say y here to support the regulators found on the Freescale MC13783
>  	  PMIC.
>  
> +config REGULATOR_MC13892
> +	tristate "Support regulators on Freescale MC13892 PMIC"
> +	depends on MFD_MC13XXX
> +	select REGULATOR_MC13XXX_CORE
> +	help
> +	  Say y here to support the regulators found on the Freescale MC13892
> +	  PMIC.
> +
>  config REGULATOR_AB3100
>  	tristate "ST-Ericsson AB3100 Regulator functions"
>  	depends on AB3100_CORE
> diff --git a/drivers/regulator/Makefile b/drivers/regulator/Makefile
> index 11876be..3107480 100644
> --- a/drivers/regulator/Makefile
> +++ b/drivers/regulator/Makefile
> @@ -30,6 +30,7 @@ obj-$(CONFIG_REGULATOR_DA903X)	+= da903x.o
>  obj-$(CONFIG_REGULATOR_PCF50633) += pcf50633-regulator.o
>  obj-$(CONFIG_REGULATOR_PCAP) += pcap-regulator.o
>  obj-$(CONFIG_REGULATOR_MC13783) += mc13783-regulator.o
> +obj-$(CONFIG_REGULATOR_MC13892) += mc13892-regulator.o
>  obj-$(CONFIG_REGULATOR_MC13XXX_CORE) +=  mc13xxx-regulator-core.o
>  obj-$(CONFIG_REGULATOR_AB3100) += ab3100.o
>  
> diff --git a/drivers/regulator/mc13892-regulator.c b/drivers/regulator/mc13892-regulator.c
> new file mode 100644
> index 0000000..1b23170
> --- /dev/null
> +++ b/drivers/regulator/mc13892-regulator.c
> @@ -0,0 +1,644 @@
> +/*
> + * Regulator Driver for Freescale MC13892 PMIC
> + *
> + * Copyright 2010 Yong Shen <yong.shen@linaro.org>
> + *
> + * Based on draft driver from Arnaud Patard <arnaud.patard@rtp-net.org>
> + *
> + * This program is free software; you can redistribute it and/or modify
> + * it under the terms of the GNU General Public License version 2 as
> + * published by the Free Software Foundation.
> + */
> +
> +#include <linux/mfd/mc13892.h>
> +#include <linux/regulator/machine.h>
> +#include <linux/regulator/driver.h>
> +#include <linux/platform_device.h>
> +#include <linux/kernel.h>
> +#include <linux/slab.h>
> +#include <linux/init.h>
> +#include <linux/err.h>
> +#include "mc13xxx.h"
> +
> +#define MC13892_REVISION				7
> +
> +#define MC13892_POWERCTL0				13
> +#define MC13892_POWERCTL0_USEROFFSPI		3
> +#define MC13892_POWERCTL0_VCOINCELLVSEL		20
> +#define MC13892_POWERCTL0_VCOINCELLVSEL_M		(7<<20)
> +#define MC13892_POWERCTL0_VCOINCELLEN		(1<<23)
> +
> +#define MC13892_SWITCHERS0_SWxHI			(1<<23)
> +
> +#define MC13892_SWITCHERS0				24
> +#define MC13892_SWITCHERS0_SW1VSEL			0
> +#define MC13892_SWITCHERS0_SW1VSEL_M		(0x1f<<0)
> +#define MC13892_SWITCHERS0_SW1HI			(1<<23)
> +#define MC13892_SWITCHERS0_SW1EN		0
> +
> +#define MC13892_SWITCHERS1				25
> +#define MC13892_SWITCHERS1_SW2VSEL			0
> +#define MC13892_SWITCHERS1_SW2VSEL_M		(0x1f<<0)
> +#define MC13892_SWITCHERS1_SW2HI			(1<<23)
> +#define MC13892_SWITCHERS1_SW2EN		0
> +
> +#define MC13892_SWITCHERS2				26
> +#define MC13892_SWITCHERS2_SW3VSEL			0
> +#define MC13892_SWITCHERS2_SW3VSEL_M		(0x1f<<0)
> +#define MC13892_SWITCHERS2_SW3HI			(1<<23)
> +#define MC13892_SWITCHERS2_SW3EN		0
> +
> +#define MC13892_SWITCHERS3				27
> +#define MC13892_SWITCHERS3_SW4VSEL			0
> +#define MC13892_SWITCHERS3_SW4VSEL_M		(0x1f<<0)
> +#define MC13892_SWITCHERS3_SW4HI			(1<<23)
> +#define MC13892_SWITCHERS3_SW4EN		0
> +
> +#define MC13892_SWITCHERS4				28
> +#define MC13892_SWITCHERS4_SW1MODE			0
> +#define MC13892_SWITCHERS4_SW1MODE_AUTO		(8<<0)
> +#define MC13892_SWITCHERS4_SW1MODE_M		(0xf<<0)
> +#define MC13892_SWITCHERS4_SW2MODE			10
> +#define MC13892_SWITCHERS4_SW2MODE_AUTO		(8<<10)
> +#define MC13892_SWITCHERS4_SW2MODE_M		(0xf<<10)
> +
> +#define MC13892_SWITCHERS5				29
> +#define MC13892_SWITCHERS5_SW3MODE			0
> +#define MC13892_SWITCHERS5_SW3MODE_AUTO		(8<<0)
> +#define MC13892_SWITCHERS5_SW3MODE_M		(0xf<<0)
> +#define MC13892_SWITCHERS5_SW4MODE			8
> +#define MC13892_SWITCHERS5_SW4MODE_AUTO		(8<<8)
> +#define MC13892_SWITCHERS5_SW4MODE_M		(0xf<<8)
> +#define MC13892_SWITCHERS5_SWBSTEN			(1<<20)
> +
> +
This double blank line is inconsitent.  If you want you can better add a
comment here (IMHO).

> +#define MC13892_REGULATORSETTING0			30
> +#define MC13892_REGULATORSETTING0_VGEN1VSEL		0
> +#define MC13892_REGULATORSETTING0_VDIGVSEL		4
> +#define MC13892_REGULATORSETTING0_VGEN2VSEL		6
> +#define MC13892_REGULATORSETTING0_VPLLVSEL		9
> +#define MC13892_REGULATORSETTING0_VUSB2VSEL		11
> +#define MC13892_REGULATORSETTING0_VGEN3VSEL		14
> +#define MC13892_REGULATORSETTING0_VCAMVSEL		16
> +
> +#define MC13892_REGULATORSETTING0_VGEN1VSEL_M	(3<<0)
> +#define MC13892_REGULATORSETTING0_VDIGVSEL_M	(3<<4)
> +#define MC13892_REGULATORSETTING0_VGEN2VSEL_M	(7<<6)
> +#define MC13892_REGULATORSETTING0_VPLLVSEL_M	(3<<9)
> +#define MC13892_REGULATORSETTING0_VUSB2VSEL_M	(3<<11)
> +#define MC13892_REGULATORSETTING0_VGEN3VSEL_M	(1<<14)
> +#define MC13892_REGULATORSETTING0_VCAMVSEL_M	(3<<16)
> +
> +#define MC13892_REGULATORSETTING1			31
> +#define MC13892_REGULATORSETTING1_VVIDEOVSEL	2
> +#define MC13892_REGULATORSETTING1_VAUDIOVSEL	4
> +#define MC13892_REGULATORSETTING1_VSDVSEL		6
> +
> +#define MC13892_REGULATORSETTING1_VVIDEOVSEL_M	(3<<2)
> +#define MC13892_REGULATORSETTING1_VAUDIOVSEL_M	(3<<4)
> +#define MC13892_REGULATORSETTING1_VSDVSEL_M		(7<<6)
> +
> +#define MC13892_REGULATORMODE0			32
> +#define MC13892_REGULATORMODE0_VGEN1EN		(1<<0)
> +#define MC13892_REGULATORMODE0_VGEN1STDBY		(1<<1)
> +#define MC13892_REGULATORMODE0_VGEN1MODE		(1<<2)
> +#define MC13892_REGULATORMODE0_VIOHIEN		(1<<3)
> +#define MC13892_REGULATORMODE0_VIOHISTDBY		(1<<4)
> +#define MC13892_REGULATORMODE0_VIOHIMODE		(1<<5)
> +#define MC13892_REGULATORMODE0_VDIGEN		(1<<9)
> +#define MC13892_REGULATORMODE0_VDIGSTDBY		(1<<10)
> +#define MC13892_REGULATORMODE0_VDIGMODE		(1<<11)
> +#define MC13892_REGULATORMODE0_VGEN2EN		(1<<12)
> +#define MC13892_REGULATORMODE0_VGEN2STDBY		(1<<13)
> +#define MC13892_REGULATORMODE0_VGEN2MODE		(1<<14)
> +#define MC13892_REGULATORMODE0_VPLLEN		(1<<15)
> +#define MC13892_REGULATORMODE0_VPLLSTDBY		(1<<16)
> +#define MC13892_REGULATORMODE0_VPLLMODE		(1<<17)
> +#define MC13892_REGULATORMODE0_VUSB2EN		(1<<18)
> +#define MC13892_REGULATORMODE0_VUSB2STDBY		(1<<19)
> +#define MC13892_REGULATORMODE0_VUSB2MODE		(1<<20)
> +
> +#define MC13892_REGULATORMODE1			33
> +#define MC13892_REGULATORMODE1_VGEN3EN		(1<<0)
> +#define MC13892_REGULATORMODE1_VGEN3STDBY		(1<<1)
> +#define MC13892_REGULATORMODE1_VGEN3MODE		(1<<2)
> +#define MC13892_REGULATORMODE1_VCAMEN		(1<<6)
> +#define MC13892_REGULATORMODE1_VCAMSTDBY		(1<<7)
> +#define MC13892_REGULATORMODE1_VCAMMODE		(1<<8)
> +#define MC13892_REGULATORMODE1_VCAMCONFIGEN		(1<<9)
> +#define MC13892_REGULATORMODE1_VVIDEOEN		(1<<12)
> +#define MC13892_REGULATORMODE1_VVIDEOSTDBY		(1<<13)
> +#define MC13892_REGULATORMODE1_VVIDEOMODE		(1<<14)
> +#define MC13892_REGULATORMODE1_VAUDIOEN		(1<<15)
> +#define MC13892_REGULATORMODE1_VAUDIOSTDBY		(1<<16)
> +#define MC13892_REGULATORMODE1_VAUDIOMODE		(1<<17)
> +#define MC13892_REGULATORMODE1_VSDEN		(1<<18)
> +#define MC13892_REGULATORMODE1_VSDSTDBY		(1<<19)
> +#define MC13892_REGULATORMODE1_VSDMODE		(1<<20)
> +
> +#define MC13892_POWERMISC				34
> +#define MC13892_POWERMISC_GPO1EN			(1<<6)
> +#define MC13892_POWERMISC_GPO2EN			(1<<8)
> +#define MC13892_POWERMISC_GPO3EN			(1<<10)
> +#define MC13892_POWERMISC_GPO4EN			(1<<12)
> +#define MC13892_POWERMISC_PWGT1SPIEN		(1<<15)
> +#define MC13892_POWERMISC_PWGT2SPIEN		(1<<16)
> +#define MC13892_POWERMISC_GPO4ADINEN		(1<<21)
> +
> +#define MC13892_POWERMISC_PWGTSPI_M			(3 << 15)
> +
> +#define MC13892_USB1				50
> +#define MC13892_USB1_VUSBEN				(1<<3)
> +
> +static const int mc13892_vcoincell[] = {
> +	2500000, 2700000, 2800000, 2900000, 3000000, 3100000,
> +	3200000, 3300000,
> +};
> +
> +static const int mc13892_sw1[] = {
> +	600000,   625000,  650000,  675000,  700000,  725000,
> +	750000,   775000,  800000,  825000,  850000,  875000,
> +	900000,   925000,  950000,  975000, 1000000, 1025000,
> +	1050000, 1075000, 1100000, 1125000, 1150000, 1175000,
> +	1200000, 1225000, 1250000, 1275000, 1300000, 1325000,
> +	1350000, 1375000
> +};
> +
> +static const int mc13892_sw[] = {
> +	600000,   625000,  650000,  675000,  700000,  725000,
> +	750000,   775000,  800000,  825000,  850000,  875000,
> +	900000,   925000,  950000,  975000, 1000000, 1025000,
> +	1050000, 1075000, 1100000, 1125000, 1150000, 1175000,
> +	1200000, 1225000, 1250000, 1275000, 1300000, 1325000,
> +	1350000, 1375000, 1400000, 1425000, 1450000, 1475000,
> +	1500000, 1525000, 1550000, 1575000, 1600000, 1625000,
> +	1650000, 1675000, 1700000, 1725000, 1750000, 1775000,
> +	1800000, 1825000, 1850000, 1875000
> +};
> +
> +static const int mc13892_swbst[] = {
> +	5000000,
> +};
> +
> +static const int mc13892_viohi[] = {
> +	2775000,
> +};
> +
> +static const int mc13892_vpll[] = {
> +	1050000, 1250000, 1650000, 1800000,
> +};
> +
> +static const int mc13892_vdig[] = {
> +	1050000, 1250000, 1650000, 1800000,
> +};
> +
> +static const int mc13892_vsd[] = {
> +	1800000, 2000000, 2600000, 2700000,
> +	2800000, 2900000, 3000000, 3150000,
> +};
> +
> +static const int mc13892_vusb2[] = {
> +	2400000, 2600000, 2700000, 2775000,
> +};
> +
> +static const int mc13892_vvideo[] = {
> +	2700000, 2775000, 2500000, 2600000,
> +};
> +
> +static const int mc13892_vaudio[] = {
> +	2300000, 2500000, 2775000, 3000000,
> +};
> +
> +static const int mc13892_vcam[] = {
> +	2500000, 2600000, 2750000, 3000000,
> +};
> +
> +static const int mc13892_vgen1[] = {
> +	1200000, 1500000, 2775000, 3150000,
> +};
> +
> +static const int mc13892_vgen2[] = {
> +	1200000, 1500000, 1600000, 1800000,
> +	2700000, 2800000, 3000000, 3150000,
> +};
> +
> +static const int mc13892_vgen3[] = {
> +	1800000, 2900000,
> +};
> +
> +static const int mc13892_vusb[] = {
> +	3300000,
> +};
> +
> +static const int mc13892_gpo[] = {
> +	2750000,
> +};
> +
> +static const int mc13892_pwgtdrv[] = {
> +	5000000,
> +};
> +
> +static struct regulator_ops mc13892_gpo_regulator_ops;
> +/* sw regulators need special care due to the "hi bit" */
> +static struct regulator_ops mc13892_sw_regulator_ops;
> +
> +
> +#define MC13892_FIXED_DEFINE(name, reg, voltages)\
> +	MC13xxx_FIXED_DEFINE(MC13892_, name, reg, voltages, \
> +			mc13xxx_fixed_regulator_ops)
> +
> +#define MC13892_GPO_DEFINE(name, reg, voltages)		\
> +	MC13xxx_GPO_DEFINE(MC13892_, name, reg, voltages, \
> +			mc13892_gpo_regulator_ops)
> +
> +#define MC13892_SW_DEFINE(name, reg, vsel_reg, voltages)		\
> +	MC13xxx_DEFINE(MC13892_, name, reg, vsel_reg, voltages, \
> +			mc13892_sw_regulator_ops)
> +
> +#define MC13892_DEFINE_REGU(name, reg, vsel_reg, voltages)		\
> +	MC13xxx_DEFINE(MC13892_, name, reg, vsel_reg, voltages, \
> +			mc13xxx_regulator_ops)
> +
> +static struct mc13xxx_regulator mc13892_regulators[] = {
> +	MC13892_DEFINE_REGU(VCOINCELL, POWERCTL0, POWERCTL0,		\
> +			    mc13892_vcoincell),
> +	MC13892_SW_DEFINE(SW1, SWITCHERS0, SWITCHERS0, mc13892_sw1),
> +	MC13892_SW_DEFINE(SW2, SWITCHERS1, SWITCHERS1, mc13892_sw),
> +	MC13892_SW_DEFINE(SW3, SWITCHERS2, SWITCHERS2, mc13892_sw),
> +	MC13892_SW_DEFINE(SW4, SWITCHERS3, SWITCHERS3, mc13892_sw),
> +	MC13892_FIXED_DEFINE(SWBST, SWITCHERS5, mc13892_swbst),
> +	MC13892_FIXED_DEFINE(VIOHI, REGULATORMODE0, mc13892_viohi),
> +	MC13892_DEFINE_REGU(VPLL, REGULATORMODE0, REGULATORSETTING0,	\
> +			    mc13892_vpll),
> +	MC13892_DEFINE_REGU(VDIG, REGULATORMODE0, REGULATORSETTING0,	\
> +			    mc13892_vdig),
> +	MC13892_DEFINE_REGU(VSD, REGULATORMODE1, REGULATORSETTING1,	\
> +			    mc13892_vsd),
> +	MC13892_DEFINE_REGU(VUSB2, REGULATORMODE0, REGULATORSETTING0,	\
> +			    mc13892_vusb2),
> +	MC13892_DEFINE_REGU(VVIDEO, REGULATORMODE1, REGULATORSETTING1,	\
> +			    mc13892_vvideo),
> +	MC13892_DEFINE_REGU(VAUDIO, REGULATORMODE1, REGULATORSETTING1,	\
> +			    mc13892_vaudio),
> +	MC13892_DEFINE_REGU(VCAM, REGULATORMODE1, REGULATORSETTING0, \
> +			    mc13892_vcam),
> +	MC13892_DEFINE_REGU(VGEN1, REGULATORMODE0, REGULATORSETTING0,	\
> +			    mc13892_vgen1),
> +	MC13892_DEFINE_REGU(VGEN2, REGULATORMODE0, REGULATORSETTING0,	\
> +			    mc13892_vgen2),
> +	MC13892_DEFINE_REGU(VGEN3, REGULATORMODE1, REGULATORSETTING0,	\
> +			    mc13892_vgen3),
> +	MC13892_FIXED_DEFINE(VUSB, USB1, mc13892_vusb),
> +	MC13892_GPO_DEFINE(GPO1, POWERMISC, mc13892_gpo),
> +	MC13892_GPO_DEFINE(GPO2, POWERMISC, mc13892_gpo),
> +	MC13892_GPO_DEFINE(GPO3, POWERMISC, mc13892_gpo),
> +	MC13892_GPO_DEFINE(GPO4, POWERMISC, mc13892_gpo),
> +	MC13892_GPO_DEFINE(PWGT1SPI, POWERMISC, mc13892_pwgtdrv),
> +	MC13892_GPO_DEFINE(PWGT2SPI, POWERMISC, mc13892_pwgtdrv),
> +};
> +
> +int mc13892_powermisc_rmw(struct mc13xxx_regulator_priv *priv, u32 mask,
> +									u32 val)
How do you decide how many tabs are used for indention?  This seems to
be inconsistent over the patch.  The usual conventions I know of are:
	- align to opening paren
	- two tabs
(I prefer the latter because if the function name (or it's attributes)
change there is no need to relayout the lines of the arguments.

> +{
> +	struct mc13xxx *mc13892 = priv->mc13xxx;
> +	int ret;
> +	u32 valread;
> +
> +	BUG_ON(val & ~mask);
> +
> +	ret = mc13xxx_reg_read(mc13892, MC13892_POWERMISC, &valread);
> +	if (ret)
> +		return ret;
> +
> +	/* Update the stored state for Power Gates. */
> +	priv->powermisc_pwgt_state =
> +				(priv->powermisc_pwgt_state & ~mask) | val;
Here a single tab more than the preceeding line is usual.

> +	priv->powermisc_pwgt_state &= MC13892_POWERMISC_PWGTSPI_M;
> +
> +	/* Construct the new register value */
> +	valread = (valread & ~mask) | val;
> +	/* Overwrite the PWGTxEN with the stored version */
> +	valread = (valread & ~MC13892_POWERMISC_PWGTSPI_M) |
> +						priv->powermisc_pwgt_state;
> +
> +	return mc13xxx_reg_write(mc13892, MC13892_POWERMISC, valread);
> +}
> +
> +static int mc13892_gpo_regulator_enable(struct regulator_dev *rdev)
> +{
> +	struct mc13xxx_regulator_priv *priv = rdev_get_drvdata(rdev);
> +	int id = rdev_get_id(rdev);
> +	int ret;
> +	u32 en_val = mc13892_regulators[id].enable_bit;
> +	u32 mask = mc13892_regulators[id].enable_bit;
> +
> +	dev_dbg(rdev_get_dev(rdev), "%s id: %d\n", __func__, id);
> +
> +	/* Power Gate enable value is 0 */
> +	if (id == MC13892_PWGT1SPI ||
> +	    id == MC13892_PWGT2SPI)
> +		en_val = 0;
> +
> +	if (id == MC13892_GPO4)
> +		mask |= MC13892_POWERMISC_GPO4ADINEN;
> +
> +	mc13xxx_lock(priv->mc13xxx);
> +	ret = mc13892_powermisc_rmw(priv, mask, en_val);
> +	mc13xxx_unlock(priv->mc13xxx);
> +
> +	return ret;
> +}
> +
> +static int mc13892_gpo_regulator_disable(struct regulator_dev *rdev)
> +{
> +	struct mc13xxx_regulator_priv *priv = rdev_get_drvdata(rdev);
> +	int id = rdev_get_id(rdev);
> +	int ret;
> +	u32 dis_val = 0;
> +
> +	dev_dbg(rdev_get_dev(rdev), "%s id: %d\n", __func__, id);
> +
> +	/* Power Gate disable value is 1 */
> +	if (id == MC13892_PWGT1SPI ||
> +	    id == MC13892_PWGT2SPI)
> +		dis_val = mc13892_regulators[id].enable_bit;
> +
> +	mc13xxx_lock(priv->mc13xxx);
> +	ret = mc13892_powermisc_rmw(priv, mc13892_regulators[id].enable_bit,
> +					dis_val);
> +	mc13xxx_unlock(priv->mc13xxx);
> +
> +	return ret;
> +}
> +
> +static int mc13892_gpo_regulator_is_enabled(struct regulator_dev *rdev)
> +{
> +	struct mc13xxx_regulator_priv *priv = rdev_get_drvdata(rdev);
> +	int ret, id = rdev_get_id(rdev);
> +	unsigned int val;
> +
> +	mc13xxx_lock(priv->mc13xxx);
> +	ret = mc13xxx_reg_read(priv->mc13xxx, mc13892_regulators[id].reg, &val);
> +	mc13xxx_unlock(priv->mc13xxx);
> +
> +	if (ret)
> +		return ret;
> +
> +	/* Power Gates state is stored in powermisc_pwgt_state
> +	 * where the meaning of bits is negated */
> +	val = (val & ~MC13892_POWERMISC_PWGTSPI_M) |
> +	      (priv->powermisc_pwgt_state ^ MC13892_POWERMISC_PWGTSPI_M);
> +
> +	return (val & mc13892_regulators[id].enable_bit) != 0;
> +}
> +
> +
> +static struct regulator_ops mc13892_gpo_regulator_ops = {
> +	.enable = mc13892_gpo_regulator_enable,
> +	.disable = mc13892_gpo_regulator_disable,
> +	.is_enabled = mc13892_gpo_regulator_is_enabled,
> +	.list_voltage = mc13xxx_regulator_list_voltage,
> +	.set_voltage = mc13xxx_fixed_regulator_set_voltage,
> +	.get_voltage = mc13xxx_fixed_regulator_get_voltage,
> +};
> +
> +static int mc13892_sw_regulator_get_voltage(struct regulator_dev *rdev)
> +{
> +	struct mc13xxx_regulator_priv *priv = rdev_get_drvdata(rdev);
> +	int ret, id = rdev_get_id(rdev);
> +	unsigned int val, hi;
> +
> +	dev_dbg(rdev_get_dev(rdev), "%s id: %d\n", __func__, id);
> +
> +	mc13xxx_lock(priv->mc13xxx);
> +	ret = mc13xxx_reg_read(priv->mc13xxx,
> +				mc13892_regulators[id].vsel_reg, &val);
> +	mc13xxx_unlock(priv->mc13xxx);
> +	if (ret)
> +		return ret;
> +
> +	hi  = val & MC13892_SWITCHERS0_SWxHI;
> +	val = (val & mc13892_regulators[id].vsel_mask)
> +		>> mc13892_regulators[id].vsel_shift;
> +
> +	dev_dbg(rdev_get_dev(rdev), "%s id: %d val: %d\n", __func__, id, val);
> +
> +	if (hi)
> +		val = (25000 * val) + 1100000;
> +	else
> +		val = (25000 * val) + 600000;
> +
> +	return val;
> +}
> +
> +static int mc13892_sw_regulator_set_voltage(struct regulator_dev *rdev,
> +						int min_uV, int max_uV)
> +{
> +	struct mc13xxx_regulator_priv *priv = rdev_get_drvdata(rdev);
> +	int hi, value, val, mask, id = rdev_get_id(rdev);
> +	int ret;
> +
> +	dev_dbg(rdev_get_dev(rdev), "%s id: %d min_uV: %d max_uV: %d\n",
> +		__func__, id, min_uV, max_uV);
> +
> +	/* Find the best index */
> +	value = mc13xxx_get_best_voltage_index(rdev, min_uV, max_uV);
> +	dev_dbg(rdev_get_dev(rdev), "%s best value: %d\n", __func__, value);
> +	if (value < 0)
> +		return value;
> +
> +	value = mc13892_regulators[id].voltages[value];
> +
> +	mc13xxx_lock(priv->mc13xxx);
> +	ret = mc13xxx_reg_read(priv->mc13xxx,
> +				mc13892_regulators[id].vsel_reg, &val);
> +	if (ret)
> +		goto err;
> +
> +	hi  = val & MC13892_SWITCHERS0_SWxHI;
> +	if (value > 1375)
> +		hi = 1;
> +	if (value < 1100)
> +		hi = 0;
> +
> +	if (hi) {
> +		value = (value - 1100000) / 25000;
> +		value |= MC13892_SWITCHERS0_SWxHI;
> +	} else
> +		value = (value - 600000) / 25000;
> +
> +	mask = mc13892_regulators[id].vsel_mask | MC13892_SWITCHERS0_SWxHI;
> +	ret = mc13xxx_reg_rmw(priv->mc13xxx, mc13892_regulators[id].vsel_reg,
> +			mask,
> +			value << mc13892_regulators[id].vsel_shift);
The content of the two preceeding lines fit on a single line.

> +err:
> +	mc13xxx_unlock(priv->mc13xxx);
> +
> +	return ret;
> +}
> +
> +static struct regulator_ops mc13892_sw_regulator_ops = {
> +	.is_enabled = mc13xxx_sw_regulator_is_enabled,
> +	.list_voltage = mc13xxx_regulator_list_voltage,
> +	.set_voltage = mc13892_sw_regulator_set_voltage,
> +	.get_voltage = mc13892_sw_regulator_get_voltage,
> +};
> +
> +static int mc13892_vcam_set_mode(struct regulator_dev *rdev, unsigned int mode)
> +{
> +	unsigned int en_val = 0;
> +	struct mc13xxx_regulator_priv *priv = rdev_get_drvdata(rdev);
> +	int ret, id = rdev_get_id(rdev);
> +
> +	if (mode == REGULATOR_MODE_FAST)
> +		en_val = MC13892_REGULATORMODE1_VCAMCONFIGEN;
> +
> +	mc13xxx_lock(priv->mc13xxx);
> +	ret = mc13xxx_reg_rmw(priv->mc13xxx, mc13892_regulators[id].reg,
> +			MC13892_REGULATORMODE1_VCAMCONFIGEN,
> +			en_val);
> +	mc13xxx_unlock(priv->mc13xxx);
> +
> +	return ret;
> +}
> +
> +unsigned int mc13892_vcam_get_mode(struct regulator_dev *rdev)
> +{
> +	struct mc13xxx_regulator_priv *priv = rdev_get_drvdata(rdev);
> +	int ret, id = rdev_get_id(rdev);
> +	unsigned int val;
> +
> +	mc13xxx_lock(priv->mc13xxx);
> +	ret = mc13xxx_reg_read(priv->mc13xxx, mc13892_regulators[id].reg, &val);
> +	mc13xxx_unlock(priv->mc13xxx);
> +
> +	if (ret)
> +		return ret;
> +
> +	if (val & MC13892_REGULATORMODE1_VCAMCONFIGEN)
> +		return REGULATOR_MODE_FAST;
> +
> +	return REGULATOR_MODE_NORMAL;
> +}
> +
> +
> +static int __devinit mc13892_regulator_probe(struct platform_device *pdev)
> +{
> +	struct mc13xxx_regulator_priv *priv;
> +	struct mc13xxx *mc13892 = dev_get_drvdata(pdev->dev.parent);
> +	struct mc13xxx_regulator_platform_data *pdata =
> +		dev_get_platdata(&pdev->dev);
> +	struct mc13xxx_regulator_init_data *init_data;
> +	int i, ret;
> +	u32 val;
> +
> +	priv = kzalloc(sizeof(*priv) +
> +			pdata->num_regulators * sizeof(priv->regulators[0]),
> +			GFP_KERNEL);
> +	if (!priv)
> +		return -ENOMEM;
> +
> +	priv->mc13xxx_regulators = mc13892_regulators;
> +	priv->mc13xxx = mc13892;
> +
> +	mc13xxx_lock(mc13892);
> +	ret = mc13xxx_reg_read(mc13892, MC13892_REVISION, &val);
> +	mc13xxx_unlock(mc13892);
You can keep holding the lock here.
> +	if (ret)
> +		goto err_alloc;
err_alloc seems wrong.  The goto is taken when reading the revision
register fails, not on a failed allocation.
> +
> +	/* enable switch auto mode */
> +	if ((val & 0x0000FFFF) == 0x45d0) {
> +		mc13xxx_lock(mc13892);
> +		ret = mc13xxx_reg_rmw(mc13892, MC13892_SWITCHERS4,
> +			MC13892_SWITCHERS4_SW1MODE_M |
> +			MC13892_SWITCHERS4_SW2MODE_M,
> +			MC13892_SWITCHERS4_SW1MODE_AUTO |
> +			MC13892_SWITCHERS4_SW2MODE_AUTO);
> +		mc13xxx_unlock(mc13892);
ditto

> +		if (ret)
> +			goto err_alloc;
again, err_alloc is the wrong name

> +
> +		mc13xxx_lock(mc13892);
> +		mc13xxx_reg_rmw(mc13892, MC13892_SWITCHERS5,
> +			MC13892_SWITCHERS5_SW3MODE_M |
> +			MC13892_SWITCHERS5_SW4MODE_M,
> +			MC13892_SWITCHERS5_SW3MODE_AUTO |
> +			MC13892_SWITCHERS5_SW4MODE_AUTO);
> +		mc13xxx_unlock(mc13892);
> +		if (ret)
> +			goto err_alloc;
ditto

> +	}
> +
> +	mc13892_regulators[MC13892_VCAM].desc.ops->set_mode
> +		= mc13892_vcam_set_mode;
> +	mc13892_regulators[MC13892_VCAM].desc.ops->get_mode
> +		= mc13892_vcam_get_mode;
> +	for (i = 0; i < pdata->num_regulators; i++) {
> +		init_data = &pdata->regulators[i];
> +		priv->regulators[i] = regulator_register(
> +				&mc13892_regulators[init_data->id].desc,
> +				&pdev->dev, init_data->init_data, priv);
> +
> +		if (IS_ERR(priv->regulators[i])) {
> +			dev_err(&pdev->dev, "failed to register regulator %s\n",
> +				mc13892_regulators[i].desc.name);
> +			ret = PTR_ERR(priv->regulators[i]);
> +			goto err;
> +		}
> +	}
> +
> +	platform_set_drvdata(pdev, priv);
> +
> +	return 0;
> +err:
> +	while (--i >= 0)
> +		regulator_unregister(priv->regulators[i]);
> +
> +err_alloc:
> +	kfree(priv);
> +
> +	return ret;
> +}
> +
> +static int __devexit mc13892_regulator_remove(struct platform_device *pdev)
> +{
> +	struct mc13xxx_regulator_priv *priv = platform_get_drvdata(pdev);
> +	struct mc13xxx_regulator_platform_data *pdata =
> +		dev_get_platdata(&pdev->dev);
> +	int i;
> +
> +	platform_set_drvdata(pdev, NULL);
> +
> +	for (i = 0; i < pdata->num_regulators; i++)
> +		regulator_unregister(priv->regulators[i]);
> +
> +	kfree(priv);
> +	return 0;
> +}
> +
> +static struct platform_driver mc13892_regulator_driver = {
> +	.driver	= {
> +		.name	= "mc13892-regulator",
> +		.owner	= THIS_MODULE,
> +	},
> +	.remove	= __devexit_p(mc13892_regulator_remove),
> +	.probe	= mc13892_regulator_probe,
> +};
> +
> +static int __init mc13892_regulator_init(void)
> +{
> +	return platform_driver_register(&mc13892_regulator_driver);
> +}
> +subsys_initcall(mc13892_regulator_init);
> +
> +static void __exit mc13892_regulator_exit(void)
> +{
> +	platform_driver_unregister(&mc13892_regulator_driver);
> +}
> +module_exit(mc13892_regulator_exit);
> +
> +MODULE_LICENSE("GPL v2");
> +MODULE_AUTHOR("Yong Shen <yong.shen@linaro.org>");
> +MODULE_DESCRIPTION("Regulator Driver for Freescale MC13892 PMIC");
> +MODULE_ALIAS("platform:mc13892-regulator");
> diff --git a/include/linux/mfd/mc13892.h b/include/linux/mfd/mc13892.h
> new file mode 100644
> index 0000000..7df13e8
> --- /dev/null
> +++ b/include/linux/mfd/mc13892.h
> @@ -0,0 +1,38 @@
> +/*
> + * Copyright 2010 Yong Shen <yong.shen@linaro.org>
> + *
> + * This program is free software; you can redistribute it and/or modify it under
> + * the terms of the GNU General Public License version 2 as published by the
> + * Free Software Foundation.
> + */
> +
> +#ifndef __LINUX_MFD_MC13892_H
> +#define __LINUX_MFD_MC13892_H
newline here please
> +#include <linux/mfd/mc13xxx.h>
> +
> +#define MC13892_SW1		0
> +#define MC13892_SW2		1
> +#define MC13892_SW3		2
> +#define MC13892_SW4		3
> +#define MC13892_SWBST	4
> +#define MC13892_VIOHI	5
> +#define MC13892_VPLL	6
> +#define MC13892_VDIG	7
> +#define MC13892_VSD	8
> +#define MC13892_VUSB2	9
> +#define MC13892_VVIDEO	10
> +#define MC13892_VAUDIO	11
> +#define MC13892_VCAM	12
> +#define MC13892_VGEN1	13
> +#define MC13892_VGEN2	14
> +#define MC13892_VGEN3	15
> +#define MC13892_VUSB	16
> +#define MC13892_GPO1	17
> +#define MC13892_GPO2	18
> +#define MC13892_GPO3	19
> +#define MC13892_GPO4	20
> +#define MC13892_PWGT1SPI	21
> +#define MC13892_PWGT2SPI	22
> +#define MC13892_VCOINCELL	23
I thought you wanted to put these somewhere below drivers/regulator/.

> +
> +#endif
> -- 
> 1.7.0.4
> 
> 
> 

-- 
Pengutronix e.K.                           | Uwe Kleine-K?nig            |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |

^ permalink raw reply	[flat|nested] 20+ messages in thread

* [PATCHv3] support PMIC mc13892
  2010-12-08  3:21 ` [PATCHv3] support PMIC mc13892 yong.shen at freescale.com
  2010-12-08  3:28   ` Yong Shen
  2010-12-08  9:12   ` Uwe Kleine-König
@ 2010-12-08  9:25   ` Samuel Ortiz
  2010-12-08  9:59     ` Yong Shen
  2010-12-09 10:25   ` Sascha Hauer
  3 siblings, 1 reply; 20+ messages in thread
From: Samuel Ortiz @ 2010-12-08  9:25 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Yong,

On Wed, Dec 08, 2010 at 11:21:00AM +0800, yong.shen at freescale.com wrote:
> From: Yong Shen <yong.shen@linaro.org>
> 
> add support for mc13892, tested on mx51 babbage board
> 
> Signed-off-by: Arnaud Patard <arnaud.patard@rtp-net.org>
> Signed-off-by: Yong Shen <yong.shen@linaro.org>
If Liam is taking those patches, please add my Acked-by for the MFD part.

Cheers,
Samuel.

-- 
Intel Open Source Technology Centre
http://oss.intel.com/

^ permalink raw reply	[flat|nested] 20+ messages in thread

* [PATCHv3] support PMIC mc13892
  2010-12-08  9:12   ` Uwe Kleine-König
@ 2010-12-08  9:51     ` Yong Shen
  2010-12-08 10:01     ` Mark Brown
  1 sibling, 0 replies; 20+ messages in thread
From: Yong Shen @ 2010-12-08  9:51 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Uwe,

It's good to get more refined comments. I acknowledge most of them.
please see inline feedback for some iterms.

2010/12/8 Uwe Kleine-K?nig <u.kleine-koenig@pengutronix.de>:
> Hello,
>
> Can you please add "regulator:" to the subject?
>
> Some of the following comments are admittedly a bit picky, still I'd
> like them fixed.
>
> On Wed, Dec 08, 2010 at 11:21:00AM +0800, yong.shen at freescale.com wrote:
>> From: Yong Shen <yong.shen@linaro.org>
>>
>> add support for mc13892, tested on mx51 babbage board
>>
>> Signed-off-by: Arnaud Patard <arnaud.patard@rtp-net.org>
>> Signed-off-by: Yong Shen <yong.shen@linaro.org>
>> ---
>> ?drivers/regulator/Kconfig ? ? ? ? ? ? | ? ?8 +
>> ?drivers/regulator/Makefile ? ? ? ? ? ?| ? ?1 +
>> ?drivers/regulator/mc13892-regulator.c | ?644 +++++++++++++++++++++++++++++++++
>> ?include/linux/mfd/mc13892.h ? ? ? ? ? | ? 38 ++
>> ?4 files changed, 691 insertions(+), 0 deletions(-)
>> ?create mode 100644 drivers/regulator/mc13892-regulator.c
>> ?create mode 100644 include/linux/mfd/mc13892.h
>>
>> diff --git a/drivers/regulator/Kconfig b/drivers/regulator/Kconfig
>> index 6e54253..1673a4f 100644
>> --- a/drivers/regulator/Kconfig
>> +++ b/drivers/regulator/Kconfig
>> @@ -197,6 +197,14 @@ config REGULATOR_MC13783
>> ? ? ? ? Say y here to support the regulators found on the Freescale MC13783
>> ? ? ? ? PMIC.
>>
>> +config REGULATOR_MC13892
>> + ? ? tristate "Support regulators on Freescale MC13892 PMIC"
>> + ? ? depends on MFD_MC13XXX
>> + ? ? select REGULATOR_MC13XXX_CORE
>> + ? ? help
>> + ? ? ? Say y here to support the regulators found on the Freescale MC13892
>> + ? ? ? PMIC.
>> +
>> ?config REGULATOR_AB3100
>> ? ? ? tristate "ST-Ericsson AB3100 Regulator functions"
>> ? ? ? depends on AB3100_CORE
>> diff --git a/drivers/regulator/Makefile b/drivers/regulator/Makefile
>> index 11876be..3107480 100644
>> --- a/drivers/regulator/Makefile
>> +++ b/drivers/regulator/Makefile
>> @@ -30,6 +30,7 @@ obj-$(CONFIG_REGULATOR_DA903X) ? ? ?+= da903x.o
>> ?obj-$(CONFIG_REGULATOR_PCF50633) += pcf50633-regulator.o
>> ?obj-$(CONFIG_REGULATOR_PCAP) += pcap-regulator.o
>> ?obj-$(CONFIG_REGULATOR_MC13783) += mc13783-regulator.o
>> +obj-$(CONFIG_REGULATOR_MC13892) += mc13892-regulator.o
>> ?obj-$(CONFIG_REGULATOR_MC13XXX_CORE) += ?mc13xxx-regulator-core.o
>> ?obj-$(CONFIG_REGULATOR_AB3100) += ab3100.o
>>
>> diff --git a/drivers/regulator/mc13892-regulator.c b/drivers/regulator/mc13892-regulator.c
>> new file mode 100644
>> index 0000000..1b23170
>> --- /dev/null
>> +++ b/drivers/regulator/mc13892-regulator.c
>> @@ -0,0 +1,644 @@
>> +/*
>> + * Regulator Driver for Freescale MC13892 PMIC
>> + *
>> + * Copyright 2010 Yong Shen <yong.shen@linaro.org>
>> + *
>> + * Based on draft driver from Arnaud Patard <arnaud.patard@rtp-net.org>
>> + *
>> + * This program is free software; you can redistribute it and/or modify
>> + * it under the terms of the GNU General Public License version 2 as
>> + * published by the Free Software Foundation.
>> + */
>> +
>> +#include <linux/mfd/mc13892.h>
>> +#include <linux/regulator/machine.h>
>> +#include <linux/regulator/driver.h>
>> +#include <linux/platform_device.h>
>> +#include <linux/kernel.h>
>> +#include <linux/slab.h>
>> +#include <linux/init.h>
>> +#include <linux/err.h>
>> +#include "mc13xxx.h"
>> +
>> +#define MC13892_REVISION ? ? ? ? ? ? ? ? ? ? ? ? ? ? 7
>> +
>> +#define MC13892_POWERCTL0 ? ? ? ? ? ? ? ? ? ? ? ? ? ?13
>> +#define MC13892_POWERCTL0_USEROFFSPI ? ? ? ? 3
>> +#define MC13892_POWERCTL0_VCOINCELLVSEL ? ? ? ? ? ? ?20
>> +#define MC13892_POWERCTL0_VCOINCELLVSEL_M ? ? ? ? ? ?(7<<20)
>> +#define MC13892_POWERCTL0_VCOINCELLEN ? ? ? ? ? ? ? ?(1<<23)
>> +
>> +#define MC13892_SWITCHERS0_SWxHI ? ? ? ? ? ? ? ? ? ? (1<<23)
>> +
>> +#define MC13892_SWITCHERS0 ? ? ? ? ? ? ? ? ? ? ? ? ? 24
>> +#define MC13892_SWITCHERS0_SW1VSEL ? ? ? ? ? ? ? ? ? 0
>> +#define MC13892_SWITCHERS0_SW1VSEL_M ? ? ? ? (0x1f<<0)
>> +#define MC13892_SWITCHERS0_SW1HI ? ? ? ? ? ? ? ? ? ? (1<<23)
>> +#define MC13892_SWITCHERS0_SW1EN ? ? ? ? ? ? 0
>> +
>> +#define MC13892_SWITCHERS1 ? ? ? ? ? ? ? ? ? ? ? ? ? 25
>> +#define MC13892_SWITCHERS1_SW2VSEL ? ? ? ? ? ? ? ? ? 0
>> +#define MC13892_SWITCHERS1_SW2VSEL_M ? ? ? ? (0x1f<<0)
>> +#define MC13892_SWITCHERS1_SW2HI ? ? ? ? ? ? ? ? ? ? (1<<23)
>> +#define MC13892_SWITCHERS1_SW2EN ? ? ? ? ? ? 0
>> +
>> +#define MC13892_SWITCHERS2 ? ? ? ? ? ? ? ? ? ? ? ? ? 26
>> +#define MC13892_SWITCHERS2_SW3VSEL ? ? ? ? ? ? ? ? ? 0
>> +#define MC13892_SWITCHERS2_SW3VSEL_M ? ? ? ? (0x1f<<0)
>> +#define MC13892_SWITCHERS2_SW3HI ? ? ? ? ? ? ? ? ? ? (1<<23)
>> +#define MC13892_SWITCHERS2_SW3EN ? ? ? ? ? ? 0
>> +
>> +#define MC13892_SWITCHERS3 ? ? ? ? ? ? ? ? ? ? ? ? ? 27
>> +#define MC13892_SWITCHERS3_SW4VSEL ? ? ? ? ? ? ? ? ? 0
>> +#define MC13892_SWITCHERS3_SW4VSEL_M ? ? ? ? (0x1f<<0)
>> +#define MC13892_SWITCHERS3_SW4HI ? ? ? ? ? ? ? ? ? ? (1<<23)
>> +#define MC13892_SWITCHERS3_SW4EN ? ? ? ? ? ? 0
>> +
>> +#define MC13892_SWITCHERS4 ? ? ? ? ? ? ? ? ? ? ? ? ? 28
>> +#define MC13892_SWITCHERS4_SW1MODE ? ? ? ? ? ? ? ? ? 0
>> +#define MC13892_SWITCHERS4_SW1MODE_AUTO ? ? ? ? ? ? ?(8<<0)
>> +#define MC13892_SWITCHERS4_SW1MODE_M ? ? ? ? (0xf<<0)
>> +#define MC13892_SWITCHERS4_SW2MODE ? ? ? ? ? ? ? ? ? 10
>> +#define MC13892_SWITCHERS4_SW2MODE_AUTO ? ? ? ? ? ? ?(8<<10)
>> +#define MC13892_SWITCHERS4_SW2MODE_M ? ? ? ? (0xf<<10)
>> +
>> +#define MC13892_SWITCHERS5 ? ? ? ? ? ? ? ? ? ? ? ? ? 29
>> +#define MC13892_SWITCHERS5_SW3MODE ? ? ? ? ? ? ? ? ? 0
>> +#define MC13892_SWITCHERS5_SW3MODE_AUTO ? ? ? ? ? ? ?(8<<0)
>> +#define MC13892_SWITCHERS5_SW3MODE_M ? ? ? ? (0xf<<0)
>> +#define MC13892_SWITCHERS5_SW4MODE ? ? ? ? ? ? ? ? ? 8
>> +#define MC13892_SWITCHERS5_SW4MODE_AUTO ? ? ? ? ? ? ?(8<<8)
>> +#define MC13892_SWITCHERS5_SW4MODE_M ? ? ? ? (0xf<<8)
>> +#define MC13892_SWITCHERS5_SWBSTEN ? ? ? ? ? ? ? ? ? (1<<20)
>> +
>> +
> This double blank line is inconsitent. ?If you want you can better add a
> comment here (IMHO).
>
>> +#define MC13892_REGULATORSETTING0 ? ? ? ? ? ? ? ? ? ?30
>> +#define MC13892_REGULATORSETTING0_VGEN1VSEL ? ? ? ? ?0
>> +#define MC13892_REGULATORSETTING0_VDIGVSEL ? ? ? ? ? 4
>> +#define MC13892_REGULATORSETTING0_VGEN2VSEL ? ? ? ? ?6
>> +#define MC13892_REGULATORSETTING0_VPLLVSEL ? ? ? ? ? 9
>> +#define MC13892_REGULATORSETTING0_VUSB2VSEL ? ? ? ? ?11
>> +#define MC13892_REGULATORSETTING0_VGEN3VSEL ? ? ? ? ?14
>> +#define MC13892_REGULATORSETTING0_VCAMVSEL ? ? ? ? ? 16
>> +
>> +#define MC13892_REGULATORSETTING0_VGEN1VSEL_M ? ? ? ?(3<<0)
>> +#define MC13892_REGULATORSETTING0_VDIGVSEL_M (3<<4)
>> +#define MC13892_REGULATORSETTING0_VGEN2VSEL_M ? ? ? ?(7<<6)
>> +#define MC13892_REGULATORSETTING0_VPLLVSEL_M (3<<9)
>> +#define MC13892_REGULATORSETTING0_VUSB2VSEL_M ? ? ? ?(3<<11)
>> +#define MC13892_REGULATORSETTING0_VGEN3VSEL_M ? ? ? ?(1<<14)
>> +#define MC13892_REGULATORSETTING0_VCAMVSEL_M (3<<16)
>> +
>> +#define MC13892_REGULATORSETTING1 ? ? ? ? ? ? ? ? ? ?31
>> +#define MC13892_REGULATORSETTING1_VVIDEOVSEL 2
>> +#define MC13892_REGULATORSETTING1_VAUDIOVSEL 4
>> +#define MC13892_REGULATORSETTING1_VSDVSEL ? ? ? ? ? ?6
>> +
>> +#define MC13892_REGULATORSETTING1_VVIDEOVSEL_M ? ? ? (3<<2)
>> +#define MC13892_REGULATORSETTING1_VAUDIOVSEL_M ? ? ? (3<<4)
>> +#define MC13892_REGULATORSETTING1_VSDVSEL_M ? ? ? ? ?(7<<6)
>> +
>> +#define MC13892_REGULATORMODE0 ? ? ? ? ? ? ? ? ? ? ? 32
>> +#define MC13892_REGULATORMODE0_VGEN1EN ? ? ? ? ? ? ? (1<<0)
>> +#define MC13892_REGULATORMODE0_VGEN1STDBY ? ? ? ? ? ?(1<<1)
>> +#define MC13892_REGULATORMODE0_VGEN1MODE ? ? ? ? ? ? (1<<2)
>> +#define MC13892_REGULATORMODE0_VIOHIEN ? ? ? ? ? ? ? (1<<3)
>> +#define MC13892_REGULATORMODE0_VIOHISTDBY ? ? ? ? ? ?(1<<4)
>> +#define MC13892_REGULATORMODE0_VIOHIMODE ? ? ? ? ? ? (1<<5)
>> +#define MC13892_REGULATORMODE0_VDIGEN ? ? ? ? ? ? ? ?(1<<9)
>> +#define MC13892_REGULATORMODE0_VDIGSTDBY ? ? ? ? ? ? (1<<10)
>> +#define MC13892_REGULATORMODE0_VDIGMODE ? ? ? ? ? ? ?(1<<11)
>> +#define MC13892_REGULATORMODE0_VGEN2EN ? ? ? ? ? ? ? (1<<12)
>> +#define MC13892_REGULATORMODE0_VGEN2STDBY ? ? ? ? ? ?(1<<13)
>> +#define MC13892_REGULATORMODE0_VGEN2MODE ? ? ? ? ? ? (1<<14)
>> +#define MC13892_REGULATORMODE0_VPLLEN ? ? ? ? ? ? ? ?(1<<15)
>> +#define MC13892_REGULATORMODE0_VPLLSTDBY ? ? ? ? ? ? (1<<16)
>> +#define MC13892_REGULATORMODE0_VPLLMODE ? ? ? ? ? ? ?(1<<17)
>> +#define MC13892_REGULATORMODE0_VUSB2EN ? ? ? ? ? ? ? (1<<18)
>> +#define MC13892_REGULATORMODE0_VUSB2STDBY ? ? ? ? ? ?(1<<19)
>> +#define MC13892_REGULATORMODE0_VUSB2MODE ? ? ? ? ? ? (1<<20)
>> +
>> +#define MC13892_REGULATORMODE1 ? ? ? ? ? ? ? ? ? ? ? 33
>> +#define MC13892_REGULATORMODE1_VGEN3EN ? ? ? ? ? ? ? (1<<0)
>> +#define MC13892_REGULATORMODE1_VGEN3STDBY ? ? ? ? ? ?(1<<1)
>> +#define MC13892_REGULATORMODE1_VGEN3MODE ? ? ? ? ? ? (1<<2)
>> +#define MC13892_REGULATORMODE1_VCAMEN ? ? ? ? ? ? ? ?(1<<6)
>> +#define MC13892_REGULATORMODE1_VCAMSTDBY ? ? ? ? ? ? (1<<7)
>> +#define MC13892_REGULATORMODE1_VCAMMODE ? ? ? ? ? ? ?(1<<8)
>> +#define MC13892_REGULATORMODE1_VCAMCONFIGEN ? ? ? ? ?(1<<9)
>> +#define MC13892_REGULATORMODE1_VVIDEOEN ? ? ? ? ? ? ?(1<<12)
>> +#define MC13892_REGULATORMODE1_VVIDEOSTDBY ? ? ? ? ? (1<<13)
>> +#define MC13892_REGULATORMODE1_VVIDEOMODE ? ? ? ? ? ?(1<<14)
>> +#define MC13892_REGULATORMODE1_VAUDIOEN ? ? ? ? ? ? ?(1<<15)
>> +#define MC13892_REGULATORMODE1_VAUDIOSTDBY ? ? ? ? ? (1<<16)
>> +#define MC13892_REGULATORMODE1_VAUDIOMODE ? ? ? ? ? ?(1<<17)
>> +#define MC13892_REGULATORMODE1_VSDEN ? ? ? ? (1<<18)
>> +#define MC13892_REGULATORMODE1_VSDSTDBY ? ? ? ? ? ? ?(1<<19)
>> +#define MC13892_REGULATORMODE1_VSDMODE ? ? ? ? ? ? ? (1<<20)
>> +
>> +#define MC13892_POWERMISC ? ? ? ? ? ? ? ? ? ? ? ? ? ?34
>> +#define MC13892_POWERMISC_GPO1EN ? ? ? ? ? ? ? ? ? ? (1<<6)
>> +#define MC13892_POWERMISC_GPO2EN ? ? ? ? ? ? ? ? ? ? (1<<8)
>> +#define MC13892_POWERMISC_GPO3EN ? ? ? ? ? ? ? ? ? ? (1<<10)
>> +#define MC13892_POWERMISC_GPO4EN ? ? ? ? ? ? ? ? ? ? (1<<12)
>> +#define MC13892_POWERMISC_PWGT1SPIEN ? ? ? ? (1<<15)
>> +#define MC13892_POWERMISC_PWGT2SPIEN ? ? ? ? (1<<16)
>> +#define MC13892_POWERMISC_GPO4ADINEN ? ? ? ? (1<<21)
>> +
>> +#define MC13892_POWERMISC_PWGTSPI_M ? ? ? ? ? ? ? ? ?(3 << 15)
>> +
>> +#define MC13892_USB1 ? ? ? ? ? ? ? ? ? ? ? ? 50
>> +#define MC13892_USB1_VUSBEN ? ? ? ? ? ? ? ? ? ? ? ? ?(1<<3)
>> +
>> +static const int mc13892_vcoincell[] = {
>> + ? ? 2500000, 2700000, 2800000, 2900000, 3000000, 3100000,
>> + ? ? 3200000, 3300000,
>> +};
>> +
>> +static const int mc13892_sw1[] = {
>> + ? ? 600000, ? 625000, ?650000, ?675000, ?700000, ?725000,
>> + ? ? 750000, ? 775000, ?800000, ?825000, ?850000, ?875000,
>> + ? ? 900000, ? 925000, ?950000, ?975000, 1000000, 1025000,
>> + ? ? 1050000, 1075000, 1100000, 1125000, 1150000, 1175000,
>> + ? ? 1200000, 1225000, 1250000, 1275000, 1300000, 1325000,
>> + ? ? 1350000, 1375000
>> +};
>> +
>> +static const int mc13892_sw[] = {
>> + ? ? 600000, ? 625000, ?650000, ?675000, ?700000, ?725000,
>> + ? ? 750000, ? 775000, ?800000, ?825000, ?850000, ?875000,
>> + ? ? 900000, ? 925000, ?950000, ?975000, 1000000, 1025000,
>> + ? ? 1050000, 1075000, 1100000, 1125000, 1150000, 1175000,
>> + ? ? 1200000, 1225000, 1250000, 1275000, 1300000, 1325000,
>> + ? ? 1350000, 1375000, 1400000, 1425000, 1450000, 1475000,
>> + ? ? 1500000, 1525000, 1550000, 1575000, 1600000, 1625000,
>> + ? ? 1650000, 1675000, 1700000, 1725000, 1750000, 1775000,
>> + ? ? 1800000, 1825000, 1850000, 1875000
>> +};
>> +
>> +static const int mc13892_swbst[] = {
>> + ? ? 5000000,
>> +};
>> +
>> +static const int mc13892_viohi[] = {
>> + ? ? 2775000,
>> +};
>> +
>> +static const int mc13892_vpll[] = {
>> + ? ? 1050000, 1250000, 1650000, 1800000,
>> +};
>> +
>> +static const int mc13892_vdig[] = {
>> + ? ? 1050000, 1250000, 1650000, 1800000,
>> +};
>> +
>> +static const int mc13892_vsd[] = {
>> + ? ? 1800000, 2000000, 2600000, 2700000,
>> + ? ? 2800000, 2900000, 3000000, 3150000,
>> +};
>> +
>> +static const int mc13892_vusb2[] = {
>> + ? ? 2400000, 2600000, 2700000, 2775000,
>> +};
>> +
>> +static const int mc13892_vvideo[] = {
>> + ? ? 2700000, 2775000, 2500000, 2600000,
>> +};
>> +
>> +static const int mc13892_vaudio[] = {
>> + ? ? 2300000, 2500000, 2775000, 3000000,
>> +};
>> +
>> +static const int mc13892_vcam[] = {
>> + ? ? 2500000, 2600000, 2750000, 3000000,
>> +};
>> +
>> +static const int mc13892_vgen1[] = {
>> + ? ? 1200000, 1500000, 2775000, 3150000,
>> +};
>> +
>> +static const int mc13892_vgen2[] = {
>> + ? ? 1200000, 1500000, 1600000, 1800000,
>> + ? ? 2700000, 2800000, 3000000, 3150000,
>> +};
>> +
>> +static const int mc13892_vgen3[] = {
>> + ? ? 1800000, 2900000,
>> +};
>> +
>> +static const int mc13892_vusb[] = {
>> + ? ? 3300000,
>> +};
>> +
>> +static const int mc13892_gpo[] = {
>> + ? ? 2750000,
>> +};
>> +
>> +static const int mc13892_pwgtdrv[] = {
>> + ? ? 5000000,
>> +};
>> +
>> +static struct regulator_ops mc13892_gpo_regulator_ops;
>> +/* sw regulators need special care due to the "hi bit" */
>> +static struct regulator_ops mc13892_sw_regulator_ops;
>> +
>> +
>> +#define MC13892_FIXED_DEFINE(name, reg, voltages)\
>> + ? ? MC13xxx_FIXED_DEFINE(MC13892_, name, reg, voltages, \
>> + ? ? ? ? ? ? ? ? ? ? mc13xxx_fixed_regulator_ops)
>> +
>> +#define MC13892_GPO_DEFINE(name, reg, voltages) ? ? ? ? ? ? ?\
>> + ? ? MC13xxx_GPO_DEFINE(MC13892_, name, reg, voltages, \
>> + ? ? ? ? ? ? ? ? ? ? mc13892_gpo_regulator_ops)
>> +
>> +#define MC13892_SW_DEFINE(name, reg, vsel_reg, voltages) ? ? ? ? ? ? \
>> + ? ? MC13xxx_DEFINE(MC13892_, name, reg, vsel_reg, voltages, \
>> + ? ? ? ? ? ? ? ? ? ? mc13892_sw_regulator_ops)
>> +
>> +#define MC13892_DEFINE_REGU(name, reg, vsel_reg, voltages) ? ? ? ? ? \
>> + ? ? MC13xxx_DEFINE(MC13892_, name, reg, vsel_reg, voltages, \
>> + ? ? ? ? ? ? ? ? ? ? mc13xxx_regulator_ops)
>> +
>> +static struct mc13xxx_regulator mc13892_regulators[] = {
>> + ? ? MC13892_DEFINE_REGU(VCOINCELL, POWERCTL0, POWERCTL0, ? ? ? ? ? ?\
>> + ? ? ? ? ? ? ? ? ? ? ? ? mc13892_vcoincell),
>> + ? ? MC13892_SW_DEFINE(SW1, SWITCHERS0, SWITCHERS0, mc13892_sw1),
>> + ? ? MC13892_SW_DEFINE(SW2, SWITCHERS1, SWITCHERS1, mc13892_sw),
>> + ? ? MC13892_SW_DEFINE(SW3, SWITCHERS2, SWITCHERS2, mc13892_sw),
>> + ? ? MC13892_SW_DEFINE(SW4, SWITCHERS3, SWITCHERS3, mc13892_sw),
>> + ? ? MC13892_FIXED_DEFINE(SWBST, SWITCHERS5, mc13892_swbst),
>> + ? ? MC13892_FIXED_DEFINE(VIOHI, REGULATORMODE0, mc13892_viohi),
>> + ? ? MC13892_DEFINE_REGU(VPLL, REGULATORMODE0, REGULATORSETTING0, ? ?\
>> + ? ? ? ? ? ? ? ? ? ? ? ? mc13892_vpll),
>> + ? ? MC13892_DEFINE_REGU(VDIG, REGULATORMODE0, REGULATORSETTING0, ? ?\
>> + ? ? ? ? ? ? ? ? ? ? ? ? mc13892_vdig),
>> + ? ? MC13892_DEFINE_REGU(VSD, REGULATORMODE1, REGULATORSETTING1, ? ? \
>> + ? ? ? ? ? ? ? ? ? ? ? ? mc13892_vsd),
>> + ? ? MC13892_DEFINE_REGU(VUSB2, REGULATORMODE0, REGULATORSETTING0, ? \
>> + ? ? ? ? ? ? ? ? ? ? ? ? mc13892_vusb2),
>> + ? ? MC13892_DEFINE_REGU(VVIDEO, REGULATORMODE1, REGULATORSETTING1, ?\
>> + ? ? ? ? ? ? ? ? ? ? ? ? mc13892_vvideo),
>> + ? ? MC13892_DEFINE_REGU(VAUDIO, REGULATORMODE1, REGULATORSETTING1, ?\
>> + ? ? ? ? ? ? ? ? ? ? ? ? mc13892_vaudio),
>> + ? ? MC13892_DEFINE_REGU(VCAM, REGULATORMODE1, REGULATORSETTING0, \
>> + ? ? ? ? ? ? ? ? ? ? ? ? mc13892_vcam),
>> + ? ? MC13892_DEFINE_REGU(VGEN1, REGULATORMODE0, REGULATORSETTING0, ? \
>> + ? ? ? ? ? ? ? ? ? ? ? ? mc13892_vgen1),
>> + ? ? MC13892_DEFINE_REGU(VGEN2, REGULATORMODE0, REGULATORSETTING0, ? \
>> + ? ? ? ? ? ? ? ? ? ? ? ? mc13892_vgen2),
>> + ? ? MC13892_DEFINE_REGU(VGEN3, REGULATORMODE1, REGULATORSETTING0, ? \
>> + ? ? ? ? ? ? ? ? ? ? ? ? mc13892_vgen3),
>> + ? ? MC13892_FIXED_DEFINE(VUSB, USB1, mc13892_vusb),
>> + ? ? MC13892_GPO_DEFINE(GPO1, POWERMISC, mc13892_gpo),
>> + ? ? MC13892_GPO_DEFINE(GPO2, POWERMISC, mc13892_gpo),
>> + ? ? MC13892_GPO_DEFINE(GPO3, POWERMISC, mc13892_gpo),
>> + ? ? MC13892_GPO_DEFINE(GPO4, POWERMISC, mc13892_gpo),
>> + ? ? MC13892_GPO_DEFINE(PWGT1SPI, POWERMISC, mc13892_pwgtdrv),
>> + ? ? MC13892_GPO_DEFINE(PWGT2SPI, POWERMISC, mc13892_pwgtdrv),
>> +};
>> +
>> +int mc13892_powermisc_rmw(struct mc13xxx_regulator_priv *priv, u32 mask,
>> + ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? u32 val)
> How do you decide how many tabs are used for indention? ?This seems to
> be inconsistent over the patch. ?The usual conventions I know of are:
> ? ? ? ?- align to opening paren
> ? ? ? ?- two tabs
> (I prefer the latter because if the function name (or it's attributes)
> change there is no need to relayout the lines of the arguments.
Both are ok for me, and what you prefer also makes sense to me.

>
>> +{
>> + ? ? struct mc13xxx *mc13892 = priv->mc13xxx;
>> + ? ? int ret;
>> + ? ? u32 valread;
>> +
>> + ? ? BUG_ON(val & ~mask);
>> +
>> + ? ? ret = mc13xxx_reg_read(mc13892, MC13892_POWERMISC, &valread);
>> + ? ? if (ret)
>> + ? ? ? ? ? ? return ret;
>> +
>> + ? ? /* Update the stored state for Power Gates. */
>> + ? ? priv->powermisc_pwgt_state =
>> + ? ? ? ? ? ? ? ? ? ? ? ? ? ? (priv->powermisc_pwgt_state & ~mask) | val;
> Here a single tab more than the preceeding line is usual.
>
>> + ? ? priv->powermisc_pwgt_state &= MC13892_POWERMISC_PWGTSPI_M;
>> +
>> + ? ? /* Construct the new register value */
>> + ? ? valread = (valread & ~mask) | val;
>> + ? ? /* Overwrite the PWGTxEN with the stored version */
>> + ? ? valread = (valread & ~MC13892_POWERMISC_PWGTSPI_M) |
>> + ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? priv->powermisc_pwgt_state;
>> +
>> + ? ? return mc13xxx_reg_write(mc13892, MC13892_POWERMISC, valread);
>> +}
>> +
>> +static int mc13892_gpo_regulator_enable(struct regulator_dev *rdev)
>> +{
>> + ? ? struct mc13xxx_regulator_priv *priv = rdev_get_drvdata(rdev);
>> + ? ? int id = rdev_get_id(rdev);
>> + ? ? int ret;
>> + ? ? u32 en_val = mc13892_regulators[id].enable_bit;
>> + ? ? u32 mask = mc13892_regulators[id].enable_bit;
>> +
>> + ? ? dev_dbg(rdev_get_dev(rdev), "%s id: %d\n", __func__, id);
>> +
>> + ? ? /* Power Gate enable value is 0 */
>> + ? ? if (id == MC13892_PWGT1SPI ||
>> + ? ? ? ? id == MC13892_PWGT2SPI)
>> + ? ? ? ? ? ? en_val = 0;
>> +
>> + ? ? if (id == MC13892_GPO4)
>> + ? ? ? ? ? ? mask |= MC13892_POWERMISC_GPO4ADINEN;
>> +
>> + ? ? mc13xxx_lock(priv->mc13xxx);
>> + ? ? ret = mc13892_powermisc_rmw(priv, mask, en_val);
>> + ? ? mc13xxx_unlock(priv->mc13xxx);
>> +
>> + ? ? return ret;
>> +}
>> +
>> +static int mc13892_gpo_regulator_disable(struct regulator_dev *rdev)
>> +{
>> + ? ? struct mc13xxx_regulator_priv *priv = rdev_get_drvdata(rdev);
>> + ? ? int id = rdev_get_id(rdev);
>> + ? ? int ret;
>> + ? ? u32 dis_val = 0;
>> +
>> + ? ? dev_dbg(rdev_get_dev(rdev), "%s id: %d\n", __func__, id);
>> +
>> + ? ? /* Power Gate disable value is 1 */
>> + ? ? if (id == MC13892_PWGT1SPI ||
>> + ? ? ? ? id == MC13892_PWGT2SPI)
>> + ? ? ? ? ? ? dis_val = mc13892_regulators[id].enable_bit;
>> +
>> + ? ? mc13xxx_lock(priv->mc13xxx);
>> + ? ? ret = mc13892_powermisc_rmw(priv, mc13892_regulators[id].enable_bit,
>> + ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? dis_val);
>> + ? ? mc13xxx_unlock(priv->mc13xxx);
>> +
>> + ? ? return ret;
>> +}
>> +
>> +static int mc13892_gpo_regulator_is_enabled(struct regulator_dev *rdev)
>> +{
>> + ? ? struct mc13xxx_regulator_priv *priv = rdev_get_drvdata(rdev);
>> + ? ? int ret, id = rdev_get_id(rdev);
>> + ? ? unsigned int val;
>> +
>> + ? ? mc13xxx_lock(priv->mc13xxx);
>> + ? ? ret = mc13xxx_reg_read(priv->mc13xxx, mc13892_regulators[id].reg, &val);
>> + ? ? mc13xxx_unlock(priv->mc13xxx);
>> +
>> + ? ? if (ret)
>> + ? ? ? ? ? ? return ret;
>> +
>> + ? ? /* Power Gates state is stored in powermisc_pwgt_state
>> + ? ? ?* where the meaning of bits is negated */
>> + ? ? val = (val & ~MC13892_POWERMISC_PWGTSPI_M) |
>> + ? ? ? ? ? (priv->powermisc_pwgt_state ^ MC13892_POWERMISC_PWGTSPI_M);
>> +
>> + ? ? return (val & mc13892_regulators[id].enable_bit) != 0;
>> +}
>> +
>> +
>> +static struct regulator_ops mc13892_gpo_regulator_ops = {
>> + ? ? .enable = mc13892_gpo_regulator_enable,
>> + ? ? .disable = mc13892_gpo_regulator_disable,
>> + ? ? .is_enabled = mc13892_gpo_regulator_is_enabled,
>> + ? ? .list_voltage = mc13xxx_regulator_list_voltage,
>> + ? ? .set_voltage = mc13xxx_fixed_regulator_set_voltage,
>> + ? ? .get_voltage = mc13xxx_fixed_regulator_get_voltage,
>> +};
>> +
>> +static int mc13892_sw_regulator_get_voltage(struct regulator_dev *rdev)
>> +{
>> + ? ? struct mc13xxx_regulator_priv *priv = rdev_get_drvdata(rdev);
>> + ? ? int ret, id = rdev_get_id(rdev);
>> + ? ? unsigned int val, hi;
>> +
>> + ? ? dev_dbg(rdev_get_dev(rdev), "%s id: %d\n", __func__, id);
>> +
>> + ? ? mc13xxx_lock(priv->mc13xxx);
>> + ? ? ret = mc13xxx_reg_read(priv->mc13xxx,
>> + ? ? ? ? ? ? ? ? ? ? ? ? ? ? mc13892_regulators[id].vsel_reg, &val);
>> + ? ? mc13xxx_unlock(priv->mc13xxx);
>> + ? ? if (ret)
>> + ? ? ? ? ? ? return ret;
>> +
>> + ? ? hi ?= val & MC13892_SWITCHERS0_SWxHI;
>> + ? ? val = (val & mc13892_regulators[id].vsel_mask)
>> + ? ? ? ? ? ? >> mc13892_regulators[id].vsel_shift;
>> +
>> + ? ? dev_dbg(rdev_get_dev(rdev), "%s id: %d val: %d\n", __func__, id, val);
>> +
>> + ? ? if (hi)
>> + ? ? ? ? ? ? val = (25000 * val) + 1100000;
>> + ? ? else
>> + ? ? ? ? ? ? val = (25000 * val) + 600000;
>> +
>> + ? ? return val;
>> +}
>> +
>> +static int mc13892_sw_regulator_set_voltage(struct regulator_dev *rdev,
>> + ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? int min_uV, int max_uV)
>> +{
>> + ? ? struct mc13xxx_regulator_priv *priv = rdev_get_drvdata(rdev);
>> + ? ? int hi, value, val, mask, id = rdev_get_id(rdev);
>> + ? ? int ret;
>> +
>> + ? ? dev_dbg(rdev_get_dev(rdev), "%s id: %d min_uV: %d max_uV: %d\n",
>> + ? ? ? ? ? ? __func__, id, min_uV, max_uV);
>> +
>> + ? ? /* Find the best index */
>> + ? ? value = mc13xxx_get_best_voltage_index(rdev, min_uV, max_uV);
>> + ? ? dev_dbg(rdev_get_dev(rdev), "%s best value: %d\n", __func__, value);
>> + ? ? if (value < 0)
>> + ? ? ? ? ? ? return value;
>> +
>> + ? ? value = mc13892_regulators[id].voltages[value];
>> +
>> + ? ? mc13xxx_lock(priv->mc13xxx);
>> + ? ? ret = mc13xxx_reg_read(priv->mc13xxx,
>> + ? ? ? ? ? ? ? ? ? ? ? ? ? ? mc13892_regulators[id].vsel_reg, &val);
>> + ? ? if (ret)
>> + ? ? ? ? ? ? goto err;
>> +
>> + ? ? hi ?= val & MC13892_SWITCHERS0_SWxHI;
>> + ? ? if (value > 1375)
>> + ? ? ? ? ? ? hi = 1;
>> + ? ? if (value < 1100)
>> + ? ? ? ? ? ? hi = 0;
>> +
>> + ? ? if (hi) {
>> + ? ? ? ? ? ? value = (value - 1100000) / 25000;
>> + ? ? ? ? ? ? value |= MC13892_SWITCHERS0_SWxHI;
>> + ? ? } else
>> + ? ? ? ? ? ? value = (value - 600000) / 25000;
>> +
>> + ? ? mask = mc13892_regulators[id].vsel_mask | MC13892_SWITCHERS0_SWxHI;
>> + ? ? ret = mc13xxx_reg_rmw(priv->mc13xxx, mc13892_regulators[id].vsel_reg,
>> + ? ? ? ? ? ? ? ? ? ? mask,
>> + ? ? ? ? ? ? ? ? ? ? value << mc13892_regulators[id].vsel_shift);
> The content of the two preceeding lines fit on a single line.
>
>> +err:
>> + ? ? mc13xxx_unlock(priv->mc13xxx);
>> +
>> + ? ? return ret;
>> +}
>> +
>> +static struct regulator_ops mc13892_sw_regulator_ops = {
>> + ? ? .is_enabled = mc13xxx_sw_regulator_is_enabled,
>> + ? ? .list_voltage = mc13xxx_regulator_list_voltage,
>> + ? ? .set_voltage = mc13892_sw_regulator_set_voltage,
>> + ? ? .get_voltage = mc13892_sw_regulator_get_voltage,
>> +};
>> +
>> +static int mc13892_vcam_set_mode(struct regulator_dev *rdev, unsigned int mode)
>> +{
>> + ? ? unsigned int en_val = 0;
>> + ? ? struct mc13xxx_regulator_priv *priv = rdev_get_drvdata(rdev);
>> + ? ? int ret, id = rdev_get_id(rdev);
>> +
>> + ? ? if (mode == REGULATOR_MODE_FAST)
>> + ? ? ? ? ? ? en_val = MC13892_REGULATORMODE1_VCAMCONFIGEN;
>> +
>> + ? ? mc13xxx_lock(priv->mc13xxx);
>> + ? ? ret = mc13xxx_reg_rmw(priv->mc13xxx, mc13892_regulators[id].reg,
>> + ? ? ? ? ? ? ? ? ? ? MC13892_REGULATORMODE1_VCAMCONFIGEN,
>> + ? ? ? ? ? ? ? ? ? ? en_val);
>> + ? ? mc13xxx_unlock(priv->mc13xxx);
>> +
>> + ? ? return ret;
>> +}
>> +
>> +unsigned int mc13892_vcam_get_mode(struct regulator_dev *rdev)
>> +{
>> + ? ? struct mc13xxx_regulator_priv *priv = rdev_get_drvdata(rdev);
>> + ? ? int ret, id = rdev_get_id(rdev);
>> + ? ? unsigned int val;
>> +
>> + ? ? mc13xxx_lock(priv->mc13xxx);
>> + ? ? ret = mc13xxx_reg_read(priv->mc13xxx, mc13892_regulators[id].reg, &val);
>> + ? ? mc13xxx_unlock(priv->mc13xxx);
>> +
>> + ? ? if (ret)
>> + ? ? ? ? ? ? return ret;
>> +
>> + ? ? if (val & MC13892_REGULATORMODE1_VCAMCONFIGEN)
>> + ? ? ? ? ? ? return REGULATOR_MODE_FAST;
>> +
>> + ? ? return REGULATOR_MODE_NORMAL;
>> +}
>> +
>> +
>> +static int __devinit mc13892_regulator_probe(struct platform_device *pdev)
>> +{
>> + ? ? struct mc13xxx_regulator_priv *priv;
>> + ? ? struct mc13xxx *mc13892 = dev_get_drvdata(pdev->dev.parent);
>> + ? ? struct mc13xxx_regulator_platform_data *pdata =
>> + ? ? ? ? ? ? dev_get_platdata(&pdev->dev);
>> + ? ? struct mc13xxx_regulator_init_data *init_data;
>> + ? ? int i, ret;
>> + ? ? u32 val;
>> +
>> + ? ? priv = kzalloc(sizeof(*priv) +
>> + ? ? ? ? ? ? ? ? ? ? pdata->num_regulators * sizeof(priv->regulators[0]),
>> + ? ? ? ? ? ? ? ? ? ? GFP_KERNEL);
>> + ? ? if (!priv)
>> + ? ? ? ? ? ? return -ENOMEM;
>> +
>> + ? ? priv->mc13xxx_regulators = mc13892_regulators;
>> + ? ? priv->mc13xxx = mc13892;
>> +
>> + ? ? mc13xxx_lock(mc13892);
>> + ? ? ret = mc13xxx_reg_read(mc13892, MC13892_REVISION, &val);
>> + ? ? mc13xxx_unlock(mc13892);
> You can keep holding the lock here.

>> + ? ? if (ret)
>> + ? ? ? ? ? ? goto err_alloc;
> err_alloc seems wrong. ?The goto is taken when reading the revision
> register fails, not on a failed allocation.
I missed this last time. But IMHO, this label can also refer the place
for error handle,  which is dealloc memory in this case. So if it is
not accurate, it could be err_dealloc or alike. Do you mean it should
be something like err_revision? correct me.

>> +
>> + ? ? /* enable switch auto mode */
>> + ? ? if ((val & 0x0000FFFF) == 0x45d0) {
>> + ? ? ? ? ? ? mc13xxx_lock(mc13892);
>> + ? ? ? ? ? ? ret = mc13xxx_reg_rmw(mc13892, MC13892_SWITCHERS4,
>> + ? ? ? ? ? ? ? ? ? ? MC13892_SWITCHERS4_SW1MODE_M |
>> + ? ? ? ? ? ? ? ? ? ? MC13892_SWITCHERS4_SW2MODE_M,
>> + ? ? ? ? ? ? ? ? ? ? MC13892_SWITCHERS4_SW1MODE_AUTO |
>> + ? ? ? ? ? ? ? ? ? ? MC13892_SWITCHERS4_SW2MODE_AUTO);
>> + ? ? ? ? ? ? mc13xxx_unlock(mc13892);
> ditto
>
>> + ? ? ? ? ? ? if (ret)
>> + ? ? ? ? ? ? ? ? ? ? goto err_alloc;
> again, err_alloc is the wrong name
>
>> +
>> + ? ? ? ? ? ? mc13xxx_lock(mc13892);
>> + ? ? ? ? ? ? mc13xxx_reg_rmw(mc13892, MC13892_SWITCHERS5,
>> + ? ? ? ? ? ? ? ? ? ? MC13892_SWITCHERS5_SW3MODE_M |
>> + ? ? ? ? ? ? ? ? ? ? MC13892_SWITCHERS5_SW4MODE_M,
>> + ? ? ? ? ? ? ? ? ? ? MC13892_SWITCHERS5_SW3MODE_AUTO |
>> + ? ? ? ? ? ? ? ? ? ? MC13892_SWITCHERS5_SW4MODE_AUTO);
>> + ? ? ? ? ? ? mc13xxx_unlock(mc13892);
>> + ? ? ? ? ? ? if (ret)
>> + ? ? ? ? ? ? ? ? ? ? goto err_alloc;
> ditto
>
>> + ? ? }
>> +
>> + ? ? mc13892_regulators[MC13892_VCAM].desc.ops->set_mode
>> + ? ? ? ? ? ? = mc13892_vcam_set_mode;
>> + ? ? mc13892_regulators[MC13892_VCAM].desc.ops->get_mode
>> + ? ? ? ? ? ? = mc13892_vcam_get_mode;
>> + ? ? for (i = 0; i < pdata->num_regulators; i++) {
>> + ? ? ? ? ? ? init_data = &pdata->regulators[i];
>> + ? ? ? ? ? ? priv->regulators[i] = regulator_register(
>> + ? ? ? ? ? ? ? ? ? ? ? ? ? ? &mc13892_regulators[init_data->id].desc,
>> + ? ? ? ? ? ? ? ? ? ? ? ? ? ? &pdev->dev, init_data->init_data, priv);
>> +
>> + ? ? ? ? ? ? if (IS_ERR(priv->regulators[i])) {
>> + ? ? ? ? ? ? ? ? ? ? dev_err(&pdev->dev, "failed to register regulator %s\n",
>> + ? ? ? ? ? ? ? ? ? ? ? ? ? ? mc13892_regulators[i].desc.name);
>> + ? ? ? ? ? ? ? ? ? ? ret = PTR_ERR(priv->regulators[i]);
>> + ? ? ? ? ? ? ? ? ? ? goto err;
>> + ? ? ? ? ? ? }
>> + ? ? }
>> +
>> + ? ? platform_set_drvdata(pdev, priv);
>> +
>> + ? ? return 0;
>> +err:
>> + ? ? while (--i >= 0)
>> + ? ? ? ? ? ? regulator_unregister(priv->regulators[i]);
>> +
>> +err_alloc:
>> + ? ? kfree(priv);
>> +
>> + ? ? return ret;
>> +}
>> +
>> +static int __devexit mc13892_regulator_remove(struct platform_device *pdev)
>> +{
>> + ? ? struct mc13xxx_regulator_priv *priv = platform_get_drvdata(pdev);
>> + ? ? struct mc13xxx_regulator_platform_data *pdata =
>> + ? ? ? ? ? ? dev_get_platdata(&pdev->dev);
>> + ? ? int i;
>> +
>> + ? ? platform_set_drvdata(pdev, NULL);
>> +
>> + ? ? for (i = 0; i < pdata->num_regulators; i++)
>> + ? ? ? ? ? ? regulator_unregister(priv->regulators[i]);
>> +
>> + ? ? kfree(priv);
>> + ? ? return 0;
>> +}
>> +
>> +static struct platform_driver mc13892_regulator_driver = {
>> + ? ? .driver = {
>> + ? ? ? ? ? ? .name ? = "mc13892-regulator",
>> + ? ? ? ? ? ? .owner ?= THIS_MODULE,
>> + ? ? },
>> + ? ? .remove = __devexit_p(mc13892_regulator_remove),
>> + ? ? .probe ?= mc13892_regulator_probe,
>> +};
>> +
>> +static int __init mc13892_regulator_init(void)
>> +{
>> + ? ? return platform_driver_register(&mc13892_regulator_driver);
>> +}
>> +subsys_initcall(mc13892_regulator_init);
>> +
>> +static void __exit mc13892_regulator_exit(void)
>> +{
>> + ? ? platform_driver_unregister(&mc13892_regulator_driver);
>> +}
>> +module_exit(mc13892_regulator_exit);
>> +
>> +MODULE_LICENSE("GPL v2");
>> +MODULE_AUTHOR("Yong Shen <yong.shen@linaro.org>");
>> +MODULE_DESCRIPTION("Regulator Driver for Freescale MC13892 PMIC");
>> +MODULE_ALIAS("platform:mc13892-regulator");
>> diff --git a/include/linux/mfd/mc13892.h b/include/linux/mfd/mc13892.h
>> new file mode 100644
>> index 0000000..7df13e8
>> --- /dev/null
>> +++ b/include/linux/mfd/mc13892.h
>> @@ -0,0 +1,38 @@
>> +/*
>> + * Copyright 2010 Yong Shen <yong.shen@linaro.org>
>> + *
>> + * This program is free software; you can redistribute it and/or modify it under
>> + * the terms of the GNU General Public License version 2 as published by the
>> + * Free Software Foundation.
>> + */
>> +
>> +#ifndef __LINUX_MFD_MC13892_H
>> +#define __LINUX_MFD_MC13892_H
> newline here please
>> +#include <linux/mfd/mc13xxx.h>
>> +
>> +#define MC13892_SW1 ? ? ? ? ?0
>> +#define MC13892_SW2 ? ? ? ? ?1
>> +#define MC13892_SW3 ? ? ? ? ?2
>> +#define MC13892_SW4 ? ? ? ? ?3
>> +#define MC13892_SWBST ? ? ? ?4
>> +#define MC13892_VIOHI ? ? ? ?5
>> +#define MC13892_VPLL 6
>> +#define MC13892_VDIG 7
>> +#define MC13892_VSD ?8
>> +#define MC13892_VUSB2 ? ? ? ?9
>> +#define MC13892_VVIDEO ? ? ? 10
>> +#define MC13892_VAUDIO ? ? ? 11
>> +#define MC13892_VCAM 12
>> +#define MC13892_VGEN1 ? ? ? ?13
>> +#define MC13892_VGEN2 ? ? ? ?14
>> +#define MC13892_VGEN3 ? ? ? ?15
>> +#define MC13892_VUSB 16
>> +#define MC13892_GPO1 17
>> +#define MC13892_GPO2 18
>> +#define MC13892_GPO3 19
>> +#define MC13892_GPO4 20
>> +#define MC13892_PWGT1SPI ? ? 21
>> +#define MC13892_PWGT2SPI ? ? 22
>> +#define MC13892_VCOINCELL ? ?23
> I thought you wanted to put these somewhere below drivers/regulator/.
This file is supposed to be in include/linux/mfd, since register names
are also likely to be used by other mfd code.
>
>> +
>> +#endif
>> --
>> 1.7.0.4
>>
>>
>>
>
> --
> Pengutronix e.K. ? ? ? ? ? ? ? ? ? ? ? ? ? | Uwe Kleine-K?nig ? ? ? ? ? ?|
> Industrial Linux Solutions ? ? ? ? ? ? ? ? | http://www.pengutronix.de/ ?|
>

^ permalink raw reply	[flat|nested] 20+ messages in thread

* [PATCHv3] support PMIC mc13892
  2010-12-08  9:25   ` Samuel Ortiz
@ 2010-12-08  9:59     ` Yong Shen
  0 siblings, 0 replies; 20+ messages in thread
From: Yong Shen @ 2010-12-08  9:59 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Samuel,

On Wed, Dec 8, 2010 at 5:25 PM, Samuel Ortiz <sameo@linux.intel.com> wrote:
> Hi Yong,
>
> On Wed, Dec 08, 2010 at 11:21:00AM +0800, yong.shen at freescale.com wrote:
>> From: Yong Shen <yong.shen@linaro.org>
>>
>> add support for mc13892, tested on mx51 babbage board
>>
>> Signed-off-by: Arnaud Patard <arnaud.patard@rtp-net.org>
>> Signed-off-by: Yong Shen <yong.shen@linaro.org>
> If Liam is taking those patches, please add my Acked-by for the MFD part.
>
You mean all the patches or just this one?
> Cheers,
> Samuel.
>
> --
> Intel Open Source Technology Centre
> http://oss.intel.com/
>

^ permalink raw reply	[flat|nested] 20+ messages in thread

* [PATCHv3] support PMIC mc13892
  2010-12-08  9:12   ` Uwe Kleine-König
  2010-12-08  9:51     ` Yong Shen
@ 2010-12-08 10:01     ` Mark Brown
  2010-12-08 10:55       ` Uwe Kleine-König
  2010-12-08 14:26       ` Arnaud Patard (Rtp)
  1 sibling, 2 replies; 20+ messages in thread
From: Mark Brown @ 2010-12-08 10:01 UTC (permalink / raw)
  To: linux-arm-kernel

On Wed, Dec 08, 2010 at 10:12:26AM +0100, Uwe Kleine-K?nig wrote:

Please cut unneded context - it makes it much easier to find the new
text in your replies!

> > +	if (ret)
> > +		goto err_alloc;

> err_alloc seems wrong.  The goto is taken when reading the revision
> register fails, not on a failed allocation.

His code is following the style of naming the exit points after what
needs to be unwound rather than after the place jumped from which is
common enough?

> > +#define MC13892_PWGT1SPI	21
> > +#define MC13892_PWGT2SPI	22
> > +#define MC13892_VCOINCELL	23

> I thought you wanted to put these somewhere below drivers/regulator/.

Please.

^ permalink raw reply	[flat|nested] 20+ messages in thread

* [PATCHv3] support PMIC mc13892
  2010-12-08 10:01     ` Mark Brown
@ 2010-12-08 10:55       ` Uwe Kleine-König
  2010-12-08 14:26       ` Arnaud Patard (Rtp)
  1 sibling, 0 replies; 20+ messages in thread
From: Uwe Kleine-König @ 2010-12-08 10:55 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Mark,

On Wed, Dec 08, 2010 at 10:01:38AM +0000, Mark Brown wrote:
> On Wed, Dec 08, 2010 at 10:12:26AM +0100, Uwe Kleine-K?nig wrote:
> 
> Please cut unneded context - it makes it much easier to find the new
> text in your replies!
hmm, well you could argue here.  The downside in this case you stripped
the err_alloc label that might be the right place to place my comment
here.  Sometimes I consider it hard what to strip but yes in general I
accede.
 
> > > +	if (ret)
> > > +		goto err_alloc;
> 
> > err_alloc seems wrong.  The goto is taken when reading the revision
> > register fails, not on a failed allocation.
> 
> His code is following the style of naming the exit points after what
> needs to be unwound rather than after the place jumped from which is
> common enough?
Then I'd prefer err_free.

Best regards
Uwe

-- 
Pengutronix e.K.                           | Uwe Kleine-K?nig            |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |

^ permalink raw reply	[flat|nested] 20+ messages in thread

* [PATCHv3] support PMIC mc13892
  2010-12-08  3:28   ` Yong Shen
  2010-12-08  8:52     ` Uwe Kleine-König
@ 2010-12-08 12:54     ` Liam Girdwood
  2010-12-09  5:13       ` Yong Shen
  2010-12-09 22:33     ` Liam Girdwood
  2 siblings, 1 reply; 20+ messages in thread
From: Liam Girdwood @ 2010-12-08 12:54 UTC (permalink / raw)
  To: linux-arm-kernel

On Wed, 2010-12-08 at 11:28 +0800, Yong Shen wrote:
> Hi Liam,
> 
> Last time, you took the previous patches for mc13783 code
> reorganization in your tree, 

I've not applied this yet, I'm waiting on an Ack from either Sascha or
Uwe regarding the arch mxc changes in this patch.

> I suppose you can also please take
> mc13892, which had passed review.
> 

Again, lets wait for Acks from Mark and Uwe here.

Thanks

Liam

> Thanks
> Yong
> 
> On Wed, Dec 8, 2010 at 11:21 AM,  <yong.shen@freescale.com> wrote:
> > From: Yong Shen <yong.shen@linaro.org>
> >
> > add support for mc13892, tested on mx51 babbage board
> >
> > Signed-off-by: Arnaud Patard <arnaud.patard@rtp-net.org>
> > Signed-off-by: Yong Shen <yong.shen@linaro.org>
> > ---
> >  drivers/regulator/Kconfig             |    8 +
> >  drivers/regulator/Makefile            |    1 +
> >  drivers/regulator/mc13892-regulator.c |  644 +++++++++++++++++++++++++++++++++
> >  include/linux/mfd/mc13892.h           |   38 ++
> >  4 files changed, 691 insertions(+), 0 deletions(-)
> >  create mode 100644 drivers/regulator/mc13892-regulator.c
> >  create mode 100644 include/linux/mfd/mc13892.h
> >
> > diff --git a/drivers/regulator/Kconfig b/drivers/regulator/Kconfig
> > index 6e54253..1673a4f 100644
> > --- a/drivers/regulator/Kconfig
> > +++ b/drivers/regulator/Kconfig
> > @@ -197,6 +197,14 @@ config REGULATOR_MC13783
> >          Say y here to support the regulators found on the Freescale MC13783
> >          PMIC.
> >
> > +config REGULATOR_MC13892
> > +       tristate "Support regulators on Freescale MC13892 PMIC"
> > +       depends on MFD_MC13XXX
> > +       select REGULATOR_MC13XXX_CORE
> > +       help
> > +         Say y here to support the regulators found on the Freescale MC13892
> > +         PMIC.
> > +
> >  config REGULATOR_AB3100
> >        tristate "ST-Ericsson AB3100 Regulator functions"
> >        depends on AB3100_CORE
> > diff --git a/drivers/regulator/Makefile b/drivers/regulator/Makefile
> > index 11876be..3107480 100644
> > --- a/drivers/regulator/Makefile
> > +++ b/drivers/regulator/Makefile
> > @@ -30,6 +30,7 @@ obj-$(CONFIG_REGULATOR_DA903X)        += da903x.o
> >  obj-$(CONFIG_REGULATOR_PCF50633) += pcf50633-regulator.o
> >  obj-$(CONFIG_REGULATOR_PCAP) += pcap-regulator.o
> >  obj-$(CONFIG_REGULATOR_MC13783) += mc13783-regulator.o
> > +obj-$(CONFIG_REGULATOR_MC13892) += mc13892-regulator.o
> >  obj-$(CONFIG_REGULATOR_MC13XXX_CORE) +=  mc13xxx-regulator-core.o
> >  obj-$(CONFIG_REGULATOR_AB3100) += ab3100.o
> >
> > diff --git a/drivers/regulator/mc13892-regulator.c b/drivers/regulator/mc13892-regulator.c
> > new file mode 100644
> > index 0000000..1b23170
> > --- /dev/null
> > +++ b/drivers/regulator/mc13892-regulator.c
> > @@ -0,0 +1,644 @@
> > +/*
> > + * Regulator Driver for Freescale MC13892 PMIC
> > + *
> > + * Copyright 2010 Yong Shen <yong.shen@linaro.org>
> > + *
> > + * Based on draft driver from Arnaud Patard <arnaud.patard@rtp-net.org>
> > + *
> > + * This program is free software; you can redistribute it and/or modify
> > + * it under the terms of the GNU General Public License version 2 as
> > + * published by the Free Software Foundation.
> > + */
> > +
> > +#include <linux/mfd/mc13892.h>
> > +#include <linux/regulator/machine.h>
> > +#include <linux/regulator/driver.h>
> > +#include <linux/platform_device.h>
> > +#include <linux/kernel.h>
> > +#include <linux/slab.h>
> > +#include <linux/init.h>
> > +#include <linux/err.h>
> > +#include "mc13xxx.h"
> > +
> > +#define MC13892_REVISION                               7
> > +
> > +#define MC13892_POWERCTL0                              13
> > +#define MC13892_POWERCTL0_USEROFFSPI           3
> > +#define MC13892_POWERCTL0_VCOINCELLVSEL                20
> > +#define MC13892_POWERCTL0_VCOINCELLVSEL_M              (7<<20)
> > +#define MC13892_POWERCTL0_VCOINCELLEN          (1<<23)
> > +
> > +#define MC13892_SWITCHERS0_SWxHI                       (1<<23)
> > +
> > +#define MC13892_SWITCHERS0                             24
> > +#define MC13892_SWITCHERS0_SW1VSEL                     0
> > +#define MC13892_SWITCHERS0_SW1VSEL_M           (0x1f<<0)
> > +#define MC13892_SWITCHERS0_SW1HI                       (1<<23)
> > +#define MC13892_SWITCHERS0_SW1EN               0
> > +
> > +#define MC13892_SWITCHERS1                             25
> > +#define MC13892_SWITCHERS1_SW2VSEL                     0
> > +#define MC13892_SWITCHERS1_SW2VSEL_M           (0x1f<<0)
> > +#define MC13892_SWITCHERS1_SW2HI                       (1<<23)
> > +#define MC13892_SWITCHERS1_SW2EN               0
> > +
> > +#define MC13892_SWITCHERS2                             26
> > +#define MC13892_SWITCHERS2_SW3VSEL                     0
> > +#define MC13892_SWITCHERS2_SW3VSEL_M           (0x1f<<0)
> > +#define MC13892_SWITCHERS2_SW3HI                       (1<<23)
> > +#define MC13892_SWITCHERS2_SW3EN               0
> > +
> > +#define MC13892_SWITCHERS3                             27
> > +#define MC13892_SWITCHERS3_SW4VSEL                     0
> > +#define MC13892_SWITCHERS3_SW4VSEL_M           (0x1f<<0)
> > +#define MC13892_SWITCHERS3_SW4HI                       (1<<23)
> > +#define MC13892_SWITCHERS3_SW4EN               0
> > +
> > +#define MC13892_SWITCHERS4                             28
> > +#define MC13892_SWITCHERS4_SW1MODE                     0
> > +#define MC13892_SWITCHERS4_SW1MODE_AUTO                (8<<0)
> > +#define MC13892_SWITCHERS4_SW1MODE_M           (0xf<<0)
> > +#define MC13892_SWITCHERS4_SW2MODE                     10
> > +#define MC13892_SWITCHERS4_SW2MODE_AUTO                (8<<10)
> > +#define MC13892_SWITCHERS4_SW2MODE_M           (0xf<<10)
> > +
> > +#define MC13892_SWITCHERS5                             29
> > +#define MC13892_SWITCHERS5_SW3MODE                     0
> > +#define MC13892_SWITCHERS5_SW3MODE_AUTO                (8<<0)
> > +#define MC13892_SWITCHERS5_SW3MODE_M           (0xf<<0)
> > +#define MC13892_SWITCHERS5_SW4MODE                     8
> > +#define MC13892_SWITCHERS5_SW4MODE_AUTO                (8<<8)
> > +#define MC13892_SWITCHERS5_SW4MODE_M           (0xf<<8)
> > +#define MC13892_SWITCHERS5_SWBSTEN                     (1<<20)
> > +
> > +
> > +#define MC13892_REGULATORSETTING0                      30
> > +#define MC13892_REGULATORSETTING0_VGEN1VSEL            0
> > +#define MC13892_REGULATORSETTING0_VDIGVSEL             4
> > +#define MC13892_REGULATORSETTING0_VGEN2VSEL            6
> > +#define MC13892_REGULATORSETTING0_VPLLVSEL             9
> > +#define MC13892_REGULATORSETTING0_VUSB2VSEL            11
> > +#define MC13892_REGULATORSETTING0_VGEN3VSEL            14
> > +#define MC13892_REGULATORSETTING0_VCAMVSEL             16
> > +
> > +#define MC13892_REGULATORSETTING0_VGEN1VSEL_M  (3<<0)
> > +#define MC13892_REGULATORSETTING0_VDIGVSEL_M   (3<<4)
> > +#define MC13892_REGULATORSETTING0_VGEN2VSEL_M  (7<<6)
> > +#define MC13892_REGULATORSETTING0_VPLLVSEL_M   (3<<9)
> > +#define MC13892_REGULATORSETTING0_VUSB2VSEL_M  (3<<11)
> > +#define MC13892_REGULATORSETTING0_VGEN3VSEL_M  (1<<14)
> > +#define MC13892_REGULATORSETTING0_VCAMVSEL_M   (3<<16)
> > +
> > +#define MC13892_REGULATORSETTING1                      31
> > +#define MC13892_REGULATORSETTING1_VVIDEOVSEL   2
> > +#define MC13892_REGULATORSETTING1_VAUDIOVSEL   4
> > +#define MC13892_REGULATORSETTING1_VSDVSEL              6
> > +
> > +#define MC13892_REGULATORSETTING1_VVIDEOVSEL_M (3<<2)
> > +#define MC13892_REGULATORSETTING1_VAUDIOVSEL_M (3<<4)
> > +#define MC13892_REGULATORSETTING1_VSDVSEL_M            (7<<6)
> > +
> > +#define MC13892_REGULATORMODE0                 32
> > +#define MC13892_REGULATORMODE0_VGEN1EN         (1<<0)
> > +#define MC13892_REGULATORMODE0_VGEN1STDBY              (1<<1)
> > +#define MC13892_REGULATORMODE0_VGEN1MODE               (1<<2)
> > +#define MC13892_REGULATORMODE0_VIOHIEN         (1<<3)
> > +#define MC13892_REGULATORMODE0_VIOHISTDBY              (1<<4)
> > +#define MC13892_REGULATORMODE0_VIOHIMODE               (1<<5)
> > +#define MC13892_REGULATORMODE0_VDIGEN          (1<<9)
> > +#define MC13892_REGULATORMODE0_VDIGSTDBY               (1<<10)
> > +#define MC13892_REGULATORMODE0_VDIGMODE                (1<<11)
> > +#define MC13892_REGULATORMODE0_VGEN2EN         (1<<12)
> > +#define MC13892_REGULATORMODE0_VGEN2STDBY              (1<<13)
> > +#define MC13892_REGULATORMODE0_VGEN2MODE               (1<<14)
> > +#define MC13892_REGULATORMODE0_VPLLEN          (1<<15)
> > +#define MC13892_REGULATORMODE0_VPLLSTDBY               (1<<16)
> > +#define MC13892_REGULATORMODE0_VPLLMODE                (1<<17)
> > +#define MC13892_REGULATORMODE0_VUSB2EN         (1<<18)
> > +#define MC13892_REGULATORMODE0_VUSB2STDBY              (1<<19)
> > +#define MC13892_REGULATORMODE0_VUSB2MODE               (1<<20)
> > +
> > +#define MC13892_REGULATORMODE1                 33
> > +#define MC13892_REGULATORMODE1_VGEN3EN         (1<<0)
> > +#define MC13892_REGULATORMODE1_VGEN3STDBY              (1<<1)
> > +#define MC13892_REGULATORMODE1_VGEN3MODE               (1<<2)
> > +#define MC13892_REGULATORMODE1_VCAMEN          (1<<6)
> > +#define MC13892_REGULATORMODE1_VCAMSTDBY               (1<<7)
> > +#define MC13892_REGULATORMODE1_VCAMMODE                (1<<8)
> > +#define MC13892_REGULATORMODE1_VCAMCONFIGEN            (1<<9)
> > +#define MC13892_REGULATORMODE1_VVIDEOEN                (1<<12)
> > +#define MC13892_REGULATORMODE1_VVIDEOSTDBY             (1<<13)
> > +#define MC13892_REGULATORMODE1_VVIDEOMODE              (1<<14)
> > +#define MC13892_REGULATORMODE1_VAUDIOEN                (1<<15)
> > +#define MC13892_REGULATORMODE1_VAUDIOSTDBY             (1<<16)
> > +#define MC13892_REGULATORMODE1_VAUDIOMODE              (1<<17)
> > +#define MC13892_REGULATORMODE1_VSDEN           (1<<18)
> > +#define MC13892_REGULATORMODE1_VSDSTDBY                (1<<19)
> > +#define MC13892_REGULATORMODE1_VSDMODE         (1<<20)
> > +
> > +#define MC13892_POWERMISC                              34
> > +#define MC13892_POWERMISC_GPO1EN                       (1<<6)
> > +#define MC13892_POWERMISC_GPO2EN                       (1<<8)
> > +#define MC13892_POWERMISC_GPO3EN                       (1<<10)
> > +#define MC13892_POWERMISC_GPO4EN                       (1<<12)
> > +#define MC13892_POWERMISC_PWGT1SPIEN           (1<<15)
> > +#define MC13892_POWERMISC_PWGT2SPIEN           (1<<16)
> > +#define MC13892_POWERMISC_GPO4ADINEN           (1<<21)
> > +
> > +#define MC13892_POWERMISC_PWGTSPI_M                    (3 << 15)
> > +
> > +#define MC13892_USB1                           50
> > +#define MC13892_USB1_VUSBEN                            (1<<3)
> > +
> > +static const int mc13892_vcoincell[] = {
> > +       2500000, 2700000, 2800000, 2900000, 3000000, 3100000,
> > +       3200000, 3300000,
> > +};
> > +
> > +static const int mc13892_sw1[] = {
> > +       600000,   625000,  650000,  675000,  700000,  725000,
> > +       750000,   775000,  800000,  825000,  850000,  875000,
> > +       900000,   925000,  950000,  975000, 1000000, 1025000,
> > +       1050000, 1075000, 1100000, 1125000, 1150000, 1175000,
> > +       1200000, 1225000, 1250000, 1275000, 1300000, 1325000,
> > +       1350000, 1375000
> > +};
> > +
> > +static const int mc13892_sw[] = {
> > +       600000,   625000,  650000,  675000,  700000,  725000,
> > +       750000,   775000,  800000,  825000,  850000,  875000,
> > +       900000,   925000,  950000,  975000, 1000000, 1025000,
> > +       1050000, 1075000, 1100000, 1125000, 1150000, 1175000,
> > +       1200000, 1225000, 1250000, 1275000, 1300000, 1325000,
> > +       1350000, 1375000, 1400000, 1425000, 1450000, 1475000,
> > +       1500000, 1525000, 1550000, 1575000, 1600000, 1625000,
> > +       1650000, 1675000, 1700000, 1725000, 1750000, 1775000,
> > +       1800000, 1825000, 1850000, 1875000
> > +};
> > +
> > +static const int mc13892_swbst[] = {
> > +       5000000,
> > +};
> > +
> > +static const int mc13892_viohi[] = {
> > +       2775000,
> > +};
> > +
> > +static const int mc13892_vpll[] = {
> > +       1050000, 1250000, 1650000, 1800000,
> > +};
> > +
> > +static const int mc13892_vdig[] = {
> > +       1050000, 1250000, 1650000, 1800000,
> > +};
> > +
> > +static const int mc13892_vsd[] = {
> > +       1800000, 2000000, 2600000, 2700000,
> > +       2800000, 2900000, 3000000, 3150000,
> > +};
> > +
> > +static const int mc13892_vusb2[] = {
> > +       2400000, 2600000, 2700000, 2775000,
> > +};
> > +
> > +static const int mc13892_vvideo[] = {
> > +       2700000, 2775000, 2500000, 2600000,
> > +};
> > +
> > +static const int mc13892_vaudio[] = {
> > +       2300000, 2500000, 2775000, 3000000,
> > +};
> > +
> > +static const int mc13892_vcam[] = {
> > +       2500000, 2600000, 2750000, 3000000,
> > +};
> > +
> > +static const int mc13892_vgen1[] = {
> > +       1200000, 1500000, 2775000, 3150000,
> > +};
> > +
> > +static const int mc13892_vgen2[] = {
> > +       1200000, 1500000, 1600000, 1800000,
> > +       2700000, 2800000, 3000000, 3150000,
> > +};
> > +
> > +static const int mc13892_vgen3[] = {
> > +       1800000, 2900000,
> > +};
> > +
> > +static const int mc13892_vusb[] = {
> > +       3300000,
> > +};
> > +
> > +static const int mc13892_gpo[] = {
> > +       2750000,
> > +};
> > +
> > +static const int mc13892_pwgtdrv[] = {
> > +       5000000,
> > +};
> > +
> > +static struct regulator_ops mc13892_gpo_regulator_ops;
> > +/* sw regulators need special care due to the "hi bit" */
> > +static struct regulator_ops mc13892_sw_regulator_ops;
> > +
> > +
> > +#define MC13892_FIXED_DEFINE(name, reg, voltages)\
> > +       MC13xxx_FIXED_DEFINE(MC13892_, name, reg, voltages, \
> > +                       mc13xxx_fixed_regulator_ops)
> > +
> > +#define MC13892_GPO_DEFINE(name, reg, voltages)                \
> > +       MC13xxx_GPO_DEFINE(MC13892_, name, reg, voltages, \
> > +                       mc13892_gpo_regulator_ops)
> > +
> > +#define MC13892_SW_DEFINE(name, reg, vsel_reg, voltages)               \
> > +       MC13xxx_DEFINE(MC13892_, name, reg, vsel_reg, voltages, \
> > +                       mc13892_sw_regulator_ops)
> > +
> > +#define MC13892_DEFINE_REGU(name, reg, vsel_reg, voltages)             \
> > +       MC13xxx_DEFINE(MC13892_, name, reg, vsel_reg, voltages, \
> > +                       mc13xxx_regulator_ops)
> > +
> > +static struct mc13xxx_regulator mc13892_regulators[] = {
> > +       MC13892_DEFINE_REGU(VCOINCELL, POWERCTL0, POWERCTL0,            \
> > +                           mc13892_vcoincell),
> > +       MC13892_SW_DEFINE(SW1, SWITCHERS0, SWITCHERS0, mc13892_sw1),
> > +       MC13892_SW_DEFINE(SW2, SWITCHERS1, SWITCHERS1, mc13892_sw),
> > +       MC13892_SW_DEFINE(SW3, SWITCHERS2, SWITCHERS2, mc13892_sw),
> > +       MC13892_SW_DEFINE(SW4, SWITCHERS3, SWITCHERS3, mc13892_sw),
> > +       MC13892_FIXED_DEFINE(SWBST, SWITCHERS5, mc13892_swbst),
> > +       MC13892_FIXED_DEFINE(VIOHI, REGULATORMODE0, mc13892_viohi),
> > +       MC13892_DEFINE_REGU(VPLL, REGULATORMODE0, REGULATORSETTING0,    \
> > +                           mc13892_vpll),
> > +       MC13892_DEFINE_REGU(VDIG, REGULATORMODE0, REGULATORSETTING0,    \
> > +                           mc13892_vdig),
> > +       MC13892_DEFINE_REGU(VSD, REGULATORMODE1, REGULATORSETTING1,     \
> > +                           mc13892_vsd),
> > +       MC13892_DEFINE_REGU(VUSB2, REGULATORMODE0, REGULATORSETTING0,   \
> > +                           mc13892_vusb2),
> > +       MC13892_DEFINE_REGU(VVIDEO, REGULATORMODE1, REGULATORSETTING1,  \
> > +                           mc13892_vvideo),
> > +       MC13892_DEFINE_REGU(VAUDIO, REGULATORMODE1, REGULATORSETTING1,  \
> > +                           mc13892_vaudio),
> > +       MC13892_DEFINE_REGU(VCAM, REGULATORMODE1, REGULATORSETTING0, \
> > +                           mc13892_vcam),
> > +       MC13892_DEFINE_REGU(VGEN1, REGULATORMODE0, REGULATORSETTING0,   \
> > +                           mc13892_vgen1),
> > +       MC13892_DEFINE_REGU(VGEN2, REGULATORMODE0, REGULATORSETTING0,   \
> > +                           mc13892_vgen2),
> > +       MC13892_DEFINE_REGU(VGEN3, REGULATORMODE1, REGULATORSETTING0,   \
> > +                           mc13892_vgen3),
> > +       MC13892_FIXED_DEFINE(VUSB, USB1, mc13892_vusb),
> > +       MC13892_GPO_DEFINE(GPO1, POWERMISC, mc13892_gpo),
> > +       MC13892_GPO_DEFINE(GPO2, POWERMISC, mc13892_gpo),
> > +       MC13892_GPO_DEFINE(GPO3, POWERMISC, mc13892_gpo),
> > +       MC13892_GPO_DEFINE(GPO4, POWERMISC, mc13892_gpo),
> > +       MC13892_GPO_DEFINE(PWGT1SPI, POWERMISC, mc13892_pwgtdrv),
> > +       MC13892_GPO_DEFINE(PWGT2SPI, POWERMISC, mc13892_pwgtdrv),
> > +};
> > +
> > +int mc13892_powermisc_rmw(struct mc13xxx_regulator_priv *priv, u32 mask,
> > +                                                                       u32 val)
> > +{
> > +       struct mc13xxx *mc13892 = priv->mc13xxx;
> > +       int ret;
> > +       u32 valread;
> > +
> > +       BUG_ON(val & ~mask);
> > +
> > +       ret = mc13xxx_reg_read(mc13892, MC13892_POWERMISC, &valread);
> > +       if (ret)
> > +               return ret;
> > +
> > +       /* Update the stored state for Power Gates. */
> > +       priv->powermisc_pwgt_state =
> > +                               (priv->powermisc_pwgt_state & ~mask) | val;
> > +       priv->powermisc_pwgt_state &= MC13892_POWERMISC_PWGTSPI_M;
> > +
> > +       /* Construct the new register value */
> > +       valread = (valread & ~mask) | val;
> > +       /* Overwrite the PWGTxEN with the stored version */
> > +       valread = (valread & ~MC13892_POWERMISC_PWGTSPI_M) |
> > +                                               priv->powermisc_pwgt_state;
> > +
> > +       return mc13xxx_reg_write(mc13892, MC13892_POWERMISC, valread);
> > +}
> > +
> > +static int mc13892_gpo_regulator_enable(struct regulator_dev *rdev)
> > +{
> > +       struct mc13xxx_regulator_priv *priv = rdev_get_drvdata(rdev);
> > +       int id = rdev_get_id(rdev);
> > +       int ret;
> > +       u32 en_val = mc13892_regulators[id].enable_bit;
> > +       u32 mask = mc13892_regulators[id].enable_bit;
> > +
> > +       dev_dbg(rdev_get_dev(rdev), "%s id: %d\n", __func__, id);
> > +
> > +       /* Power Gate enable value is 0 */
> > +       if (id == MC13892_PWGT1SPI ||
> > +           id == MC13892_PWGT2SPI)
> > +               en_val = 0;
> > +
> > +       if (id == MC13892_GPO4)
> > +               mask |= MC13892_POWERMISC_GPO4ADINEN;
> > +
> > +       mc13xxx_lock(priv->mc13xxx);
> > +       ret = mc13892_powermisc_rmw(priv, mask, en_val);
> > +       mc13xxx_unlock(priv->mc13xxx);
> > +
> > +       return ret;
> > +}
> > +
> > +static int mc13892_gpo_regulator_disable(struct regulator_dev *rdev)
> > +{
> > +       struct mc13xxx_regulator_priv *priv = rdev_get_drvdata(rdev);
> > +       int id = rdev_get_id(rdev);
> > +       int ret;
> > +       u32 dis_val = 0;
> > +
> > +       dev_dbg(rdev_get_dev(rdev), "%s id: %d\n", __func__, id);
> > +
> > +       /* Power Gate disable value is 1 */
> > +       if (id == MC13892_PWGT1SPI ||
> > +           id == MC13892_PWGT2SPI)
> > +               dis_val = mc13892_regulators[id].enable_bit;
> > +
> > +       mc13xxx_lock(priv->mc13xxx);
> > +       ret = mc13892_powermisc_rmw(priv, mc13892_regulators[id].enable_bit,
> > +                                       dis_val);
> > +       mc13xxx_unlock(priv->mc13xxx);
> > +
> > +       return ret;
> > +}
> > +
> > +static int mc13892_gpo_regulator_is_enabled(struct regulator_dev *rdev)
> > +{
> > +       struct mc13xxx_regulator_priv *priv = rdev_get_drvdata(rdev);
> > +       int ret, id = rdev_get_id(rdev);
> > +       unsigned int val;
> > +
> > +       mc13xxx_lock(priv->mc13xxx);
> > +       ret = mc13xxx_reg_read(priv->mc13xxx, mc13892_regulators[id].reg, &val);
> > +       mc13xxx_unlock(priv->mc13xxx);
> > +
> > +       if (ret)
> > +               return ret;
> > +
> > +       /* Power Gates state is stored in powermisc_pwgt_state
> > +        * where the meaning of bits is negated */
> > +       val = (val & ~MC13892_POWERMISC_PWGTSPI_M) |
> > +             (priv->powermisc_pwgt_state ^ MC13892_POWERMISC_PWGTSPI_M);
> > +
> > +       return (val & mc13892_regulators[id].enable_bit) != 0;
> > +}
> > +
> > +
> > +static struct regulator_ops mc13892_gpo_regulator_ops = {
> > +       .enable = mc13892_gpo_regulator_enable,
> > +       .disable = mc13892_gpo_regulator_disable,
> > +       .is_enabled = mc13892_gpo_regulator_is_enabled,
> > +       .list_voltage = mc13xxx_regulator_list_voltage,
> > +       .set_voltage = mc13xxx_fixed_regulator_set_voltage,
> > +       .get_voltage = mc13xxx_fixed_regulator_get_voltage,
> > +};
> > +
> > +static int mc13892_sw_regulator_get_voltage(struct regulator_dev *rdev)
> > +{
> > +       struct mc13xxx_regulator_priv *priv = rdev_get_drvdata(rdev);
> > +       int ret, id = rdev_get_id(rdev);
> > +       unsigned int val, hi;
> > +
> > +       dev_dbg(rdev_get_dev(rdev), "%s id: %d\n", __func__, id);
> > +
> > +       mc13xxx_lock(priv->mc13xxx);
> > +       ret = mc13xxx_reg_read(priv->mc13xxx,
> > +                               mc13892_regulators[id].vsel_reg, &val);
> > +       mc13xxx_unlock(priv->mc13xxx);
> > +       if (ret)
> > +               return ret;
> > +
> > +       hi  = val & MC13892_SWITCHERS0_SWxHI;
> > +       val = (val & mc13892_regulators[id].vsel_mask)
> > +               >> mc13892_regulators[id].vsel_shift;
> > +
> > +       dev_dbg(rdev_get_dev(rdev), "%s id: %d val: %d\n", __func__, id, val);
> > +
> > +       if (hi)
> > +               val = (25000 * val) + 1100000;
> > +       else
> > +               val = (25000 * val) + 600000;
> > +
> > +       return val;
> > +}
> > +
> > +static int mc13892_sw_regulator_set_voltage(struct regulator_dev *rdev,
> > +                                               int min_uV, int max_uV)
> > +{
> > +       struct mc13xxx_regulator_priv *priv = rdev_get_drvdata(rdev);
> > +       int hi, value, val, mask, id = rdev_get_id(rdev);
> > +       int ret;
> > +
> > +       dev_dbg(rdev_get_dev(rdev), "%s id: %d min_uV: %d max_uV: %d\n",
> > +               __func__, id, min_uV, max_uV);
> > +
> > +       /* Find the best index */
> > +       value = mc13xxx_get_best_voltage_index(rdev, min_uV, max_uV);
> > +       dev_dbg(rdev_get_dev(rdev), "%s best value: %d\n", __func__, value);
> > +       if (value < 0)
> > +               return value;
> > +
> > +       value = mc13892_regulators[id].voltages[value];
> > +
> > +       mc13xxx_lock(priv->mc13xxx);
> > +       ret = mc13xxx_reg_read(priv->mc13xxx,
> > +                               mc13892_regulators[id].vsel_reg, &val);
> > +       if (ret)
> > +               goto err;
> > +
> > +       hi  = val & MC13892_SWITCHERS0_SWxHI;
> > +       if (value > 1375)
> > +               hi = 1;
> > +       if (value < 1100)
> > +               hi = 0;
> > +
> > +       if (hi) {
> > +               value = (value - 1100000) / 25000;
> > +               value |= MC13892_SWITCHERS0_SWxHI;
> > +       } else
> > +               value = (value - 600000) / 25000;
> > +
> > +       mask = mc13892_regulators[id].vsel_mask | MC13892_SWITCHERS0_SWxHI;
> > +       ret = mc13xxx_reg_rmw(priv->mc13xxx, mc13892_regulators[id].vsel_reg,
> > +                       mask,
> > +                       value << mc13892_regulators[id].vsel_shift);
> > +err:
> > +       mc13xxx_unlock(priv->mc13xxx);
> > +
> > +       return ret;
> > +}
> > +
> > +static struct regulator_ops mc13892_sw_regulator_ops = {
> > +       .is_enabled = mc13xxx_sw_regulator_is_enabled,
> > +       .list_voltage = mc13xxx_regulator_list_voltage,
> > +       .set_voltage = mc13892_sw_regulator_set_voltage,
> > +       .get_voltage = mc13892_sw_regulator_get_voltage,
> > +};
> > +
> > +static int mc13892_vcam_set_mode(struct regulator_dev *rdev, unsigned int mode)
> > +{
> > +       unsigned int en_val = 0;
> > +       struct mc13xxx_regulator_priv *priv = rdev_get_drvdata(rdev);
> > +       int ret, id = rdev_get_id(rdev);
> > +
> > +       if (mode == REGULATOR_MODE_FAST)
> > +               en_val = MC13892_REGULATORMODE1_VCAMCONFIGEN;
> > +
> > +       mc13xxx_lock(priv->mc13xxx);
> > +       ret = mc13xxx_reg_rmw(priv->mc13xxx, mc13892_regulators[id].reg,
> > +                       MC13892_REGULATORMODE1_VCAMCONFIGEN,
> > +                       en_val);
> > +       mc13xxx_unlock(priv->mc13xxx);
> > +
> > +       return ret;
> > +}
> > +
> > +unsigned int mc13892_vcam_get_mode(struct regulator_dev *rdev)
> > +{
> > +       struct mc13xxx_regulator_priv *priv = rdev_get_drvdata(rdev);
> > +       int ret, id = rdev_get_id(rdev);
> > +       unsigned int val;
> > +
> > +       mc13xxx_lock(priv->mc13xxx);
> > +       ret = mc13xxx_reg_read(priv->mc13xxx, mc13892_regulators[id].reg, &val);
> > +       mc13xxx_unlock(priv->mc13xxx);
> > +
> > +       if (ret)
> > +               return ret;
> > +
> > +       if (val & MC13892_REGULATORMODE1_VCAMCONFIGEN)
> > +               return REGULATOR_MODE_FAST;
> > +
> > +       return REGULATOR_MODE_NORMAL;
> > +}
> > +
> > +
> > +static int __devinit mc13892_regulator_probe(struct platform_device *pdev)
> > +{
> > +       struct mc13xxx_regulator_priv *priv;
> > +       struct mc13xxx *mc13892 = dev_get_drvdata(pdev->dev.parent);
> > +       struct mc13xxx_regulator_platform_data *pdata =
> > +               dev_get_platdata(&pdev->dev);
> > +       struct mc13xxx_regulator_init_data *init_data;
> > +       int i, ret;
> > +       u32 val;
> > +
> > +       priv = kzalloc(sizeof(*priv) +
> > +                       pdata->num_regulators * sizeof(priv->regulators[0]),
> > +                       GFP_KERNEL);
> > +       if (!priv)
> > +               return -ENOMEM;
> > +
> > +       priv->mc13xxx_regulators = mc13892_regulators;
> > +       priv->mc13xxx = mc13892;
> > +
> > +       mc13xxx_lock(mc13892);
> > +       ret = mc13xxx_reg_read(mc13892, MC13892_REVISION, &val);
> > +       mc13xxx_unlock(mc13892);
> > +       if (ret)
> > +               goto err_alloc;
> > +
> > +       /* enable switch auto mode */
> > +       if ((val & 0x0000FFFF) == 0x45d0) {
> > +               mc13xxx_lock(mc13892);
> > +               ret = mc13xxx_reg_rmw(mc13892, MC13892_SWITCHERS4,
> > +                       MC13892_SWITCHERS4_SW1MODE_M |
> > +                       MC13892_SWITCHERS4_SW2MODE_M,
> > +                       MC13892_SWITCHERS4_SW1MODE_AUTO |
> > +                       MC13892_SWITCHERS4_SW2MODE_AUTO);
> > +               mc13xxx_unlock(mc13892);
> > +               if (ret)
> > +                       goto err_alloc;
> > +
> > +               mc13xxx_lock(mc13892);
> > +               mc13xxx_reg_rmw(mc13892, MC13892_SWITCHERS5,
> > +                       MC13892_SWITCHERS5_SW3MODE_M |
> > +                       MC13892_SWITCHERS5_SW4MODE_M,
> > +                       MC13892_SWITCHERS5_SW3MODE_AUTO |
> > +                       MC13892_SWITCHERS5_SW4MODE_AUTO);
> > +               mc13xxx_unlock(mc13892);
> > +               if (ret)
> > +                       goto err_alloc;
> > +       }
> > +
> > +       mc13892_regulators[MC13892_VCAM].desc.ops->set_mode
> > +               = mc13892_vcam_set_mode;
> > +       mc13892_regulators[MC13892_VCAM].desc.ops->get_mode
> > +               = mc13892_vcam_get_mode;
> > +       for (i = 0; i < pdata->num_regulators; i++) {
> > +               init_data = &pdata->regulators[i];
> > +               priv->regulators[i] = regulator_register(
> > +                               &mc13892_regulators[init_data->id].desc,
> > +                               &pdev->dev, init_data->init_data, priv);
> > +
> > +               if (IS_ERR(priv->regulators[i])) {
> > +                       dev_err(&pdev->dev, "failed to register regulator %s\n",
> > +                               mc13892_regulators[i].desc.name);
> > +                       ret = PTR_ERR(priv->regulators[i]);
> > +                       goto err;
> > +               }
> > +       }
> > +
> > +       platform_set_drvdata(pdev, priv);
> > +
> > +       return 0;
> > +err:
> > +       while (--i >= 0)
> > +               regulator_unregister(priv->regulators[i]);
> > +
> > +err_alloc:
> > +       kfree(priv);
> > +
> > +       return ret;
> > +}
> > +
> > +static int __devexit mc13892_regulator_remove(struct platform_device *pdev)
> > +{
> > +       struct mc13xxx_regulator_priv *priv = platform_get_drvdata(pdev);
> > +       struct mc13xxx_regulator_platform_data *pdata =
> > +               dev_get_platdata(&pdev->dev);
> > +       int i;
> > +
> > +       platform_set_drvdata(pdev, NULL);
> > +
> > +       for (i = 0; i < pdata->num_regulators; i++)
> > +               regulator_unregister(priv->regulators[i]);
> > +
> > +       kfree(priv);
> > +       return 0;
> > +}
> > +
> > +static struct platform_driver mc13892_regulator_driver = {
> > +       .driver = {
> > +               .name   = "mc13892-regulator",
> > +               .owner  = THIS_MODULE,
> > +       },
> > +       .remove = __devexit_p(mc13892_regulator_remove),
> > +       .probe  = mc13892_regulator_probe,
> > +};
> > +
> > +static int __init mc13892_regulator_init(void)
> > +{
> > +       return platform_driver_register(&mc13892_regulator_driver);
> > +}
> > +subsys_initcall(mc13892_regulator_init);
> > +
> > +static void __exit mc13892_regulator_exit(void)
> > +{
> > +       platform_driver_unregister(&mc13892_regulator_driver);
> > +}
> > +module_exit(mc13892_regulator_exit);
> > +
> > +MODULE_LICENSE("GPL v2");
> > +MODULE_AUTHOR("Yong Shen <yong.shen@linaro.org>");
> > +MODULE_DESCRIPTION("Regulator Driver for Freescale MC13892 PMIC");
> > +MODULE_ALIAS("platform:mc13892-regulator");
> > diff --git a/include/linux/mfd/mc13892.h b/include/linux/mfd/mc13892.h
> > new file mode 100644
> > index 0000000..7df13e8
> > --- /dev/null
> > +++ b/include/linux/mfd/mc13892.h
> > @@ -0,0 +1,38 @@
> > +/*
> > + * Copyright 2010 Yong Shen <yong.shen@linaro.org>
> > + *
> > + * This program is free software; you can redistribute it and/or modify it under
> > + * the terms of the GNU General Public License version 2 as published by the
> > + * Free Software Foundation.
> > + */
> > +
> > +#ifndef __LINUX_MFD_MC13892_H
> > +#define __LINUX_MFD_MC13892_H
> > +#include <linux/mfd/mc13xxx.h>
> > +
> > +#define MC13892_SW1            0
> > +#define MC13892_SW2            1
> > +#define MC13892_SW3            2
> > +#define MC13892_SW4            3
> > +#define MC13892_SWBST  4
> > +#define MC13892_VIOHI  5
> > +#define MC13892_VPLL   6
> > +#define MC13892_VDIG   7
> > +#define MC13892_VSD    8
> > +#define MC13892_VUSB2  9
> > +#define MC13892_VVIDEO 10
> > +#define MC13892_VAUDIO 11
> > +#define MC13892_VCAM   12
> > +#define MC13892_VGEN1  13
> > +#define MC13892_VGEN2  14
> > +#define MC13892_VGEN3  15
> > +#define MC13892_VUSB   16
> > +#define MC13892_GPO1   17
> > +#define MC13892_GPO2   18
> > +#define MC13892_GPO3   19
> > +#define MC13892_GPO4   20
> > +#define MC13892_PWGT1SPI       21
> > +#define MC13892_PWGT2SPI       22
> > +#define MC13892_VCOINCELL      23
> > +
> > +#endif
> > --
> > 1.7.0.4
> >
> >
> >
> 
> _______________________________________________
> linux-arm-kernel mailing list
> linux-arm-kernel at lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 20+ messages in thread

* [PATCHv3] support PMIC mc13892
  2010-12-08 10:01     ` Mark Brown
  2010-12-08 10:55       ` Uwe Kleine-König
@ 2010-12-08 14:26       ` Arnaud Patard (Rtp)
  2010-12-08 17:11         ` Mark Brown
  1 sibling, 1 reply; 20+ messages in thread
From: Arnaud Patard (Rtp) @ 2010-12-08 14:26 UTC (permalink / raw)
  To: linux-arm-kernel

Mark Brown <broonie@opensource.wolfsonmicro.com> writes:

> On Wed, Dec 08, 2010 at 10:12:26AM +0100, Uwe Kleine-K?nig wrote:
>
> Please cut unneded context - it makes it much easier to find the new
> text in your replies!
>
>> > +	if (ret)
>> > +		goto err_alloc;
>
>> err_alloc seems wrong.  The goto is taken when reading the revision
>> register fails, not on a failed allocation.
>
> His code is following the style of naming the exit points after what
> needs to be unwound rather than after the place jumped from which is
> common enough?
>
>> > +#define MC13892_PWGT1SPI	21
>> > +#define MC13892_PWGT2SPI	22
>> > +#define MC13892_VCOINCELL	23
>
>> I thought you wanted to put these somewhere below drivers/regulator/.
>
> Please.

If we move this header into drivers/regulator, how are we supposed to
declared regulators in the machine file ?
The regulator code does:
                priv->regulators[i] = regulator_register(
                                &mc13892_regulators[init_data->id].desc,
                                &pdev->dev, init_data->init_data, priv);

so, I'm declaring like this in the machine file:
static struct mc13xxx_regulator_init_data mx51_efikamx_regulators[] = {
        { .id = MC13892_SW1,            .init_data =  &sw1_init },
        { .id = MC13892_SW2,            .init_data =  &sw2_init },

I'm stupid enough to think that .id should match in the machine file and
in the regulator driver. Did I miss something ?

Arnaud

^ permalink raw reply	[flat|nested] 20+ messages in thread

* [PATCHv3] support PMIC mc13892
  2010-12-08 14:26       ` Arnaud Patard (Rtp)
@ 2010-12-08 17:11         ` Mark Brown
  2010-12-09  3:27           ` Yong Shen
  0 siblings, 1 reply; 20+ messages in thread
From: Mark Brown @ 2010-12-08 17:11 UTC (permalink / raw)
  To: linux-arm-kernel

On Wed, Dec 08, 2010 at 03:26:16PM +0100, Arnaud Patard wrote:
> >> > +#define MC13892_PWGT1SPI	21
> >> > +#define MC13892_PWGT2SPI	22
> >> > +#define MC13892_VCOINCELL	23

> If we move this header into drivers/regulator, how are we supposed to
> declared regulators in the machine file ?

Oh, fail, yes - with this interface you do need to put the defines where
the machine driver can see them.

^ permalink raw reply	[flat|nested] 20+ messages in thread

* [PATCHv3] support PMIC mc13892
  2010-12-08 17:11         ` Mark Brown
@ 2010-12-09  3:27           ` Yong Shen
  0 siblings, 0 replies; 20+ messages in thread
From: Yong Shen @ 2010-12-09  3:27 UTC (permalink / raw)
  To: linux-arm-kernel

On Thu, Dec 9, 2010 at 1:11 AM, Mark Brown
<broonie@opensource.wolfsonmicro.com> wrote:
> On Wed, Dec 08, 2010 at 03:26:16PM +0100, Arnaud Patard wrote:
>> >> > +#define MC13892_PWGT1SPI ? ? ? ?21
>> >> > +#define MC13892_PWGT2SPI ? ? ? ?22
>> >> > +#define MC13892_VCOINCELL ? ? ? 23
>
>> If we move this header into drivers/regulator, how are we supposed to
>> declared regulators in the machine file ?
>
> Oh, fail, yes - with this interface you do need to put the defines where
> the machine driver can see them.
>
Yes, that's the main reason for this. And besides that, there also
possibility for other mc13892 related drivers to use these
definitions, so it should be better in 'include/linux/mfd'.

Yong

^ permalink raw reply	[flat|nested] 20+ messages in thread

* [PATCHv3] support PMIC mc13892
  2010-12-08 12:54     ` Liam Girdwood
@ 2010-12-09  5:13       ` Yong Shen
  2010-12-09  9:21         ` Liam Girdwood
  0 siblings, 1 reply; 20+ messages in thread
From: Yong Shen @ 2010-12-09  5:13 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Sascha and Uwe,

On Wed, Dec 8, 2010 at 8:54 PM, Liam Girdwood <lrg@slimlogic.co.uk> wrote:
> On Wed, 2010-12-08 at 11:28 +0800, Yong Shen wrote:
>> Hi Liam,
>>
>> Last time, you took the previous patches for mc13783 code
>> reorganization in your tree,
>
> I've not applied this yet, I'm waiting on an Ack from either Sascha or
> Uwe regarding the arch mxc changes in this patch.
>
It seems that Liam is waiting for an ack from you about previous
mc13783 patch. I am not sure about the arch mxc changes he mentioned,
could you please feedback on this?

Thanks
Yong
>> I suppose you can also please take
>> mc13892, which had passed review.
>>
>
> Again, lets wait for Acks from Mark and Uwe here.
>
> Thanks
>
> Liam
>
>> Thanks
>> Yong
>>
>> On Wed, Dec 8, 2010 at 11:21 AM, ?<yong.shen@freescale.com> wrote:
>> > From: Yong Shen <yong.shen@linaro.org>
>> >
>> > add support for mc13892, tested on mx51 babbage board
>> >
>> > Signed-off-by: Arnaud Patard <arnaud.patard@rtp-net.org>
>> > Signed-off-by: Yong Shen <yong.shen@linaro.org>
>> > ---
>> > ?drivers/regulator/Kconfig ? ? ? ? ? ? | ? ?8 +
>> > ?drivers/regulator/Makefile ? ? ? ? ? ?| ? ?1 +
>> > ?drivers/regulator/mc13892-regulator.c | ?644 +++++++++++++++++++++++++++++++++
>> > ?include/linux/mfd/mc13892.h ? ? ? ? ? | ? 38 ++
>> > ?4 files changed, 691 insertions(+), 0 deletions(-)
>> > ?create mode 100644 drivers/regulator/mc13892-regulator.c
>> > ?create mode 100644 include/linux/mfd/mc13892.h
>> >
>> > diff --git a/drivers/regulator/Kconfig b/drivers/regulator/Kconfig
>> > index 6e54253..1673a4f 100644
>> > --- a/drivers/regulator/Kconfig
>> > +++ b/drivers/regulator/Kconfig
>> > @@ -197,6 +197,14 @@ config REGULATOR_MC13783
>> > ? ? ? ? ?Say y here to support the regulators found on the Freescale MC13783
>> > ? ? ? ? ?PMIC.
>> >
>> > +config REGULATOR_MC13892
>> > + ? ? ? tristate "Support regulators on Freescale MC13892 PMIC"
>> > + ? ? ? depends on MFD_MC13XXX
>> > + ? ? ? select REGULATOR_MC13XXX_CORE
>> > + ? ? ? help
>> > + ? ? ? ? Say y here to support the regulators found on the Freescale MC13892
>> > + ? ? ? ? PMIC.
>> > +
>> > ?config REGULATOR_AB3100
>> > ? ? ? ?tristate "ST-Ericsson AB3100 Regulator functions"
>> > ? ? ? ?depends on AB3100_CORE
>> > diff --git a/drivers/regulator/Makefile b/drivers/regulator/Makefile
>> > index 11876be..3107480 100644
>> > --- a/drivers/regulator/Makefile
>> > +++ b/drivers/regulator/Makefile
>> > @@ -30,6 +30,7 @@ obj-$(CONFIG_REGULATOR_DA903X) ? ? ? ?+= da903x.o
>> > ?obj-$(CONFIG_REGULATOR_PCF50633) += pcf50633-regulator.o
>> > ?obj-$(CONFIG_REGULATOR_PCAP) += pcap-regulator.o
>> > ?obj-$(CONFIG_REGULATOR_MC13783) += mc13783-regulator.o
>> > +obj-$(CONFIG_REGULATOR_MC13892) += mc13892-regulator.o
>> > ?obj-$(CONFIG_REGULATOR_MC13XXX_CORE) += ?mc13xxx-regulator-core.o
>> > ?obj-$(CONFIG_REGULATOR_AB3100) += ab3100.o
>> >
>> > diff --git a/drivers/regulator/mc13892-regulator.c b/drivers/regulator/mc13892-regulator.c
>> > new file mode 100644
>> > index 0000000..1b23170
>> > --- /dev/null
>> > +++ b/drivers/regulator/mc13892-regulator.c
>> > @@ -0,0 +1,644 @@
>> > +/*
>> > + * Regulator Driver for Freescale MC13892 PMIC
>> > + *
>> > + * Copyright 2010 Yong Shen <yong.shen@linaro.org>
>> > + *
>> > + * Based on draft driver from Arnaud Patard <arnaud.patard@rtp-net.org>
>> > + *
>> > + * This program is free software; you can redistribute it and/or modify
>> > + * it under the terms of the GNU General Public License version 2 as
>> > + * published by the Free Software Foundation.
>> > + */
>> > +
>> > +#include <linux/mfd/mc13892.h>
>> > +#include <linux/regulator/machine.h>
>> > +#include <linux/regulator/driver.h>
>> > +#include <linux/platform_device.h>
>> > +#include <linux/kernel.h>
>> > +#include <linux/slab.h>
>> > +#include <linux/init.h>
>> > +#include <linux/err.h>
>> > +#include "mc13xxx.h"
>> > +
>> > +#define MC13892_REVISION ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 7
>> > +
>> > +#define MC13892_POWERCTL0 ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?13
>> > +#define MC13892_POWERCTL0_USEROFFSPI ? ? ? ? ? 3
>> > +#define MC13892_POWERCTL0_VCOINCELLVSEL ? ? ? ? ? ? ? ?20
>> > +#define MC13892_POWERCTL0_VCOINCELLVSEL_M ? ? ? ? ? ? ?(7<<20)
>> > +#define MC13892_POWERCTL0_VCOINCELLEN ? ? ? ? ?(1<<23)
>> > +
>> > +#define MC13892_SWITCHERS0_SWxHI ? ? ? ? ? ? ? ? ? ? ? (1<<23)
>> > +
>> > +#define MC13892_SWITCHERS0 ? ? ? ? ? ? ? ? ? ? ? ? ? ? 24
>> > +#define MC13892_SWITCHERS0_SW1VSEL ? ? ? ? ? ? ? ? ? ? 0
>> > +#define MC13892_SWITCHERS0_SW1VSEL_M ? ? ? ? ? (0x1f<<0)
>> > +#define MC13892_SWITCHERS0_SW1HI ? ? ? ? ? ? ? ? ? ? ? (1<<23)
>> > +#define MC13892_SWITCHERS0_SW1EN ? ? ? ? ? ? ? 0
>> > +
>> > +#define MC13892_SWITCHERS1 ? ? ? ? ? ? ? ? ? ? ? ? ? ? 25
>> > +#define MC13892_SWITCHERS1_SW2VSEL ? ? ? ? ? ? ? ? ? ? 0
>> > +#define MC13892_SWITCHERS1_SW2VSEL_M ? ? ? ? ? (0x1f<<0)
>> > +#define MC13892_SWITCHERS1_SW2HI ? ? ? ? ? ? ? ? ? ? ? (1<<23)
>> > +#define MC13892_SWITCHERS1_SW2EN ? ? ? ? ? ? ? 0
>> > +
>> > +#define MC13892_SWITCHERS2 ? ? ? ? ? ? ? ? ? ? ? ? ? ? 26
>> > +#define MC13892_SWITCHERS2_SW3VSEL ? ? ? ? ? ? ? ? ? ? 0
>> > +#define MC13892_SWITCHERS2_SW3VSEL_M ? ? ? ? ? (0x1f<<0)
>> > +#define MC13892_SWITCHERS2_SW3HI ? ? ? ? ? ? ? ? ? ? ? (1<<23)
>> > +#define MC13892_SWITCHERS2_SW3EN ? ? ? ? ? ? ? 0
>> > +
>> > +#define MC13892_SWITCHERS3 ? ? ? ? ? ? ? ? ? ? ? ? ? ? 27
>> > +#define MC13892_SWITCHERS3_SW4VSEL ? ? ? ? ? ? ? ? ? ? 0
>> > +#define MC13892_SWITCHERS3_SW4VSEL_M ? ? ? ? ? (0x1f<<0)
>> > +#define MC13892_SWITCHERS3_SW4HI ? ? ? ? ? ? ? ? ? ? ? (1<<23)
>> > +#define MC13892_SWITCHERS3_SW4EN ? ? ? ? ? ? ? 0
>> > +
>> > +#define MC13892_SWITCHERS4 ? ? ? ? ? ? ? ? ? ? ? ? ? ? 28
>> > +#define MC13892_SWITCHERS4_SW1MODE ? ? ? ? ? ? ? ? ? ? 0
>> > +#define MC13892_SWITCHERS4_SW1MODE_AUTO ? ? ? ? ? ? ? ?(8<<0)
>> > +#define MC13892_SWITCHERS4_SW1MODE_M ? ? ? ? ? (0xf<<0)
>> > +#define MC13892_SWITCHERS4_SW2MODE ? ? ? ? ? ? ? ? ? ? 10
>> > +#define MC13892_SWITCHERS4_SW2MODE_AUTO ? ? ? ? ? ? ? ?(8<<10)
>> > +#define MC13892_SWITCHERS4_SW2MODE_M ? ? ? ? ? (0xf<<10)
>> > +
>> > +#define MC13892_SWITCHERS5 ? ? ? ? ? ? ? ? ? ? ? ? ? ? 29
>> > +#define MC13892_SWITCHERS5_SW3MODE ? ? ? ? ? ? ? ? ? ? 0
>> > +#define MC13892_SWITCHERS5_SW3MODE_AUTO ? ? ? ? ? ? ? ?(8<<0)
>> > +#define MC13892_SWITCHERS5_SW3MODE_M ? ? ? ? ? (0xf<<0)
>> > +#define MC13892_SWITCHERS5_SW4MODE ? ? ? ? ? ? ? ? ? ? 8
>> > +#define MC13892_SWITCHERS5_SW4MODE_AUTO ? ? ? ? ? ? ? ?(8<<8)
>> > +#define MC13892_SWITCHERS5_SW4MODE_M ? ? ? ? ? (0xf<<8)
>> > +#define MC13892_SWITCHERS5_SWBSTEN ? ? ? ? ? ? ? ? ? ? (1<<20)
>> > +
>> > +
>> > +#define MC13892_REGULATORSETTING0 ? ? ? ? ? ? ? ? ? ? ?30
>> > +#define MC13892_REGULATORSETTING0_VGEN1VSEL ? ? ? ? ? ?0
>> > +#define MC13892_REGULATORSETTING0_VDIGVSEL ? ? ? ? ? ? 4
>> > +#define MC13892_REGULATORSETTING0_VGEN2VSEL ? ? ? ? ? ?6
>> > +#define MC13892_REGULATORSETTING0_VPLLVSEL ? ? ? ? ? ? 9
>> > +#define MC13892_REGULATORSETTING0_VUSB2VSEL ? ? ? ? ? ?11
>> > +#define MC13892_REGULATORSETTING0_VGEN3VSEL ? ? ? ? ? ?14
>> > +#define MC13892_REGULATORSETTING0_VCAMVSEL ? ? ? ? ? ? 16
>> > +
>> > +#define MC13892_REGULATORSETTING0_VGEN1VSEL_M ?(3<<0)
>> > +#define MC13892_REGULATORSETTING0_VDIGVSEL_M ? (3<<4)
>> > +#define MC13892_REGULATORSETTING0_VGEN2VSEL_M ?(7<<6)
>> > +#define MC13892_REGULATORSETTING0_VPLLVSEL_M ? (3<<9)
>> > +#define MC13892_REGULATORSETTING0_VUSB2VSEL_M ?(3<<11)
>> > +#define MC13892_REGULATORSETTING0_VGEN3VSEL_M ?(1<<14)
>> > +#define MC13892_REGULATORSETTING0_VCAMVSEL_M ? (3<<16)
>> > +
>> > +#define MC13892_REGULATORSETTING1 ? ? ? ? ? ? ? ? ? ? ?31
>> > +#define MC13892_REGULATORSETTING1_VVIDEOVSEL ? 2
>> > +#define MC13892_REGULATORSETTING1_VAUDIOVSEL ? 4
>> > +#define MC13892_REGULATORSETTING1_VSDVSEL ? ? ? ? ? ? ?6
>> > +
>> > +#define MC13892_REGULATORSETTING1_VVIDEOVSEL_M (3<<2)
>> > +#define MC13892_REGULATORSETTING1_VAUDIOVSEL_M (3<<4)
>> > +#define MC13892_REGULATORSETTING1_VSDVSEL_M ? ? ? ? ? ?(7<<6)
>> > +
>> > +#define MC13892_REGULATORMODE0 ? ? ? ? ? ? ? ? 32
>> > +#define MC13892_REGULATORMODE0_VGEN1EN ? ? ? ? (1<<0)
>> > +#define MC13892_REGULATORMODE0_VGEN1STDBY ? ? ? ? ? ? ?(1<<1)
>> > +#define MC13892_REGULATORMODE0_VGEN1MODE ? ? ? ? ? ? ? (1<<2)
>> > +#define MC13892_REGULATORMODE0_VIOHIEN ? ? ? ? (1<<3)
>> > +#define MC13892_REGULATORMODE0_VIOHISTDBY ? ? ? ? ? ? ?(1<<4)
>> > +#define MC13892_REGULATORMODE0_VIOHIMODE ? ? ? ? ? ? ? (1<<5)
>> > +#define MC13892_REGULATORMODE0_VDIGEN ? ? ? ? ?(1<<9)
>> > +#define MC13892_REGULATORMODE0_VDIGSTDBY ? ? ? ? ? ? ? (1<<10)
>> > +#define MC13892_REGULATORMODE0_VDIGMODE ? ? ? ? ? ? ? ?(1<<11)
>> > +#define MC13892_REGULATORMODE0_VGEN2EN ? ? ? ? (1<<12)
>> > +#define MC13892_REGULATORMODE0_VGEN2STDBY ? ? ? ? ? ? ?(1<<13)
>> > +#define MC13892_REGULATORMODE0_VGEN2MODE ? ? ? ? ? ? ? (1<<14)
>> > +#define MC13892_REGULATORMODE0_VPLLEN ? ? ? ? ?(1<<15)
>> > +#define MC13892_REGULATORMODE0_VPLLSTDBY ? ? ? ? ? ? ? (1<<16)
>> > +#define MC13892_REGULATORMODE0_VPLLMODE ? ? ? ? ? ? ? ?(1<<17)
>> > +#define MC13892_REGULATORMODE0_VUSB2EN ? ? ? ? (1<<18)
>> > +#define MC13892_REGULATORMODE0_VUSB2STDBY ? ? ? ? ? ? ?(1<<19)
>> > +#define MC13892_REGULATORMODE0_VUSB2MODE ? ? ? ? ? ? ? (1<<20)
>> > +
>> > +#define MC13892_REGULATORMODE1 ? ? ? ? ? ? ? ? 33
>> > +#define MC13892_REGULATORMODE1_VGEN3EN ? ? ? ? (1<<0)
>> > +#define MC13892_REGULATORMODE1_VGEN3STDBY ? ? ? ? ? ? ?(1<<1)
>> > +#define MC13892_REGULATORMODE1_VGEN3MODE ? ? ? ? ? ? ? (1<<2)
>> > +#define MC13892_REGULATORMODE1_VCAMEN ? ? ? ? ?(1<<6)
>> > +#define MC13892_REGULATORMODE1_VCAMSTDBY ? ? ? ? ? ? ? (1<<7)
>> > +#define MC13892_REGULATORMODE1_VCAMMODE ? ? ? ? ? ? ? ?(1<<8)
>> > +#define MC13892_REGULATORMODE1_VCAMCONFIGEN ? ? ? ? ? ?(1<<9)
>> > +#define MC13892_REGULATORMODE1_VVIDEOEN ? ? ? ? ? ? ? ?(1<<12)
>> > +#define MC13892_REGULATORMODE1_VVIDEOSTDBY ? ? ? ? ? ? (1<<13)
>> > +#define MC13892_REGULATORMODE1_VVIDEOMODE ? ? ? ? ? ? ?(1<<14)
>> > +#define MC13892_REGULATORMODE1_VAUDIOEN ? ? ? ? ? ? ? ?(1<<15)
>> > +#define MC13892_REGULATORMODE1_VAUDIOSTDBY ? ? ? ? ? ? (1<<16)
>> > +#define MC13892_REGULATORMODE1_VAUDIOMODE ? ? ? ? ? ? ?(1<<17)
>> > +#define MC13892_REGULATORMODE1_VSDEN ? ? ? ? ? (1<<18)
>> > +#define MC13892_REGULATORMODE1_VSDSTDBY ? ? ? ? ? ? ? ?(1<<19)
>> > +#define MC13892_REGULATORMODE1_VSDMODE ? ? ? ? (1<<20)
>> > +
>> > +#define MC13892_POWERMISC ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?34
>> > +#define MC13892_POWERMISC_GPO1EN ? ? ? ? ? ? ? ? ? ? ? (1<<6)
>> > +#define MC13892_POWERMISC_GPO2EN ? ? ? ? ? ? ? ? ? ? ? (1<<8)
>> > +#define MC13892_POWERMISC_GPO3EN ? ? ? ? ? ? ? ? ? ? ? (1<<10)
>> > +#define MC13892_POWERMISC_GPO4EN ? ? ? ? ? ? ? ? ? ? ? (1<<12)
>> > +#define MC13892_POWERMISC_PWGT1SPIEN ? ? ? ? ? (1<<15)
>> > +#define MC13892_POWERMISC_PWGT2SPIEN ? ? ? ? ? (1<<16)
>> > +#define MC13892_POWERMISC_GPO4ADINEN ? ? ? ? ? (1<<21)
>> > +
>> > +#define MC13892_POWERMISC_PWGTSPI_M ? ? ? ? ? ? ? ? ? ?(3 << 15)
>> > +
>> > +#define MC13892_USB1 ? ? ? ? ? ? ? ? ? ? ? ? ? 50
>> > +#define MC13892_USB1_VUSBEN ? ? ? ? ? ? ? ? ? ? ? ? ? ?(1<<3)
>> > +
>> > +static const int mc13892_vcoincell[] = {
>> > + ? ? ? 2500000, 2700000, 2800000, 2900000, 3000000, 3100000,
>> > + ? ? ? 3200000, 3300000,
>> > +};
>> > +
>> > +static const int mc13892_sw1[] = {
>> > + ? ? ? 600000, ? 625000, ?650000, ?675000, ?700000, ?725000,
>> > + ? ? ? 750000, ? 775000, ?800000, ?825000, ?850000, ?875000,
>> > + ? ? ? 900000, ? 925000, ?950000, ?975000, 1000000, 1025000,
>> > + ? ? ? 1050000, 1075000, 1100000, 1125000, 1150000, 1175000,
>> > + ? ? ? 1200000, 1225000, 1250000, 1275000, 1300000, 1325000,
>> > + ? ? ? 1350000, 1375000
>> > +};
>> > +
>> > +static const int mc13892_sw[] = {
>> > + ? ? ? 600000, ? 625000, ?650000, ?675000, ?700000, ?725000,
>> > + ? ? ? 750000, ? 775000, ?800000, ?825000, ?850000, ?875000,
>> > + ? ? ? 900000, ? 925000, ?950000, ?975000, 1000000, 1025000,
>> > + ? ? ? 1050000, 1075000, 1100000, 1125000, 1150000, 1175000,
>> > + ? ? ? 1200000, 1225000, 1250000, 1275000, 1300000, 1325000,
>> > + ? ? ? 1350000, 1375000, 1400000, 1425000, 1450000, 1475000,
>> > + ? ? ? 1500000, 1525000, 1550000, 1575000, 1600000, 1625000,
>> > + ? ? ? 1650000, 1675000, 1700000, 1725000, 1750000, 1775000,
>> > + ? ? ? 1800000, 1825000, 1850000, 1875000
>> > +};
>> > +
>> > +static const int mc13892_swbst[] = {
>> > + ? ? ? 5000000,
>> > +};
>> > +
>> > +static const int mc13892_viohi[] = {
>> > + ? ? ? 2775000,
>> > +};
>> > +
>> > +static const int mc13892_vpll[] = {
>> > + ? ? ? 1050000, 1250000, 1650000, 1800000,
>> > +};
>> > +
>> > +static const int mc13892_vdig[] = {
>> > + ? ? ? 1050000, 1250000, 1650000, 1800000,
>> > +};
>> > +
>> > +static const int mc13892_vsd[] = {
>> > + ? ? ? 1800000, 2000000, 2600000, 2700000,
>> > + ? ? ? 2800000, 2900000, 3000000, 3150000,
>> > +};
>> > +
>> > +static const int mc13892_vusb2[] = {
>> > + ? ? ? 2400000, 2600000, 2700000, 2775000,
>> > +};
>> > +
>> > +static const int mc13892_vvideo[] = {
>> > + ? ? ? 2700000, 2775000, 2500000, 2600000,
>> > +};
>> > +
>> > +static const int mc13892_vaudio[] = {
>> > + ? ? ? 2300000, 2500000, 2775000, 3000000,
>> > +};
>> > +
>> > +static const int mc13892_vcam[] = {
>> > + ? ? ? 2500000, 2600000, 2750000, 3000000,
>> > +};
>> > +
>> > +static const int mc13892_vgen1[] = {
>> > + ? ? ? 1200000, 1500000, 2775000, 3150000,
>> > +};
>> > +
>> > +static const int mc13892_vgen2[] = {
>> > + ? ? ? 1200000, 1500000, 1600000, 1800000,
>> > + ? ? ? 2700000, 2800000, 3000000, 3150000,
>> > +};
>> > +
>> > +static const int mc13892_vgen3[] = {
>> > + ? ? ? 1800000, 2900000,
>> > +};
>> > +
>> > +static const int mc13892_vusb[] = {
>> > + ? ? ? 3300000,
>> > +};
>> > +
>> > +static const int mc13892_gpo[] = {
>> > + ? ? ? 2750000,
>> > +};
>> > +
>> > +static const int mc13892_pwgtdrv[] = {
>> > + ? ? ? 5000000,
>> > +};
>> > +
>> > +static struct regulator_ops mc13892_gpo_regulator_ops;
>> > +/* sw regulators need special care due to the "hi bit" */
>> > +static struct regulator_ops mc13892_sw_regulator_ops;
>> > +
>> > +
>> > +#define MC13892_FIXED_DEFINE(name, reg, voltages)\
>> > + ? ? ? MC13xxx_FIXED_DEFINE(MC13892_, name, reg, voltages, \
>> > + ? ? ? ? ? ? ? ? ? ? ? mc13xxx_fixed_regulator_ops)
>> > +
>> > +#define MC13892_GPO_DEFINE(name, reg, voltages) ? ? ? ? ? ? ? ?\
>> > + ? ? ? MC13xxx_GPO_DEFINE(MC13892_, name, reg, voltages, \
>> > + ? ? ? ? ? ? ? ? ? ? ? mc13892_gpo_regulator_ops)
>> > +
>> > +#define MC13892_SW_DEFINE(name, reg, vsel_reg, voltages) ? ? ? ? ? ? ? \
>> > + ? ? ? MC13xxx_DEFINE(MC13892_, name, reg, vsel_reg, voltages, \
>> > + ? ? ? ? ? ? ? ? ? ? ? mc13892_sw_regulator_ops)
>> > +
>> > +#define MC13892_DEFINE_REGU(name, reg, vsel_reg, voltages) ? ? ? ? ? ? \
>> > + ? ? ? MC13xxx_DEFINE(MC13892_, name, reg, vsel_reg, voltages, \
>> > + ? ? ? ? ? ? ? ? ? ? ? mc13xxx_regulator_ops)
>> > +
>> > +static struct mc13xxx_regulator mc13892_regulators[] = {
>> > + ? ? ? MC13892_DEFINE_REGU(VCOINCELL, POWERCTL0, POWERCTL0, ? ? ? ? ? ?\
>> > + ? ? ? ? ? ? ? ? ? ? ? ? ? mc13892_vcoincell),
>> > + ? ? ? MC13892_SW_DEFINE(SW1, SWITCHERS0, SWITCHERS0, mc13892_sw1),
>> > + ? ? ? MC13892_SW_DEFINE(SW2, SWITCHERS1, SWITCHERS1, mc13892_sw),
>> > + ? ? ? MC13892_SW_DEFINE(SW3, SWITCHERS2, SWITCHERS2, mc13892_sw),
>> > + ? ? ? MC13892_SW_DEFINE(SW4, SWITCHERS3, SWITCHERS3, mc13892_sw),
>> > + ? ? ? MC13892_FIXED_DEFINE(SWBST, SWITCHERS5, mc13892_swbst),
>> > + ? ? ? MC13892_FIXED_DEFINE(VIOHI, REGULATORMODE0, mc13892_viohi),
>> > + ? ? ? MC13892_DEFINE_REGU(VPLL, REGULATORMODE0, REGULATORSETTING0, ? ?\
>> > + ? ? ? ? ? ? ? ? ? ? ? ? ? mc13892_vpll),
>> > + ? ? ? MC13892_DEFINE_REGU(VDIG, REGULATORMODE0, REGULATORSETTING0, ? ?\
>> > + ? ? ? ? ? ? ? ? ? ? ? ? ? mc13892_vdig),
>> > + ? ? ? MC13892_DEFINE_REGU(VSD, REGULATORMODE1, REGULATORSETTING1, ? ? \
>> > + ? ? ? ? ? ? ? ? ? ? ? ? ? mc13892_vsd),
>> > + ? ? ? MC13892_DEFINE_REGU(VUSB2, REGULATORMODE0, REGULATORSETTING0, ? \
>> > + ? ? ? ? ? ? ? ? ? ? ? ? ? mc13892_vusb2),
>> > + ? ? ? MC13892_DEFINE_REGU(VVIDEO, REGULATORMODE1, REGULATORSETTING1, ?\
>> > + ? ? ? ? ? ? ? ? ? ? ? ? ? mc13892_vvideo),
>> > + ? ? ? MC13892_DEFINE_REGU(VAUDIO, REGULATORMODE1, REGULATORSETTING1, ?\
>> > + ? ? ? ? ? ? ? ? ? ? ? ? ? mc13892_vaudio),
>> > + ? ? ? MC13892_DEFINE_REGU(VCAM, REGULATORMODE1, REGULATORSETTING0, \
>> > + ? ? ? ? ? ? ? ? ? ? ? ? ? mc13892_vcam),
>> > + ? ? ? MC13892_DEFINE_REGU(VGEN1, REGULATORMODE0, REGULATORSETTING0, ? \
>> > + ? ? ? ? ? ? ? ? ? ? ? ? ? mc13892_vgen1),
>> > + ? ? ? MC13892_DEFINE_REGU(VGEN2, REGULATORMODE0, REGULATORSETTING0, ? \
>> > + ? ? ? ? ? ? ? ? ? ? ? ? ? mc13892_vgen2),
>> > + ? ? ? MC13892_DEFINE_REGU(VGEN3, REGULATORMODE1, REGULATORSETTING0, ? \
>> > + ? ? ? ? ? ? ? ? ? ? ? ? ? mc13892_vgen3),
>> > + ? ? ? MC13892_FIXED_DEFINE(VUSB, USB1, mc13892_vusb),
>> > + ? ? ? MC13892_GPO_DEFINE(GPO1, POWERMISC, mc13892_gpo),
>> > + ? ? ? MC13892_GPO_DEFINE(GPO2, POWERMISC, mc13892_gpo),
>> > + ? ? ? MC13892_GPO_DEFINE(GPO3, POWERMISC, mc13892_gpo),
>> > + ? ? ? MC13892_GPO_DEFINE(GPO4, POWERMISC, mc13892_gpo),
>> > + ? ? ? MC13892_GPO_DEFINE(PWGT1SPI, POWERMISC, mc13892_pwgtdrv),
>> > + ? ? ? MC13892_GPO_DEFINE(PWGT2SPI, POWERMISC, mc13892_pwgtdrv),
>> > +};
>> > +
>> > +int mc13892_powermisc_rmw(struct mc13xxx_regulator_priv *priv, u32 mask,
>> > + ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? u32 val)
>> > +{
>> > + ? ? ? struct mc13xxx *mc13892 = priv->mc13xxx;
>> > + ? ? ? int ret;
>> > + ? ? ? u32 valread;
>> > +
>> > + ? ? ? BUG_ON(val & ~mask);
>> > +
>> > + ? ? ? ret = mc13xxx_reg_read(mc13892, MC13892_POWERMISC, &valread);
>> > + ? ? ? if (ret)
>> > + ? ? ? ? ? ? ? return ret;
>> > +
>> > + ? ? ? /* Update the stored state for Power Gates. */
>> > + ? ? ? priv->powermisc_pwgt_state =
>> > + ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? (priv->powermisc_pwgt_state & ~mask) | val;
>> > + ? ? ? priv->powermisc_pwgt_state &= MC13892_POWERMISC_PWGTSPI_M;
>> > +
>> > + ? ? ? /* Construct the new register value */
>> > + ? ? ? valread = (valread & ~mask) | val;
>> > + ? ? ? /* Overwrite the PWGTxEN with the stored version */
>> > + ? ? ? valread = (valread & ~MC13892_POWERMISC_PWGTSPI_M) |
>> > + ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? priv->powermisc_pwgt_state;
>> > +
>> > + ? ? ? return mc13xxx_reg_write(mc13892, MC13892_POWERMISC, valread);
>> > +}
>> > +
>> > +static int mc13892_gpo_regulator_enable(struct regulator_dev *rdev)
>> > +{
>> > + ? ? ? struct mc13xxx_regulator_priv *priv = rdev_get_drvdata(rdev);
>> > + ? ? ? int id = rdev_get_id(rdev);
>> > + ? ? ? int ret;
>> > + ? ? ? u32 en_val = mc13892_regulators[id].enable_bit;
>> > + ? ? ? u32 mask = mc13892_regulators[id].enable_bit;
>> > +
>> > + ? ? ? dev_dbg(rdev_get_dev(rdev), "%s id: %d\n", __func__, id);
>> > +
>> > + ? ? ? /* Power Gate enable value is 0 */
>> > + ? ? ? if (id == MC13892_PWGT1SPI ||
>> > + ? ? ? ? ? id == MC13892_PWGT2SPI)
>> > + ? ? ? ? ? ? ? en_val = 0;
>> > +
>> > + ? ? ? if (id == MC13892_GPO4)
>> > + ? ? ? ? ? ? ? mask |= MC13892_POWERMISC_GPO4ADINEN;
>> > +
>> > + ? ? ? mc13xxx_lock(priv->mc13xxx);
>> > + ? ? ? ret = mc13892_powermisc_rmw(priv, mask, en_val);
>> > + ? ? ? mc13xxx_unlock(priv->mc13xxx);
>> > +
>> > + ? ? ? return ret;
>> > +}
>> > +
>> > +static int mc13892_gpo_regulator_disable(struct regulator_dev *rdev)
>> > +{
>> > + ? ? ? struct mc13xxx_regulator_priv *priv = rdev_get_drvdata(rdev);
>> > + ? ? ? int id = rdev_get_id(rdev);
>> > + ? ? ? int ret;
>> > + ? ? ? u32 dis_val = 0;
>> > +
>> > + ? ? ? dev_dbg(rdev_get_dev(rdev), "%s id: %d\n", __func__, id);
>> > +
>> > + ? ? ? /* Power Gate disable value is 1 */
>> > + ? ? ? if (id == MC13892_PWGT1SPI ||
>> > + ? ? ? ? ? id == MC13892_PWGT2SPI)
>> > + ? ? ? ? ? ? ? dis_val = mc13892_regulators[id].enable_bit;
>> > +
>> > + ? ? ? mc13xxx_lock(priv->mc13xxx);
>> > + ? ? ? ret = mc13892_powermisc_rmw(priv, mc13892_regulators[id].enable_bit,
>> > + ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? dis_val);
>> > + ? ? ? mc13xxx_unlock(priv->mc13xxx);
>> > +
>> > + ? ? ? return ret;
>> > +}
>> > +
>> > +static int mc13892_gpo_regulator_is_enabled(struct regulator_dev *rdev)
>> > +{
>> > + ? ? ? struct mc13xxx_regulator_priv *priv = rdev_get_drvdata(rdev);
>> > + ? ? ? int ret, id = rdev_get_id(rdev);
>> > + ? ? ? unsigned int val;
>> > +
>> > + ? ? ? mc13xxx_lock(priv->mc13xxx);
>> > + ? ? ? ret = mc13xxx_reg_read(priv->mc13xxx, mc13892_regulators[id].reg, &val);
>> > + ? ? ? mc13xxx_unlock(priv->mc13xxx);
>> > +
>> > + ? ? ? if (ret)
>> > + ? ? ? ? ? ? ? return ret;
>> > +
>> > + ? ? ? /* Power Gates state is stored in powermisc_pwgt_state
>> > + ? ? ? ?* where the meaning of bits is negated */
>> > + ? ? ? val = (val & ~MC13892_POWERMISC_PWGTSPI_M) |
>> > + ? ? ? ? ? ? (priv->powermisc_pwgt_state ^ MC13892_POWERMISC_PWGTSPI_M);
>> > +
>> > + ? ? ? return (val & mc13892_regulators[id].enable_bit) != 0;
>> > +}
>> > +
>> > +
>> > +static struct regulator_ops mc13892_gpo_regulator_ops = {
>> > + ? ? ? .enable = mc13892_gpo_regulator_enable,
>> > + ? ? ? .disable = mc13892_gpo_regulator_disable,
>> > + ? ? ? .is_enabled = mc13892_gpo_regulator_is_enabled,
>> > + ? ? ? .list_voltage = mc13xxx_regulator_list_voltage,
>> > + ? ? ? .set_voltage = mc13xxx_fixed_regulator_set_voltage,
>> > + ? ? ? .get_voltage = mc13xxx_fixed_regulator_get_voltage,
>> > +};
>> > +
>> > +static int mc13892_sw_regulator_get_voltage(struct regulator_dev *rdev)
>> > +{
>> > + ? ? ? struct mc13xxx_regulator_priv *priv = rdev_get_drvdata(rdev);
>> > + ? ? ? int ret, id = rdev_get_id(rdev);
>> > + ? ? ? unsigned int val, hi;
>> > +
>> > + ? ? ? dev_dbg(rdev_get_dev(rdev), "%s id: %d\n", __func__, id);
>> > +
>> > + ? ? ? mc13xxx_lock(priv->mc13xxx);
>> > + ? ? ? ret = mc13xxx_reg_read(priv->mc13xxx,
>> > + ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? mc13892_regulators[id].vsel_reg, &val);
>> > + ? ? ? mc13xxx_unlock(priv->mc13xxx);
>> > + ? ? ? if (ret)
>> > + ? ? ? ? ? ? ? return ret;
>> > +
>> > + ? ? ? hi ?= val & MC13892_SWITCHERS0_SWxHI;
>> > + ? ? ? val = (val & mc13892_regulators[id].vsel_mask)
>> > + ? ? ? ? ? ? ? >> mc13892_regulators[id].vsel_shift;
>> > +
>> > + ? ? ? dev_dbg(rdev_get_dev(rdev), "%s id: %d val: %d\n", __func__, id, val);
>> > +
>> > + ? ? ? if (hi)
>> > + ? ? ? ? ? ? ? val = (25000 * val) + 1100000;
>> > + ? ? ? else
>> > + ? ? ? ? ? ? ? val = (25000 * val) + 600000;
>> > +
>> > + ? ? ? return val;
>> > +}
>> > +
>> > +static int mc13892_sw_regulator_set_voltage(struct regulator_dev *rdev,
>> > + ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? int min_uV, int max_uV)
>> > +{
>> > + ? ? ? struct mc13xxx_regulator_priv *priv = rdev_get_drvdata(rdev);
>> > + ? ? ? int hi, value, val, mask, id = rdev_get_id(rdev);
>> > + ? ? ? int ret;
>> > +
>> > + ? ? ? dev_dbg(rdev_get_dev(rdev), "%s id: %d min_uV: %d max_uV: %d\n",
>> > + ? ? ? ? ? ? ? __func__, id, min_uV, max_uV);
>> > +
>> > + ? ? ? /* Find the best index */
>> > + ? ? ? value = mc13xxx_get_best_voltage_index(rdev, min_uV, max_uV);
>> > + ? ? ? dev_dbg(rdev_get_dev(rdev), "%s best value: %d\n", __func__, value);
>> > + ? ? ? if (value < 0)
>> > + ? ? ? ? ? ? ? return value;
>> > +
>> > + ? ? ? value = mc13892_regulators[id].voltages[value];
>> > +
>> > + ? ? ? mc13xxx_lock(priv->mc13xxx);
>> > + ? ? ? ret = mc13xxx_reg_read(priv->mc13xxx,
>> > + ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? mc13892_regulators[id].vsel_reg, &val);
>> > + ? ? ? if (ret)
>> > + ? ? ? ? ? ? ? goto err;
>> > +
>> > + ? ? ? hi ?= val & MC13892_SWITCHERS0_SWxHI;
>> > + ? ? ? if (value > 1375)
>> > + ? ? ? ? ? ? ? hi = 1;
>> > + ? ? ? if (value < 1100)
>> > + ? ? ? ? ? ? ? hi = 0;
>> > +
>> > + ? ? ? if (hi) {
>> > + ? ? ? ? ? ? ? value = (value - 1100000) / 25000;
>> > + ? ? ? ? ? ? ? value |= MC13892_SWITCHERS0_SWxHI;
>> > + ? ? ? } else
>> > + ? ? ? ? ? ? ? value = (value - 600000) / 25000;
>> > +
>> > + ? ? ? mask = mc13892_regulators[id].vsel_mask | MC13892_SWITCHERS0_SWxHI;
>> > + ? ? ? ret = mc13xxx_reg_rmw(priv->mc13xxx, mc13892_regulators[id].vsel_reg,
>> > + ? ? ? ? ? ? ? ? ? ? ? mask,
>> > + ? ? ? ? ? ? ? ? ? ? ? value << mc13892_regulators[id].vsel_shift);
>> > +err:
>> > + ? ? ? mc13xxx_unlock(priv->mc13xxx);
>> > +
>> > + ? ? ? return ret;
>> > +}
>> > +
>> > +static struct regulator_ops mc13892_sw_regulator_ops = {
>> > + ? ? ? .is_enabled = mc13xxx_sw_regulator_is_enabled,
>> > + ? ? ? .list_voltage = mc13xxx_regulator_list_voltage,
>> > + ? ? ? .set_voltage = mc13892_sw_regulator_set_voltage,
>> > + ? ? ? .get_voltage = mc13892_sw_regulator_get_voltage,
>> > +};
>> > +
>> > +static int mc13892_vcam_set_mode(struct regulator_dev *rdev, unsigned int mode)
>> > +{
>> > + ? ? ? unsigned int en_val = 0;
>> > + ? ? ? struct mc13xxx_regulator_priv *priv = rdev_get_drvdata(rdev);
>> > + ? ? ? int ret, id = rdev_get_id(rdev);
>> > +
>> > + ? ? ? if (mode == REGULATOR_MODE_FAST)
>> > + ? ? ? ? ? ? ? en_val = MC13892_REGULATORMODE1_VCAMCONFIGEN;
>> > +
>> > + ? ? ? mc13xxx_lock(priv->mc13xxx);
>> > + ? ? ? ret = mc13xxx_reg_rmw(priv->mc13xxx, mc13892_regulators[id].reg,
>> > + ? ? ? ? ? ? ? ? ? ? ? MC13892_REGULATORMODE1_VCAMCONFIGEN,
>> > + ? ? ? ? ? ? ? ? ? ? ? en_val);
>> > + ? ? ? mc13xxx_unlock(priv->mc13xxx);
>> > +
>> > + ? ? ? return ret;
>> > +}
>> > +
>> > +unsigned int mc13892_vcam_get_mode(struct regulator_dev *rdev)
>> > +{
>> > + ? ? ? struct mc13xxx_regulator_priv *priv = rdev_get_drvdata(rdev);
>> > + ? ? ? int ret, id = rdev_get_id(rdev);
>> > + ? ? ? unsigned int val;
>> > +
>> > + ? ? ? mc13xxx_lock(priv->mc13xxx);
>> > + ? ? ? ret = mc13xxx_reg_read(priv->mc13xxx, mc13892_regulators[id].reg, &val);
>> > + ? ? ? mc13xxx_unlock(priv->mc13xxx);
>> > +
>> > + ? ? ? if (ret)
>> > + ? ? ? ? ? ? ? return ret;
>> > +
>> > + ? ? ? if (val & MC13892_REGULATORMODE1_VCAMCONFIGEN)
>> > + ? ? ? ? ? ? ? return REGULATOR_MODE_FAST;
>> > +
>> > + ? ? ? return REGULATOR_MODE_NORMAL;
>> > +}
>> > +
>> > +
>> > +static int __devinit mc13892_regulator_probe(struct platform_device *pdev)
>> > +{
>> > + ? ? ? struct mc13xxx_regulator_priv *priv;
>> > + ? ? ? struct mc13xxx *mc13892 = dev_get_drvdata(pdev->dev.parent);
>> > + ? ? ? struct mc13xxx_regulator_platform_data *pdata =
>> > + ? ? ? ? ? ? ? dev_get_platdata(&pdev->dev);
>> > + ? ? ? struct mc13xxx_regulator_init_data *init_data;
>> > + ? ? ? int i, ret;
>> > + ? ? ? u32 val;
>> > +
>> > + ? ? ? priv = kzalloc(sizeof(*priv) +
>> > + ? ? ? ? ? ? ? ? ? ? ? pdata->num_regulators * sizeof(priv->regulators[0]),
>> > + ? ? ? ? ? ? ? ? ? ? ? GFP_KERNEL);
>> > + ? ? ? if (!priv)
>> > + ? ? ? ? ? ? ? return -ENOMEM;
>> > +
>> > + ? ? ? priv->mc13xxx_regulators = mc13892_regulators;
>> > + ? ? ? priv->mc13xxx = mc13892;
>> > +
>> > + ? ? ? mc13xxx_lock(mc13892);
>> > + ? ? ? ret = mc13xxx_reg_read(mc13892, MC13892_REVISION, &val);
>> > + ? ? ? mc13xxx_unlock(mc13892);
>> > + ? ? ? if (ret)
>> > + ? ? ? ? ? ? ? goto err_alloc;
>> > +
>> > + ? ? ? /* enable switch auto mode */
>> > + ? ? ? if ((val & 0x0000FFFF) == 0x45d0) {
>> > + ? ? ? ? ? ? ? mc13xxx_lock(mc13892);
>> > + ? ? ? ? ? ? ? ret = mc13xxx_reg_rmw(mc13892, MC13892_SWITCHERS4,
>> > + ? ? ? ? ? ? ? ? ? ? ? MC13892_SWITCHERS4_SW1MODE_M |
>> > + ? ? ? ? ? ? ? ? ? ? ? MC13892_SWITCHERS4_SW2MODE_M,
>> > + ? ? ? ? ? ? ? ? ? ? ? MC13892_SWITCHERS4_SW1MODE_AUTO |
>> > + ? ? ? ? ? ? ? ? ? ? ? MC13892_SWITCHERS4_SW2MODE_AUTO);
>> > + ? ? ? ? ? ? ? mc13xxx_unlock(mc13892);
>> > + ? ? ? ? ? ? ? if (ret)
>> > + ? ? ? ? ? ? ? ? ? ? ? goto err_alloc;
>> > +
>> > + ? ? ? ? ? ? ? mc13xxx_lock(mc13892);
>> > + ? ? ? ? ? ? ? mc13xxx_reg_rmw(mc13892, MC13892_SWITCHERS5,
>> > + ? ? ? ? ? ? ? ? ? ? ? MC13892_SWITCHERS5_SW3MODE_M |
>> > + ? ? ? ? ? ? ? ? ? ? ? MC13892_SWITCHERS5_SW4MODE_M,
>> > + ? ? ? ? ? ? ? ? ? ? ? MC13892_SWITCHERS5_SW3MODE_AUTO |
>> > + ? ? ? ? ? ? ? ? ? ? ? MC13892_SWITCHERS5_SW4MODE_AUTO);
>> > + ? ? ? ? ? ? ? mc13xxx_unlock(mc13892);
>> > + ? ? ? ? ? ? ? if (ret)
>> > + ? ? ? ? ? ? ? ? ? ? ? goto err_alloc;
>> > + ? ? ? }
>> > +
>> > + ? ? ? mc13892_regulators[MC13892_VCAM].desc.ops->set_mode
>> > + ? ? ? ? ? ? ? = mc13892_vcam_set_mode;
>> > + ? ? ? mc13892_regulators[MC13892_VCAM].desc.ops->get_mode
>> > + ? ? ? ? ? ? ? = mc13892_vcam_get_mode;
>> > + ? ? ? for (i = 0; i < pdata->num_regulators; i++) {
>> > + ? ? ? ? ? ? ? init_data = &pdata->regulators[i];
>> > + ? ? ? ? ? ? ? priv->regulators[i] = regulator_register(
>> > + ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? &mc13892_regulators[init_data->id].desc,
>> > + ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? &pdev->dev, init_data->init_data, priv);
>> > +
>> > + ? ? ? ? ? ? ? if (IS_ERR(priv->regulators[i])) {
>> > + ? ? ? ? ? ? ? ? ? ? ? dev_err(&pdev->dev, "failed to register regulator %s\n",
>> > + ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? mc13892_regulators[i].desc.name);
>> > + ? ? ? ? ? ? ? ? ? ? ? ret = PTR_ERR(priv->regulators[i]);
>> > + ? ? ? ? ? ? ? ? ? ? ? goto err;
>> > + ? ? ? ? ? ? ? }
>> > + ? ? ? }
>> > +
>> > + ? ? ? platform_set_drvdata(pdev, priv);
>> > +
>> > + ? ? ? return 0;
>> > +err:
>> > + ? ? ? while (--i >= 0)
>> > + ? ? ? ? ? ? ? regulator_unregister(priv->regulators[i]);
>> > +
>> > +err_alloc:
>> > + ? ? ? kfree(priv);
>> > +
>> > + ? ? ? return ret;
>> > +}
>> > +
>> > +static int __devexit mc13892_regulator_remove(struct platform_device *pdev)
>> > +{
>> > + ? ? ? struct mc13xxx_regulator_priv *priv = platform_get_drvdata(pdev);
>> > + ? ? ? struct mc13xxx_regulator_platform_data *pdata =
>> > + ? ? ? ? ? ? ? dev_get_platdata(&pdev->dev);
>> > + ? ? ? int i;
>> > +
>> > + ? ? ? platform_set_drvdata(pdev, NULL);
>> > +
>> > + ? ? ? for (i = 0; i < pdata->num_regulators; i++)
>> > + ? ? ? ? ? ? ? regulator_unregister(priv->regulators[i]);
>> > +
>> > + ? ? ? kfree(priv);
>> > + ? ? ? return 0;
>> > +}
>> > +
>> > +static struct platform_driver mc13892_regulator_driver = {
>> > + ? ? ? .driver = {
>> > + ? ? ? ? ? ? ? .name ? = "mc13892-regulator",
>> > + ? ? ? ? ? ? ? .owner ?= THIS_MODULE,
>> > + ? ? ? },
>> > + ? ? ? .remove = __devexit_p(mc13892_regulator_remove),
>> > + ? ? ? .probe ?= mc13892_regulator_probe,
>> > +};
>> > +
>> > +static int __init mc13892_regulator_init(void)
>> > +{
>> > + ? ? ? return platform_driver_register(&mc13892_regulator_driver);
>> > +}
>> > +subsys_initcall(mc13892_regulator_init);
>> > +
>> > +static void __exit mc13892_regulator_exit(void)
>> > +{
>> > + ? ? ? platform_driver_unregister(&mc13892_regulator_driver);
>> > +}
>> > +module_exit(mc13892_regulator_exit);
>> > +
>> > +MODULE_LICENSE("GPL v2");
>> > +MODULE_AUTHOR("Yong Shen <yong.shen@linaro.org>");
>> > +MODULE_DESCRIPTION("Regulator Driver for Freescale MC13892 PMIC");
>> > +MODULE_ALIAS("platform:mc13892-regulator");
>> > diff --git a/include/linux/mfd/mc13892.h b/include/linux/mfd/mc13892.h
>> > new file mode 100644
>> > index 0000000..7df13e8
>> > --- /dev/null
>> > +++ b/include/linux/mfd/mc13892.h
>> > @@ -0,0 +1,38 @@
>> > +/*
>> > + * Copyright 2010 Yong Shen <yong.shen@linaro.org>
>> > + *
>> > + * This program is free software; you can redistribute it and/or modify it under
>> > + * the terms of the GNU General Public License version 2 as published by the
>> > + * Free Software Foundation.
>> > + */
>> > +
>> > +#ifndef __LINUX_MFD_MC13892_H
>> > +#define __LINUX_MFD_MC13892_H
>> > +#include <linux/mfd/mc13xxx.h>
>> > +
>> > +#define MC13892_SW1 ? ? ? ? ? ?0
>> > +#define MC13892_SW2 ? ? ? ? ? ?1
>> > +#define MC13892_SW3 ? ? ? ? ? ?2
>> > +#define MC13892_SW4 ? ? ? ? ? ?3
>> > +#define MC13892_SWBST ?4
>> > +#define MC13892_VIOHI ?5
>> > +#define MC13892_VPLL ? 6
>> > +#define MC13892_VDIG ? 7
>> > +#define MC13892_VSD ? ?8
>> > +#define MC13892_VUSB2 ?9
>> > +#define MC13892_VVIDEO 10
>> > +#define MC13892_VAUDIO 11
>> > +#define MC13892_VCAM ? 12
>> > +#define MC13892_VGEN1 ?13
>> > +#define MC13892_VGEN2 ?14
>> > +#define MC13892_VGEN3 ?15
>> > +#define MC13892_VUSB ? 16
>> > +#define MC13892_GPO1 ? 17
>> > +#define MC13892_GPO2 ? 18
>> > +#define MC13892_GPO3 ? 19
>> > +#define MC13892_GPO4 ? 20
>> > +#define MC13892_PWGT1SPI ? ? ? 21
>> > +#define MC13892_PWGT2SPI ? ? ? 22
>> > +#define MC13892_VCOINCELL ? ? ?23
>> > +
>> > +#endif
>> > --
>> > 1.7.0.4
>> >
>> >
>> >
>>
>> _______________________________________________
>> linux-arm-kernel mailing list
>> linux-arm-kernel at lists.infradead.org
>> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
>
>
>

^ permalink raw reply	[flat|nested] 20+ messages in thread

* [PATCHv3] support PMIC mc13892
  2010-12-09  5:13       ` Yong Shen
@ 2010-12-09  9:21         ` Liam Girdwood
  2010-12-09  9:42           ` Uwe Kleine-König
  0 siblings, 1 reply; 20+ messages in thread
From: Liam Girdwood @ 2010-12-09  9:21 UTC (permalink / raw)
  To: linux-arm-kernel

On Thu, 2010-12-09 at 13:13 +0800, Yong Shen wrote:
> Hi Sascha and Uwe,
> 
> On Wed, Dec 8, 2010 at 8:54 PM, Liam Girdwood <lrg@slimlogic.co.uk> wrote:
> > On Wed, 2010-12-08 at 11:28 +0800, Yong Shen wrote:
> >> Hi Liam,
> >>
> >> Last time, you took the previous patches for mc13783 code
> >> reorganization in your tree,
> >
> > I've not applied this yet, I'm waiting on an Ack from either Sascha or
> > Uwe regarding the arch mxc changes in this patch.
> >
> It seems that Liam is waiting for an ack from you about previous
> mc13783 patch. I am not sure about the arch mxc changes he mentioned,
> could you please feedback on this?
> 

Fwiw, it's always better to send a reply to all on the same thread as
your previous patch when discussing the previous patch. That way people
will have a better idea of the patch being discussed.

Your previous patch did have some changes to some files under
arch/arm/mach-mxc and it's good practice to get either Sascha's or Uwe's
Ack on those changes before they are applied via the regulator tree.

Thanks

Liam
-- 
Freelance Developer, SlimLogic Ltd
ASoC and Voltage Regulator Maintainer.
http://www.slimlogic.co.uk

^ permalink raw reply	[flat|nested] 20+ messages in thread

* [PATCHv3] support PMIC mc13892
  2010-12-09  9:21         ` Liam Girdwood
@ 2010-12-09  9:42           ` Uwe Kleine-König
  0 siblings, 0 replies; 20+ messages in thread
From: Uwe Kleine-König @ 2010-12-09  9:42 UTC (permalink / raw)
  To: linux-arm-kernel

Hello Liam,

> Your previous patch did have some changes to some files under
> arch/arm/mach-mxc and it's good practice to get either Sascha's or Uwe's
> Ack on those changes before they are applied via the regulator tree.
If you ask me, you need Sascha's Ack.  I consider myself as contributer
and helper for Sascha.  At best my nack would be enough to decline a
patch, but I like Sascha being responsible in the end.  (Still more
because he seems to have the better knowledge and finds issues that I
miss.)

Uwe

-- 
Pengutronix e.K.                           | Uwe Kleine-K?nig            |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |

^ permalink raw reply	[flat|nested] 20+ messages in thread

* [PATCHv3] support PMIC mc13892
  2010-12-08  3:21 ` [PATCHv3] support PMIC mc13892 yong.shen at freescale.com
                     ` (2 preceding siblings ...)
  2010-12-08  9:25   ` Samuel Ortiz
@ 2010-12-09 10:25   ` Sascha Hauer
  2010-12-09 12:59     ` Liam Girdwood
  3 siblings, 1 reply; 20+ messages in thread
From: Sascha Hauer @ 2010-12-09 10:25 UTC (permalink / raw)
  To: linux-arm-kernel

On Wed, Dec 08, 2010 at 11:21:00AM +0800, yong.shen at freescale.com wrote:
> From: Yong Shen <yong.shen@linaro.org>
> 
> add support for mc13892, tested on mx51 babbage board
> 
> Signed-off-by: Arnaud Patard <arnaud.patard@rtp-net.org>
> Signed-off-by: Yong Shen <yong.shen@linaro.org>

As there seem to be only whitespace changes left to worry about:

Acked-by: Sascha Hauer <s.hauer@pengutronix.de>

> ---
>  drivers/regulator/Kconfig             |    8 +
>  drivers/regulator/Makefile            |    1 +
>  drivers/regulator/mc13892-regulator.c |  644 +++++++++++++++++++++++++++++++++
>  include/linux/mfd/mc13892.h           |   38 ++
>  4 files changed, 691 insertions(+), 0 deletions(-)
>  create mode 100644 drivers/regulator/mc13892-regulator.c
>  create mode 100644 include/linux/mfd/mc13892.h
> 
> diff --git a/drivers/regulator/Kconfig b/drivers/regulator/Kconfig
> index 6e54253..1673a4f 100644
> --- a/drivers/regulator/Kconfig
> +++ b/drivers/regulator/Kconfig
> @@ -197,6 +197,14 @@ config REGULATOR_MC13783
>  	  Say y here to support the regulators found on the Freescale MC13783
>  	  PMIC.
>  
> +config REGULATOR_MC13892
> +	tristate "Support regulators on Freescale MC13892 PMIC"
> +	depends on MFD_MC13XXX
> +	select REGULATOR_MC13XXX_CORE
> +	help
> +	  Say y here to support the regulators found on the Freescale MC13892
> +	  PMIC.
> +
>  config REGULATOR_AB3100
>  	tristate "ST-Ericsson AB3100 Regulator functions"
>  	depends on AB3100_CORE
> diff --git a/drivers/regulator/Makefile b/drivers/regulator/Makefile
> index 11876be..3107480 100644
> --- a/drivers/regulator/Makefile
> +++ b/drivers/regulator/Makefile
> @@ -30,6 +30,7 @@ obj-$(CONFIG_REGULATOR_DA903X)	+= da903x.o
>  obj-$(CONFIG_REGULATOR_PCF50633) += pcf50633-regulator.o
>  obj-$(CONFIG_REGULATOR_PCAP) += pcap-regulator.o
>  obj-$(CONFIG_REGULATOR_MC13783) += mc13783-regulator.o
> +obj-$(CONFIG_REGULATOR_MC13892) += mc13892-regulator.o
>  obj-$(CONFIG_REGULATOR_MC13XXX_CORE) +=  mc13xxx-regulator-core.o
>  obj-$(CONFIG_REGULATOR_AB3100) += ab3100.o
>  
> diff --git a/drivers/regulator/mc13892-regulator.c b/drivers/regulator/mc13892-regulator.c
> new file mode 100644
> index 0000000..1b23170
> --- /dev/null
> +++ b/drivers/regulator/mc13892-regulator.c
> @@ -0,0 +1,644 @@
> +/*
> + * Regulator Driver for Freescale MC13892 PMIC
> + *
> + * Copyright 2010 Yong Shen <yong.shen@linaro.org>
> + *
> + * Based on draft driver from Arnaud Patard <arnaud.patard@rtp-net.org>
> + *
> + * This program is free software; you can redistribute it and/or modify
> + * it under the terms of the GNU General Public License version 2 as
> + * published by the Free Software Foundation.
> + */
> +
> +#include <linux/mfd/mc13892.h>
> +#include <linux/regulator/machine.h>
> +#include <linux/regulator/driver.h>
> +#include <linux/platform_device.h>
> +#include <linux/kernel.h>
> +#include <linux/slab.h>
> +#include <linux/init.h>
> +#include <linux/err.h>
> +#include "mc13xxx.h"
> +
> +#define MC13892_REVISION				7
> +
> +#define MC13892_POWERCTL0				13
> +#define MC13892_POWERCTL0_USEROFFSPI		3
> +#define MC13892_POWERCTL0_VCOINCELLVSEL		20
> +#define MC13892_POWERCTL0_VCOINCELLVSEL_M		(7<<20)
> +#define MC13892_POWERCTL0_VCOINCELLEN		(1<<23)
> +
> +#define MC13892_SWITCHERS0_SWxHI			(1<<23)
> +
> +#define MC13892_SWITCHERS0				24
> +#define MC13892_SWITCHERS0_SW1VSEL			0
> +#define MC13892_SWITCHERS0_SW1VSEL_M		(0x1f<<0)
> +#define MC13892_SWITCHERS0_SW1HI			(1<<23)
> +#define MC13892_SWITCHERS0_SW1EN		0
> +
> +#define MC13892_SWITCHERS1				25
> +#define MC13892_SWITCHERS1_SW2VSEL			0
> +#define MC13892_SWITCHERS1_SW2VSEL_M		(0x1f<<0)
> +#define MC13892_SWITCHERS1_SW2HI			(1<<23)
> +#define MC13892_SWITCHERS1_SW2EN		0
> +
> +#define MC13892_SWITCHERS2				26
> +#define MC13892_SWITCHERS2_SW3VSEL			0
> +#define MC13892_SWITCHERS2_SW3VSEL_M		(0x1f<<0)
> +#define MC13892_SWITCHERS2_SW3HI			(1<<23)
> +#define MC13892_SWITCHERS2_SW3EN		0
> +
> +#define MC13892_SWITCHERS3				27
> +#define MC13892_SWITCHERS3_SW4VSEL			0
> +#define MC13892_SWITCHERS3_SW4VSEL_M		(0x1f<<0)
> +#define MC13892_SWITCHERS3_SW4HI			(1<<23)
> +#define MC13892_SWITCHERS3_SW4EN		0
> +
> +#define MC13892_SWITCHERS4				28
> +#define MC13892_SWITCHERS4_SW1MODE			0
> +#define MC13892_SWITCHERS4_SW1MODE_AUTO		(8<<0)
> +#define MC13892_SWITCHERS4_SW1MODE_M		(0xf<<0)
> +#define MC13892_SWITCHERS4_SW2MODE			10
> +#define MC13892_SWITCHERS4_SW2MODE_AUTO		(8<<10)
> +#define MC13892_SWITCHERS4_SW2MODE_M		(0xf<<10)
> +
> +#define MC13892_SWITCHERS5				29
> +#define MC13892_SWITCHERS5_SW3MODE			0
> +#define MC13892_SWITCHERS5_SW3MODE_AUTO		(8<<0)
> +#define MC13892_SWITCHERS5_SW3MODE_M		(0xf<<0)
> +#define MC13892_SWITCHERS5_SW4MODE			8
> +#define MC13892_SWITCHERS5_SW4MODE_AUTO		(8<<8)
> +#define MC13892_SWITCHERS5_SW4MODE_M		(0xf<<8)
> +#define MC13892_SWITCHERS5_SWBSTEN			(1<<20)
> +
> +
> +#define MC13892_REGULATORSETTING0			30
> +#define MC13892_REGULATORSETTING0_VGEN1VSEL		0
> +#define MC13892_REGULATORSETTING0_VDIGVSEL		4
> +#define MC13892_REGULATORSETTING0_VGEN2VSEL		6
> +#define MC13892_REGULATORSETTING0_VPLLVSEL		9
> +#define MC13892_REGULATORSETTING0_VUSB2VSEL		11
> +#define MC13892_REGULATORSETTING0_VGEN3VSEL		14
> +#define MC13892_REGULATORSETTING0_VCAMVSEL		16
> +
> +#define MC13892_REGULATORSETTING0_VGEN1VSEL_M	(3<<0)
> +#define MC13892_REGULATORSETTING0_VDIGVSEL_M	(3<<4)
> +#define MC13892_REGULATORSETTING0_VGEN2VSEL_M	(7<<6)
> +#define MC13892_REGULATORSETTING0_VPLLVSEL_M	(3<<9)
> +#define MC13892_REGULATORSETTING0_VUSB2VSEL_M	(3<<11)
> +#define MC13892_REGULATORSETTING0_VGEN3VSEL_M	(1<<14)
> +#define MC13892_REGULATORSETTING0_VCAMVSEL_M	(3<<16)
> +
> +#define MC13892_REGULATORSETTING1			31
> +#define MC13892_REGULATORSETTING1_VVIDEOVSEL	2
> +#define MC13892_REGULATORSETTING1_VAUDIOVSEL	4
> +#define MC13892_REGULATORSETTING1_VSDVSEL		6
> +
> +#define MC13892_REGULATORSETTING1_VVIDEOVSEL_M	(3<<2)
> +#define MC13892_REGULATORSETTING1_VAUDIOVSEL_M	(3<<4)
> +#define MC13892_REGULATORSETTING1_VSDVSEL_M		(7<<6)
> +
> +#define MC13892_REGULATORMODE0			32
> +#define MC13892_REGULATORMODE0_VGEN1EN		(1<<0)
> +#define MC13892_REGULATORMODE0_VGEN1STDBY		(1<<1)
> +#define MC13892_REGULATORMODE0_VGEN1MODE		(1<<2)
> +#define MC13892_REGULATORMODE0_VIOHIEN		(1<<3)
> +#define MC13892_REGULATORMODE0_VIOHISTDBY		(1<<4)
> +#define MC13892_REGULATORMODE0_VIOHIMODE		(1<<5)
> +#define MC13892_REGULATORMODE0_VDIGEN		(1<<9)
> +#define MC13892_REGULATORMODE0_VDIGSTDBY		(1<<10)
> +#define MC13892_REGULATORMODE0_VDIGMODE		(1<<11)
> +#define MC13892_REGULATORMODE0_VGEN2EN		(1<<12)
> +#define MC13892_REGULATORMODE0_VGEN2STDBY		(1<<13)
> +#define MC13892_REGULATORMODE0_VGEN2MODE		(1<<14)
> +#define MC13892_REGULATORMODE0_VPLLEN		(1<<15)
> +#define MC13892_REGULATORMODE0_VPLLSTDBY		(1<<16)
> +#define MC13892_REGULATORMODE0_VPLLMODE		(1<<17)
> +#define MC13892_REGULATORMODE0_VUSB2EN		(1<<18)
> +#define MC13892_REGULATORMODE0_VUSB2STDBY		(1<<19)
> +#define MC13892_REGULATORMODE0_VUSB2MODE		(1<<20)
> +
> +#define MC13892_REGULATORMODE1			33
> +#define MC13892_REGULATORMODE1_VGEN3EN		(1<<0)
> +#define MC13892_REGULATORMODE1_VGEN3STDBY		(1<<1)
> +#define MC13892_REGULATORMODE1_VGEN3MODE		(1<<2)
> +#define MC13892_REGULATORMODE1_VCAMEN		(1<<6)
> +#define MC13892_REGULATORMODE1_VCAMSTDBY		(1<<7)
> +#define MC13892_REGULATORMODE1_VCAMMODE		(1<<8)
> +#define MC13892_REGULATORMODE1_VCAMCONFIGEN		(1<<9)
> +#define MC13892_REGULATORMODE1_VVIDEOEN		(1<<12)
> +#define MC13892_REGULATORMODE1_VVIDEOSTDBY		(1<<13)
> +#define MC13892_REGULATORMODE1_VVIDEOMODE		(1<<14)
> +#define MC13892_REGULATORMODE1_VAUDIOEN		(1<<15)
> +#define MC13892_REGULATORMODE1_VAUDIOSTDBY		(1<<16)
> +#define MC13892_REGULATORMODE1_VAUDIOMODE		(1<<17)
> +#define MC13892_REGULATORMODE1_VSDEN		(1<<18)
> +#define MC13892_REGULATORMODE1_VSDSTDBY		(1<<19)
> +#define MC13892_REGULATORMODE1_VSDMODE		(1<<20)
> +
> +#define MC13892_POWERMISC				34
> +#define MC13892_POWERMISC_GPO1EN			(1<<6)
> +#define MC13892_POWERMISC_GPO2EN			(1<<8)
> +#define MC13892_POWERMISC_GPO3EN			(1<<10)
> +#define MC13892_POWERMISC_GPO4EN			(1<<12)
> +#define MC13892_POWERMISC_PWGT1SPIEN		(1<<15)
> +#define MC13892_POWERMISC_PWGT2SPIEN		(1<<16)
> +#define MC13892_POWERMISC_GPO4ADINEN		(1<<21)
> +
> +#define MC13892_POWERMISC_PWGTSPI_M			(3 << 15)
> +
> +#define MC13892_USB1				50
> +#define MC13892_USB1_VUSBEN				(1<<3)
> +
> +static const int mc13892_vcoincell[] = {
> +	2500000, 2700000, 2800000, 2900000, 3000000, 3100000,
> +	3200000, 3300000,
> +};
> +
> +static const int mc13892_sw1[] = {
> +	600000,   625000,  650000,  675000,  700000,  725000,
> +	750000,   775000,  800000,  825000,  850000,  875000,
> +	900000,   925000,  950000,  975000, 1000000, 1025000,
> +	1050000, 1075000, 1100000, 1125000, 1150000, 1175000,
> +	1200000, 1225000, 1250000, 1275000, 1300000, 1325000,
> +	1350000, 1375000
> +};
> +
> +static const int mc13892_sw[] = {
> +	600000,   625000,  650000,  675000,  700000,  725000,
> +	750000,   775000,  800000,  825000,  850000,  875000,
> +	900000,   925000,  950000,  975000, 1000000, 1025000,
> +	1050000, 1075000, 1100000, 1125000, 1150000, 1175000,
> +	1200000, 1225000, 1250000, 1275000, 1300000, 1325000,
> +	1350000, 1375000, 1400000, 1425000, 1450000, 1475000,
> +	1500000, 1525000, 1550000, 1575000, 1600000, 1625000,
> +	1650000, 1675000, 1700000, 1725000, 1750000, 1775000,
> +	1800000, 1825000, 1850000, 1875000
> +};
> +
> +static const int mc13892_swbst[] = {
> +	5000000,
> +};
> +
> +static const int mc13892_viohi[] = {
> +	2775000,
> +};
> +
> +static const int mc13892_vpll[] = {
> +	1050000, 1250000, 1650000, 1800000,
> +};
> +
> +static const int mc13892_vdig[] = {
> +	1050000, 1250000, 1650000, 1800000,
> +};
> +
> +static const int mc13892_vsd[] = {
> +	1800000, 2000000, 2600000, 2700000,
> +	2800000, 2900000, 3000000, 3150000,
> +};
> +
> +static const int mc13892_vusb2[] = {
> +	2400000, 2600000, 2700000, 2775000,
> +};
> +
> +static const int mc13892_vvideo[] = {
> +	2700000, 2775000, 2500000, 2600000,
> +};
> +
> +static const int mc13892_vaudio[] = {
> +	2300000, 2500000, 2775000, 3000000,
> +};
> +
> +static const int mc13892_vcam[] = {
> +	2500000, 2600000, 2750000, 3000000,
> +};
> +
> +static const int mc13892_vgen1[] = {
> +	1200000, 1500000, 2775000, 3150000,
> +};
> +
> +static const int mc13892_vgen2[] = {
> +	1200000, 1500000, 1600000, 1800000,
> +	2700000, 2800000, 3000000, 3150000,
> +};
> +
> +static const int mc13892_vgen3[] = {
> +	1800000, 2900000,
> +};
> +
> +static const int mc13892_vusb[] = {
> +	3300000,
> +};
> +
> +static const int mc13892_gpo[] = {
> +	2750000,
> +};
> +
> +static const int mc13892_pwgtdrv[] = {
> +	5000000,
> +};
> +
> +static struct regulator_ops mc13892_gpo_regulator_ops;
> +/* sw regulators need special care due to the "hi bit" */
> +static struct regulator_ops mc13892_sw_regulator_ops;
> +
> +
> +#define MC13892_FIXED_DEFINE(name, reg, voltages)\
> +	MC13xxx_FIXED_DEFINE(MC13892_, name, reg, voltages, \
> +			mc13xxx_fixed_regulator_ops)
> +
> +#define MC13892_GPO_DEFINE(name, reg, voltages)		\
> +	MC13xxx_GPO_DEFINE(MC13892_, name, reg, voltages, \
> +			mc13892_gpo_regulator_ops)
> +
> +#define MC13892_SW_DEFINE(name, reg, vsel_reg, voltages)		\
> +	MC13xxx_DEFINE(MC13892_, name, reg, vsel_reg, voltages, \
> +			mc13892_sw_regulator_ops)
> +
> +#define MC13892_DEFINE_REGU(name, reg, vsel_reg, voltages)		\
> +	MC13xxx_DEFINE(MC13892_, name, reg, vsel_reg, voltages, \
> +			mc13xxx_regulator_ops)
> +
> +static struct mc13xxx_regulator mc13892_regulators[] = {
> +	MC13892_DEFINE_REGU(VCOINCELL, POWERCTL0, POWERCTL0,		\
> +			    mc13892_vcoincell),
> +	MC13892_SW_DEFINE(SW1, SWITCHERS0, SWITCHERS0, mc13892_sw1),
> +	MC13892_SW_DEFINE(SW2, SWITCHERS1, SWITCHERS1, mc13892_sw),
> +	MC13892_SW_DEFINE(SW3, SWITCHERS2, SWITCHERS2, mc13892_sw),
> +	MC13892_SW_DEFINE(SW4, SWITCHERS3, SWITCHERS3, mc13892_sw),
> +	MC13892_FIXED_DEFINE(SWBST, SWITCHERS5, mc13892_swbst),
> +	MC13892_FIXED_DEFINE(VIOHI, REGULATORMODE0, mc13892_viohi),
> +	MC13892_DEFINE_REGU(VPLL, REGULATORMODE0, REGULATORSETTING0,	\
> +			    mc13892_vpll),
> +	MC13892_DEFINE_REGU(VDIG, REGULATORMODE0, REGULATORSETTING0,	\
> +			    mc13892_vdig),
> +	MC13892_DEFINE_REGU(VSD, REGULATORMODE1, REGULATORSETTING1,	\
> +			    mc13892_vsd),
> +	MC13892_DEFINE_REGU(VUSB2, REGULATORMODE0, REGULATORSETTING0,	\
> +			    mc13892_vusb2),
> +	MC13892_DEFINE_REGU(VVIDEO, REGULATORMODE1, REGULATORSETTING1,	\
> +			    mc13892_vvideo),
> +	MC13892_DEFINE_REGU(VAUDIO, REGULATORMODE1, REGULATORSETTING1,	\
> +			    mc13892_vaudio),
> +	MC13892_DEFINE_REGU(VCAM, REGULATORMODE1, REGULATORSETTING0, \
> +			    mc13892_vcam),
> +	MC13892_DEFINE_REGU(VGEN1, REGULATORMODE0, REGULATORSETTING0,	\
> +			    mc13892_vgen1),
> +	MC13892_DEFINE_REGU(VGEN2, REGULATORMODE0, REGULATORSETTING0,	\
> +			    mc13892_vgen2),
> +	MC13892_DEFINE_REGU(VGEN3, REGULATORMODE1, REGULATORSETTING0,	\
> +			    mc13892_vgen3),
> +	MC13892_FIXED_DEFINE(VUSB, USB1, mc13892_vusb),
> +	MC13892_GPO_DEFINE(GPO1, POWERMISC, mc13892_gpo),
> +	MC13892_GPO_DEFINE(GPO2, POWERMISC, mc13892_gpo),
> +	MC13892_GPO_DEFINE(GPO3, POWERMISC, mc13892_gpo),
> +	MC13892_GPO_DEFINE(GPO4, POWERMISC, mc13892_gpo),
> +	MC13892_GPO_DEFINE(PWGT1SPI, POWERMISC, mc13892_pwgtdrv),
> +	MC13892_GPO_DEFINE(PWGT2SPI, POWERMISC, mc13892_pwgtdrv),
> +};
> +
> +int mc13892_powermisc_rmw(struct mc13xxx_regulator_priv *priv, u32 mask,
> +									u32 val)
> +{
> +	struct mc13xxx *mc13892 = priv->mc13xxx;
> +	int ret;
> +	u32 valread;
> +
> +	BUG_ON(val & ~mask);
> +
> +	ret = mc13xxx_reg_read(mc13892, MC13892_POWERMISC, &valread);
> +	if (ret)
> +		return ret;
> +
> +	/* Update the stored state for Power Gates. */
> +	priv->powermisc_pwgt_state =
> +				(priv->powermisc_pwgt_state & ~mask) | val;
> +	priv->powermisc_pwgt_state &= MC13892_POWERMISC_PWGTSPI_M;
> +
> +	/* Construct the new register value */
> +	valread = (valread & ~mask) | val;
> +	/* Overwrite the PWGTxEN with the stored version */
> +	valread = (valread & ~MC13892_POWERMISC_PWGTSPI_M) |
> +						priv->powermisc_pwgt_state;
> +
> +	return mc13xxx_reg_write(mc13892, MC13892_POWERMISC, valread);
> +}
> +
> +static int mc13892_gpo_regulator_enable(struct regulator_dev *rdev)
> +{
> +	struct mc13xxx_regulator_priv *priv = rdev_get_drvdata(rdev);
> +	int id = rdev_get_id(rdev);
> +	int ret;
> +	u32 en_val = mc13892_regulators[id].enable_bit;
> +	u32 mask = mc13892_regulators[id].enable_bit;
> +
> +	dev_dbg(rdev_get_dev(rdev), "%s id: %d\n", __func__, id);
> +
> +	/* Power Gate enable value is 0 */
> +	if (id == MC13892_PWGT1SPI ||
> +	    id == MC13892_PWGT2SPI)
> +		en_val = 0;
> +
> +	if (id == MC13892_GPO4)
> +		mask |= MC13892_POWERMISC_GPO4ADINEN;
> +
> +	mc13xxx_lock(priv->mc13xxx);
> +	ret = mc13892_powermisc_rmw(priv, mask, en_val);
> +	mc13xxx_unlock(priv->mc13xxx);
> +
> +	return ret;
> +}
> +
> +static int mc13892_gpo_regulator_disable(struct regulator_dev *rdev)
> +{
> +	struct mc13xxx_regulator_priv *priv = rdev_get_drvdata(rdev);
> +	int id = rdev_get_id(rdev);
> +	int ret;
> +	u32 dis_val = 0;
> +
> +	dev_dbg(rdev_get_dev(rdev), "%s id: %d\n", __func__, id);
> +
> +	/* Power Gate disable value is 1 */
> +	if (id == MC13892_PWGT1SPI ||
> +	    id == MC13892_PWGT2SPI)
> +		dis_val = mc13892_regulators[id].enable_bit;
> +
> +	mc13xxx_lock(priv->mc13xxx);
> +	ret = mc13892_powermisc_rmw(priv, mc13892_regulators[id].enable_bit,
> +					dis_val);
> +	mc13xxx_unlock(priv->mc13xxx);
> +
> +	return ret;
> +}
> +
> +static int mc13892_gpo_regulator_is_enabled(struct regulator_dev *rdev)
> +{
> +	struct mc13xxx_regulator_priv *priv = rdev_get_drvdata(rdev);
> +	int ret, id = rdev_get_id(rdev);
> +	unsigned int val;
> +
> +	mc13xxx_lock(priv->mc13xxx);
> +	ret = mc13xxx_reg_read(priv->mc13xxx, mc13892_regulators[id].reg, &val);
> +	mc13xxx_unlock(priv->mc13xxx);
> +
> +	if (ret)
> +		return ret;
> +
> +	/* Power Gates state is stored in powermisc_pwgt_state
> +	 * where the meaning of bits is negated */
> +	val = (val & ~MC13892_POWERMISC_PWGTSPI_M) |
> +	      (priv->powermisc_pwgt_state ^ MC13892_POWERMISC_PWGTSPI_M);
> +
> +	return (val & mc13892_regulators[id].enable_bit) != 0;
> +}
> +
> +
> +static struct regulator_ops mc13892_gpo_regulator_ops = {
> +	.enable = mc13892_gpo_regulator_enable,
> +	.disable = mc13892_gpo_regulator_disable,
> +	.is_enabled = mc13892_gpo_regulator_is_enabled,
> +	.list_voltage = mc13xxx_regulator_list_voltage,
> +	.set_voltage = mc13xxx_fixed_regulator_set_voltage,
> +	.get_voltage = mc13xxx_fixed_regulator_get_voltage,
> +};
> +
> +static int mc13892_sw_regulator_get_voltage(struct regulator_dev *rdev)
> +{
> +	struct mc13xxx_regulator_priv *priv = rdev_get_drvdata(rdev);
> +	int ret, id = rdev_get_id(rdev);
> +	unsigned int val, hi;
> +
> +	dev_dbg(rdev_get_dev(rdev), "%s id: %d\n", __func__, id);
> +
> +	mc13xxx_lock(priv->mc13xxx);
> +	ret = mc13xxx_reg_read(priv->mc13xxx,
> +				mc13892_regulators[id].vsel_reg, &val);
> +	mc13xxx_unlock(priv->mc13xxx);
> +	if (ret)
> +		return ret;
> +
> +	hi  = val & MC13892_SWITCHERS0_SWxHI;
> +	val = (val & mc13892_regulators[id].vsel_mask)
> +		>> mc13892_regulators[id].vsel_shift;
> +
> +	dev_dbg(rdev_get_dev(rdev), "%s id: %d val: %d\n", __func__, id, val);
> +
> +	if (hi)
> +		val = (25000 * val) + 1100000;
> +	else
> +		val = (25000 * val) + 600000;
> +
> +	return val;
> +}
> +
> +static int mc13892_sw_regulator_set_voltage(struct regulator_dev *rdev,
> +						int min_uV, int max_uV)
> +{
> +	struct mc13xxx_regulator_priv *priv = rdev_get_drvdata(rdev);
> +	int hi, value, val, mask, id = rdev_get_id(rdev);
> +	int ret;
> +
> +	dev_dbg(rdev_get_dev(rdev), "%s id: %d min_uV: %d max_uV: %d\n",
> +		__func__, id, min_uV, max_uV);
> +
> +	/* Find the best index */
> +	value = mc13xxx_get_best_voltage_index(rdev, min_uV, max_uV);
> +	dev_dbg(rdev_get_dev(rdev), "%s best value: %d\n", __func__, value);
> +	if (value < 0)
> +		return value;
> +
> +	value = mc13892_regulators[id].voltages[value];
> +
> +	mc13xxx_lock(priv->mc13xxx);
> +	ret = mc13xxx_reg_read(priv->mc13xxx,
> +				mc13892_regulators[id].vsel_reg, &val);
> +	if (ret)
> +		goto err;
> +
> +	hi  = val & MC13892_SWITCHERS0_SWxHI;
> +	if (value > 1375)
> +		hi = 1;
> +	if (value < 1100)
> +		hi = 0;
> +
> +	if (hi) {
> +		value = (value - 1100000) / 25000;
> +		value |= MC13892_SWITCHERS0_SWxHI;
> +	} else
> +		value = (value - 600000) / 25000;
> +
> +	mask = mc13892_regulators[id].vsel_mask | MC13892_SWITCHERS0_SWxHI;
> +	ret = mc13xxx_reg_rmw(priv->mc13xxx, mc13892_regulators[id].vsel_reg,
> +			mask,
> +			value << mc13892_regulators[id].vsel_shift);
> +err:
> +	mc13xxx_unlock(priv->mc13xxx);
> +
> +	return ret;
> +}
> +
> +static struct regulator_ops mc13892_sw_regulator_ops = {
> +	.is_enabled = mc13xxx_sw_regulator_is_enabled,
> +	.list_voltage = mc13xxx_regulator_list_voltage,
> +	.set_voltage = mc13892_sw_regulator_set_voltage,
> +	.get_voltage = mc13892_sw_regulator_get_voltage,
> +};
> +
> +static int mc13892_vcam_set_mode(struct regulator_dev *rdev, unsigned int mode)
> +{
> +	unsigned int en_val = 0;
> +	struct mc13xxx_regulator_priv *priv = rdev_get_drvdata(rdev);
> +	int ret, id = rdev_get_id(rdev);
> +
> +	if (mode == REGULATOR_MODE_FAST)
> +		en_val = MC13892_REGULATORMODE1_VCAMCONFIGEN;
> +
> +	mc13xxx_lock(priv->mc13xxx);
> +	ret = mc13xxx_reg_rmw(priv->mc13xxx, mc13892_regulators[id].reg,
> +			MC13892_REGULATORMODE1_VCAMCONFIGEN,
> +			en_val);
> +	mc13xxx_unlock(priv->mc13xxx);
> +
> +	return ret;
> +}
> +
> +unsigned int mc13892_vcam_get_mode(struct regulator_dev *rdev)
> +{
> +	struct mc13xxx_regulator_priv *priv = rdev_get_drvdata(rdev);
> +	int ret, id = rdev_get_id(rdev);
> +	unsigned int val;
> +
> +	mc13xxx_lock(priv->mc13xxx);
> +	ret = mc13xxx_reg_read(priv->mc13xxx, mc13892_regulators[id].reg, &val);
> +	mc13xxx_unlock(priv->mc13xxx);
> +
> +	if (ret)
> +		return ret;
> +
> +	if (val & MC13892_REGULATORMODE1_VCAMCONFIGEN)
> +		return REGULATOR_MODE_FAST;
> +
> +	return REGULATOR_MODE_NORMAL;
> +}
> +
> +
> +static int __devinit mc13892_regulator_probe(struct platform_device *pdev)
> +{
> +	struct mc13xxx_regulator_priv *priv;
> +	struct mc13xxx *mc13892 = dev_get_drvdata(pdev->dev.parent);
> +	struct mc13xxx_regulator_platform_data *pdata =
> +		dev_get_platdata(&pdev->dev);
> +	struct mc13xxx_regulator_init_data *init_data;
> +	int i, ret;
> +	u32 val;
> +
> +	priv = kzalloc(sizeof(*priv) +
> +			pdata->num_regulators * sizeof(priv->regulators[0]),
> +			GFP_KERNEL);
> +	if (!priv)
> +		return -ENOMEM;
> +
> +	priv->mc13xxx_regulators = mc13892_regulators;
> +	priv->mc13xxx = mc13892;
> +
> +	mc13xxx_lock(mc13892);
> +	ret = mc13xxx_reg_read(mc13892, MC13892_REVISION, &val);
> +	mc13xxx_unlock(mc13892);
> +	if (ret)
> +		goto err_alloc;
> +
> +	/* enable switch auto mode */
> +	if ((val & 0x0000FFFF) == 0x45d0) {
> +		mc13xxx_lock(mc13892);
> +		ret = mc13xxx_reg_rmw(mc13892, MC13892_SWITCHERS4,
> +			MC13892_SWITCHERS4_SW1MODE_M |
> +			MC13892_SWITCHERS4_SW2MODE_M,
> +			MC13892_SWITCHERS4_SW1MODE_AUTO |
> +			MC13892_SWITCHERS4_SW2MODE_AUTO);
> +		mc13xxx_unlock(mc13892);
> +		if (ret)
> +			goto err_alloc;
> +
> +		mc13xxx_lock(mc13892);
> +		mc13xxx_reg_rmw(mc13892, MC13892_SWITCHERS5,
> +			MC13892_SWITCHERS5_SW3MODE_M |
> +			MC13892_SWITCHERS5_SW4MODE_M,
> +			MC13892_SWITCHERS5_SW3MODE_AUTO |
> +			MC13892_SWITCHERS5_SW4MODE_AUTO);
> +		mc13xxx_unlock(mc13892);
> +		if (ret)
> +			goto err_alloc;
> +	}
> +
> +	mc13892_regulators[MC13892_VCAM].desc.ops->set_mode
> +		= mc13892_vcam_set_mode;
> +	mc13892_regulators[MC13892_VCAM].desc.ops->get_mode
> +		= mc13892_vcam_get_mode;
> +	for (i = 0; i < pdata->num_regulators; i++) {
> +		init_data = &pdata->regulators[i];
> +		priv->regulators[i] = regulator_register(
> +				&mc13892_regulators[init_data->id].desc,
> +				&pdev->dev, init_data->init_data, priv);
> +
> +		if (IS_ERR(priv->regulators[i])) {
> +			dev_err(&pdev->dev, "failed to register regulator %s\n",
> +				mc13892_regulators[i].desc.name);
> +			ret = PTR_ERR(priv->regulators[i]);
> +			goto err;
> +		}
> +	}
> +
> +	platform_set_drvdata(pdev, priv);
> +
> +	return 0;
> +err:
> +	while (--i >= 0)
> +		regulator_unregister(priv->regulators[i]);
> +
> +err_alloc:
> +	kfree(priv);
> +
> +	return ret;
> +}
> +
> +static int __devexit mc13892_regulator_remove(struct platform_device *pdev)
> +{
> +	struct mc13xxx_regulator_priv *priv = platform_get_drvdata(pdev);
> +	struct mc13xxx_regulator_platform_data *pdata =
> +		dev_get_platdata(&pdev->dev);
> +	int i;
> +
> +	platform_set_drvdata(pdev, NULL);
> +
> +	for (i = 0; i < pdata->num_regulators; i++)
> +		regulator_unregister(priv->regulators[i]);
> +
> +	kfree(priv);
> +	return 0;
> +}
> +
> +static struct platform_driver mc13892_regulator_driver = {
> +	.driver	= {
> +		.name	= "mc13892-regulator",
> +		.owner	= THIS_MODULE,
> +	},
> +	.remove	= __devexit_p(mc13892_regulator_remove),
> +	.probe	= mc13892_regulator_probe,
> +};
> +
> +static int __init mc13892_regulator_init(void)
> +{
> +	return platform_driver_register(&mc13892_regulator_driver);
> +}
> +subsys_initcall(mc13892_regulator_init);
> +
> +static void __exit mc13892_regulator_exit(void)
> +{
> +	platform_driver_unregister(&mc13892_regulator_driver);
> +}
> +module_exit(mc13892_regulator_exit);
> +
> +MODULE_LICENSE("GPL v2");
> +MODULE_AUTHOR("Yong Shen <yong.shen@linaro.org>");
> +MODULE_DESCRIPTION("Regulator Driver for Freescale MC13892 PMIC");
> +MODULE_ALIAS("platform:mc13892-regulator");
> diff --git a/include/linux/mfd/mc13892.h b/include/linux/mfd/mc13892.h
> new file mode 100644
> index 0000000..7df13e8
> --- /dev/null
> +++ b/include/linux/mfd/mc13892.h
> @@ -0,0 +1,38 @@
> +/*
> + * Copyright 2010 Yong Shen <yong.shen@linaro.org>
> + *
> + * This program is free software; you can redistribute it and/or modify it under
> + * the terms of the GNU General Public License version 2 as published by the
> + * Free Software Foundation.
> + */
> +
> +#ifndef __LINUX_MFD_MC13892_H
> +#define __LINUX_MFD_MC13892_H
> +#include <linux/mfd/mc13xxx.h>
> +
> +#define MC13892_SW1		0
> +#define MC13892_SW2		1
> +#define MC13892_SW3		2
> +#define MC13892_SW4		3
> +#define MC13892_SWBST	4
> +#define MC13892_VIOHI	5
> +#define MC13892_VPLL	6
> +#define MC13892_VDIG	7
> +#define MC13892_VSD	8
> +#define MC13892_VUSB2	9
> +#define MC13892_VVIDEO	10
> +#define MC13892_VAUDIO	11
> +#define MC13892_VCAM	12
> +#define MC13892_VGEN1	13
> +#define MC13892_VGEN2	14
> +#define MC13892_VGEN3	15
> +#define MC13892_VUSB	16
> +#define MC13892_GPO1	17
> +#define MC13892_GPO2	18
> +#define MC13892_GPO3	19
> +#define MC13892_GPO4	20
> +#define MC13892_PWGT1SPI	21
> +#define MC13892_PWGT2SPI	22
> +#define MC13892_VCOINCELL	23
> +
> +#endif
> -- 
> 1.7.0.4
> 
> 
> 

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

^ permalink raw reply	[flat|nested] 20+ messages in thread

* [PATCHv3] support PMIC mc13892
  2010-12-09 10:25   ` Sascha Hauer
@ 2010-12-09 12:59     ` Liam Girdwood
  0 siblings, 0 replies; 20+ messages in thread
From: Liam Girdwood @ 2010-12-09 12:59 UTC (permalink / raw)
  To: linux-arm-kernel

On Thu, 2010-12-09 at 11:25 +0100, Sascha Hauer wrote:
> On Wed, Dec 08, 2010 at 11:21:00AM +0800, yong.shen at freescale.com wrote:
> > From: Yong Shen <yong.shen@linaro.org>
> > 
> > add support for mc13892, tested on mx51 babbage board
> > 
> > Signed-off-by: Arnaud Patard <arnaud.patard@rtp-net.org>
> > Signed-off-by: Yong Shen <yong.shen@linaro.org>
> 
> As there seem to be only whitespace changes left to worry about:
> 
> Acked-by: Sascha Hauer <s.hauer@pengutronix.de>
> 

Thanks Sascha. 

Are you also happy with his other MC139892 patch. I believe both you and
Uwe were involved in the review. It's fine from regulator pov, just best
to get your Ack re the mxc changes :-

>From e112153c6f03b49c229a8e3913a0c0459245df20 Mon Sep 17 00:00:00 2001
From: Yong Shen <yong.shen@linaro.org>
Date: Thu, 2 Dec 2010 14:17:02 +0800
Subject: [PATCH 1/2] Change the register name definitions for mc13783

To make mc13783 and mc13892 share code, the register names should be
changed to fit the new macro definitions in the comming patch.

Signed-off-by: Yong Shen <yong.shen@linaro.org>

---
 arch/arm/mach-imx/mach-pcm038.c       |    4 +-
 arch/arm/mach-mx3/mach-mx31_3ds.c     |    4 +-
 arch/arm/mach-mx3/mach-mx31moboard.c  |    4 +-
 drivers/regulator/mc13783-regulator.c |   30 +++++++-------
 include/linux/mfd/mc13783.h           |   67 +++++++++++++++++----------------
 5 files changed, 55 insertions(+), 54 deletions(-)

^ permalink raw reply	[flat|nested] 20+ messages in thread

* [PATCHv3] support PMIC mc13892
  2010-12-08  3:28   ` Yong Shen
  2010-12-08  8:52     ` Uwe Kleine-König
  2010-12-08 12:54     ` Liam Girdwood
@ 2010-12-09 22:33     ` Liam Girdwood
  2 siblings, 0 replies; 20+ messages in thread
From: Liam Girdwood @ 2010-12-09 22:33 UTC (permalink / raw)
  To: linux-arm-kernel

On Wed, 2010-12-08 at 11:28 +0800, Yong Shen wrote:
> Hi Liam,
> 
> Last time, you took the previous patches for mc13783 code
> reorganization in your tree, I suppose you can also please take
> mc13892, which had passed review.

There are still some comments needing addressed here. When you make the
changes please make sure they apply to the regulator tree and add the
Acks.

Thanks

Liam
-- 
Freelance Developer, SlimLogic Ltd
ASoC and Voltage Regulator Maintainer.
http://www.slimlogic.co.uk

^ permalink raw reply	[flat|nested] 20+ messages in thread

end of thread, other threads:[~2010-12-09 22:33 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <1291778460-22819-1-git-send-email-yong.shen@freescale.com>
2010-12-08  3:21 ` [PATCHv3] support PMIC mc13892 yong.shen at freescale.com
2010-12-08  3:28   ` Yong Shen
2010-12-08  8:52     ` Uwe Kleine-König
2010-12-08  9:02       ` Yong Shen
2010-12-08 12:54     ` Liam Girdwood
2010-12-09  5:13       ` Yong Shen
2010-12-09  9:21         ` Liam Girdwood
2010-12-09  9:42           ` Uwe Kleine-König
2010-12-09 22:33     ` Liam Girdwood
2010-12-08  9:12   ` Uwe Kleine-König
2010-12-08  9:51     ` Yong Shen
2010-12-08 10:01     ` Mark Brown
2010-12-08 10:55       ` Uwe Kleine-König
2010-12-08 14:26       ` Arnaud Patard (Rtp)
2010-12-08 17:11         ` Mark Brown
2010-12-09  3:27           ` Yong Shen
2010-12-08  9:25   ` Samuel Ortiz
2010-12-08  9:59     ` Yong Shen
2010-12-09 10:25   ` Sascha Hauer
2010-12-09 12:59     ` Liam Girdwood

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.