From: yadi.brar01@gmail.com
To: linux-kernel@vger.kernel.org
Cc: linux-samsung-soc@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
Mark Brown <broonie@opensource.wolfsonmicro.com>,
Liam Girdwood <lrg@ti.com>,
Yadwinder Singh Brar <yadi.brar@samsung.com>
Subject: [PATCH v3 0/2] regulator: Add initial suport for max77686
Date: Tue, 22 May 2012 11:26:58 +0530 [thread overview]
Message-ID: <4fbb2ac4.63de440a.589d.78cc@mx.google.com> (raw)
In-Reply-To: <y>
From: Yadwinder Singh Brar <yadi.brar@samsung.com>
This patch series adds support for max77686 which is a multifunction device
which includes regulator (pmic), rtc and charger sub-blocks within it. The
support for mfd driver and regulator driver are added by this patch series. This
patch series also includes device tree and irqdomain support for mfd and
regulator portions.
Implemented the required modification, stated in the recieved review comments.
changes since v1:
-added regmap support.
-implemented .get_voltage_sel, .set_voltage_sel and .set_voltage_time_sel after
removing .get_voltage and .set_voltage in regulator driver.
-used of_regulator_match() for parsing DT.
-added Documentation for Devive Tree binding.
changes since v2:
-converted to use regulator_get_voltage_sel_regmap,
regulator_set_voltage_sel_regmap, regulator_enable_regmap,
regulator_disable_regmap, regulator_is_enabled_regmap.
This patch series is based on mark_regulator/for-next and has been tested on
GAIA board.
Yadwinder Singh Brar (2):
mfd: Add support for MAX77686.
regulator: Add support for MAX77686.
Documentation/devicetree/bindings/mfd/max77686.txt | 61 +++
drivers/mfd/Kconfig | 21 +
drivers/mfd/Makefile | 1 +
drivers/mfd/max77686-irq.c | 255 +++++++++++++
drivers/mfd/max77686.c | 322 ++++++++++++++++
drivers/regulator/Kconfig | 9 +
drivers/regulator/Makefile | 1 +
drivers/regulator/max77686.c | 389 ++++++++++++++++++++
include/linux/mfd/max77686-private.h | 282 ++++++++++++++
include/linux/mfd/max77686.h | 100 +++++
10 files changed, 1441 insertions(+), 0 deletions(-)
create mode 100644 Documentation/devicetree/bindings/mfd/max77686.txt
create mode 100644 drivers/mfd/max77686-irq.c
create mode 100644 drivers/mfd/max77686.c
create mode 100644 drivers/regulator/max77686.c
create mode 100644 include/linux/mfd/max77686-private.h
create mode 100644 include/linux/mfd/max77686.h
WARNING: multiple messages have this Message-ID (diff)
From: yadi.brar01@gmail.com (yadi.brar01 at gmail.com)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v3 0/2] regulator: Add initial suport for max77686
Date: Tue, 22 May 2012 11:26:58 +0530 [thread overview]
Message-ID: <4fbb2ac4.63de440a.589d.78cc@mx.google.com> (raw)
In-Reply-To: <y>
From: Yadwinder Singh Brar <yadi.brar@samsung.com>
This patch series adds support for max77686 which is a multifunction device
which includes regulator (pmic), rtc and charger sub-blocks within it. The
support for mfd driver and regulator driver are added by this patch series. This
patch series also includes device tree and irqdomain support for mfd and
regulator portions.
Implemented the required modification, stated in the recieved review comments.
changes since v1:
-added regmap support.
-implemented .get_voltage_sel, .set_voltage_sel and .set_voltage_time_sel after
removing .get_voltage and .set_voltage in regulator driver.
-used of_regulator_match() for parsing DT.
-added Documentation for Devive Tree binding.
changes since v2:
-converted to use regulator_get_voltage_sel_regmap,
regulator_set_voltage_sel_regmap, regulator_enable_regmap,
regulator_disable_regmap, regulator_is_enabled_regmap.
This patch series is based on mark_regulator/for-next and has been tested on
GAIA board.
Yadwinder Singh Brar (2):
mfd: Add support for MAX77686.
regulator: Add support for MAX77686.
Documentation/devicetree/bindings/mfd/max77686.txt | 61 +++
drivers/mfd/Kconfig | 21 +
drivers/mfd/Makefile | 1 +
drivers/mfd/max77686-irq.c | 255 +++++++++++++
drivers/mfd/max77686.c | 322 ++++++++++++++++
drivers/regulator/Kconfig | 9 +
drivers/regulator/Makefile | 1 +
drivers/regulator/max77686.c | 389 ++++++++++++++++++++
include/linux/mfd/max77686-private.h | 282 ++++++++++++++
include/linux/mfd/max77686.h | 100 +++++
10 files changed, 1441 insertions(+), 0 deletions(-)
create mode 100644 Documentation/devicetree/bindings/mfd/max77686.txt
create mode 100644 drivers/mfd/max77686-irq.c
create mode 100644 drivers/mfd/max77686.c
create mode 100644 drivers/regulator/max77686.c
create mode 100644 include/linux/mfd/max77686-private.h
create mode 100644 include/linux/mfd/max77686.h
next reply other threads:[~2012-05-22 5:57 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-05-22 5:56 yadi.brar01 [this message]
2012-05-22 5:56 ` [PATCH v3 0/2] regulator: Add initial suport for max77686 yadi.brar01 at gmail.com
2012-05-22 6:53 ` Kyungmin Park
2012-05-22 6:53 ` Kyungmin Park
2012-05-22 9:38 ` Mark Brown
2012-05-22 9:38 ` Mark Brown
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=4fbb2ac4.63de440a.589d.78cc@mx.google.com \
--to=yadi.brar01@gmail.com \
--cc=broonie@opensource.wolfsonmicro.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-samsung-soc@vger.kernel.org \
--cc=lrg@ti.com \
--cc=yadi.brar@samsung.com \
/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 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.