From: Chen-Yu Tsai <wens-jdAy2FN1RRM@public.gmane.org>
To: Lee Jones <lee.jones-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>,
Samuel Ortiz <sameo-VuQAYsv1563Yd54FQh9/CA@public.gmane.org>,
Mark Brown <broonie-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>,
Liam Girdwood <lgirdwood-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>,
Rob Herring <robh+dt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>,
Pawel Moll <pawel.moll-5wv7dgnIgG8@public.gmane.org>,
Mark Rutland <mark.rutland-5wv7dgnIgG8@public.gmane.org>,
Ian Campbell
<ijc+devicetree-KcIKpvwj1kUDXYZnReoRVg@public.gmane.org>,
Kumar Gala <galak-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
Cc: Chen-Yu Tsai <wens-jdAy2FN1RRM@public.gmane.org>,
Maxime Ripard
<maxime.ripard-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org>,
Carlo Caione <carlo-KA+7E9HrN00dnm+yROfE0A@public.gmane.org>,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org,
devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
linux-sunxi-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
Subject: [PATCH v6 0/6] mfd: axp20x: add AXP221 PMIC support
Date: Wed, 1 Apr 2015 14:03:17 +0800 [thread overview]
Message-ID: <1427868203-7486-1-git-send-email-wens@csie.org> (raw)
Hi Lee,
This is v6 of the AXP221 series. This version is based on mfd-for-next
(ba867bc60a44). The DTS patches are merged through Maxime's tree, so
I dropped them.
I think it'd be easier if you take all the patches through your tree.
Otherwise, patch 4 depends on patch 1, and you'd need to setup a
common branch with Mark.
Changes since v5:
- Rebased onto mfd-for-next (ba867bc60a44)
- Dropped dts patches
- Removed double line spacing
Changes since v4:
- Rebased onto v4.0-rc1 and axp20x bindings v10
- Dropped regulator set registration patches
- Group regmap ranges/tables by AXP variant
- Fix AXP221 interrupt numbers to match datasheet
- Handle AXP variants when setting DC-DC regulator work mode
- Add "switch" type regulator DC1SW, which is a secondary output
of DCDC1 with a separate on/off switch.
- Add AXP221 to DT bindings
Regards
ChenYu
Boris BREZILLON (3):
mfd: axp20x: add AXP22x PMIC support
regulator: axp20x: prepare support for multiple AXP chip families
regulator: axp20x: add support for AXP22X regulators
Chen-Yu Tsai (3):
mfd: axp20x: update DT bindings with AXP22x compatibles
mfd: axp20x: Add AXP22x regulator information to DT bindings
mfd: axp20x: Enable AXP22X regulators
Documentation/devicetree/bindings/mfd/axp20x.txt | 32 ++-
drivers/mfd/axp20x.c | 100 ++++++++++
drivers/regulator/axp20x-regulator.c | 239 ++++++++++++++++++-----
include/linux/mfd/axp20x.h | 86 ++++++++
4 files changed, 405 insertions(+), 52 deletions(-)
--
2.1.4
next reply other threads:[~2015-04-01 6:03 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-04-01 6:03 Chen-Yu Tsai [this message]
[not found] ` <1427868203-7486-1-git-send-email-wens-jdAy2FN1RRM@public.gmane.org>
2015-04-01 6:03 ` [PATCH v6 1/6] mfd: axp20x: add AXP22x PMIC support Chen-Yu Tsai
[not found] ` <1427868203-7486-2-git-send-email-wens-jdAy2FN1RRM@public.gmane.org>
2015-04-01 7:12 ` Lee Jones
2015-04-01 7:17 ` Chen-Yu Tsai
2015-04-01 6:03 ` [PATCH v6 2/6] mfd: axp20x: update DT bindings with AXP22x compatibles Chen-Yu Tsai
2015-04-01 6:03 ` [PATCH v6 3/6] regulator: axp20x: prepare support for multiple AXP chip families Chen-Yu Tsai
[not found] ` <1427868203-7486-4-git-send-email-wens-jdAy2FN1RRM@public.gmane.org>
2015-04-09 17:23 ` Chen-Yu Tsai
[not found] ` <CAGb2v66zbATMHY5SgZLs3RCoRETroSh5nC3h4TXRLm5UAbythw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2015-04-09 19:55 ` Mark Brown
[not found] ` <20150409195502.GC6023-GFdadSzt00ze9xe1eoZjHA@public.gmane.org>
2015-04-09 20:30 ` Chen-Yu Tsai
[not found] ` <CAGb2v66B-__CRcoyoiebNUs-=UBWxP4kQBGVpO4R_FMUSh7MKw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2015-04-09 20:36 ` Mark Brown
[not found] ` <20150409203634.GD6023-GFdadSzt00ze9xe1eoZjHA@public.gmane.org>
2015-04-10 3:36 ` Chen-Yu Tsai
2015-04-01 6:03 ` [PATCH v6 4/6] regulator: axp20x: add support for AXP22X regulators Chen-Yu Tsai
2015-04-01 6:03 ` [PATCH v6 5/6] mfd: axp20x: Add AXP22x regulator information to DT bindings Chen-Yu Tsai
[not found] ` <1427868203-7486-6-git-send-email-wens-jdAy2FN1RRM@public.gmane.org>
2015-04-01 7:10 ` Lee Jones
2015-04-01 6:03 ` [PATCH v6 6/6] mfd: axp20x: Enable AXP22X regulators Chen-Yu Tsai
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=1427868203-7486-1-git-send-email-wens@csie.org \
--to=wens-jday2fn1rrm@public.gmane.org \
--cc=broonie-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org \
--cc=carlo-KA+7E9HrN00dnm+yROfE0A@public.gmane.org \
--cc=devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=galak-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org \
--cc=ijc+devicetree-KcIKpvwj1kUDXYZnReoRVg@public.gmane.org \
--cc=lee.jones-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org \
--cc=lgirdwood-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \
--cc=linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org \
--cc=linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=linux-sunxi-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org \
--cc=mark.rutland-5wv7dgnIgG8@public.gmane.org \
--cc=maxime.ripard-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org \
--cc=pawel.moll-5wv7dgnIgG8@public.gmane.org \
--cc=robh+dt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org \
--cc=sameo-VuQAYsv1563Yd54FQh9/CA@public.gmane.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).