From: rnayak@ti.com (Rajendra Nayak)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 4/4] MFD: twl-core: regulator configuration for twl6030 V1V8, V2V1 SMPS
Date: Tue, 28 Feb 2012 15:09:13 +0530 [thread overview]
Message-ID: <1330421953-29517-5-git-send-email-rnayak@ti.com> (raw)
In-Reply-To: <1330421953-29517-1-git-send-email-rnayak@ti.com>
From: Peter Ujfalusi <peter.ujfalusi@ti.com>
To be able to attach consumers to these supplies from board
files we need to have regulator_init_data for them.
Signed-off-by: Peter Ujfalusi <peter.ujfalusi@ti.com>
Signed-off-by: Rajendra Nayak <rnayak@ti.com>
Cc: Samuel Ortiz <sameo@linux.intel.com>
Cc: Misael Lopez Cruz <misael.lopez@ti.com>
Cc: Santosh Shilimkar <santosh.shilimkar@ti.com>
---
drivers/mfd/twl-core.c | 10 ++++++++++
include/linux/i2c/twl.h | 2 ++
2 files changed, 12 insertions(+), 0 deletions(-)
diff --git a/drivers/mfd/twl-core.c b/drivers/mfd/twl-core.c
index e1d3a64..6cb1061 100644
--- a/drivers/mfd/twl-core.c
+++ b/drivers/mfd/twl-core.c
@@ -966,6 +966,16 @@ add_children(struct twl4030_platform_data *pdata, unsigned long features)
if (IS_ERR(child))
return PTR_ERR(child);
+ child = add_regulator(TWL6030_REG_V1V8, pdata->v1v8,
+ features);
+ if (IS_ERR(child))
+ return PTR_ERR(child);
+
+ child = add_regulator(TWL6030_REG_V2V1, pdata->v2v1,
+ features);
+ if (IS_ERR(child))
+ return PTR_ERR(child);
+
child = add_regulator(TWL6030_REG_VMMC, pdata->vmmc,
features);
if (IS_ERR(child))
diff --git a/include/linux/i2c/twl.h b/include/linux/i2c/twl.h
index f66c031..7fcab23 100644
--- a/include/linux/i2c/twl.h
+++ b/include/linux/i2c/twl.h
@@ -734,6 +734,8 @@ struct twl4030_platform_data {
struct regulator_init_data *vcxio;
struct regulator_init_data *vusb;
struct regulator_init_data *clk32kg;
+ struct regulator_init_data *v1v8;
+ struct regulator_init_data *v2v1;
/* TWL6025 LDO regulators */
struct regulator_init_data *ldo1;
struct regulator_init_data *ldo2;
--
1.7.1
next prev parent reply other threads:[~2012-02-28 9:39 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-02-28 9:39 [PATCH 0/4] twl-regulator DT adaptation and updates to add new regulators Rajendra Nayak
2012-02-28 9:39 ` [PATCH 1/4] regulator: twl6030: add support for vdd1, vdd2 and vdd3 regulators Rajendra Nayak
2012-03-02 13:53 ` Samuel Ortiz
2012-03-02 15:15 ` Mark Brown
2012-02-28 9:39 ` [PATCH 2/4] regulator: twl: adapt twl-regulator driver to dt Rajendra Nayak
2012-02-28 9:39 ` [PATCH 3/4] regulator: twl-regulator: Add fixed LDO for V1V8, V2V1 supply Rajendra Nayak
2012-02-28 9:39 ` Rajendra Nayak [this message]
2012-02-29 23:18 ` [PATCH 0/4] twl-regulator DT adaptation and updates to add new regulators Mark Brown
2012-03-01 5:40 ` Rajendra Nayak
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1330421953-29517-5-git-send-email-rnayak@ti.com \
--to=rnayak@ti.com \
--cc=linux-arm-kernel@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).