linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Sebastian Reichel <sebastian.reichel@collabora.com>
To: Chen-Yu Tsai <wens@csie.org>
Cc: Lee Jones <lee.jones@linaro.org>,
	oskari@lemmela.net, Rob Herring <robh+dt@kernel.org>,
	Mark Rutland <mark.rutland@arm.com>,
	Maxime Ripard <maxime.ripard@bootlin.com>,
	Quentin Schulz <quentin.schulz@bootlin.com>,
	Vasily Khoruzhick <anarsoul@gmail.com>,
	"open list:THERMAL" <linux-pm@vger.kernel.org>,
	devicetree <devicetree@vger.kernel.org>,
	linux-kernel <linux-kernel@vger.kernel.org>,
	linux-arm-kernel <linux-arm-kernel@lists.infradead.org>
Subject: Re: [PATCH v6 0/8] AXP8x3 AC and battery power supply support
Date: Wed, 5 Dec 2018 19:00:42 +0100	[thread overview]
Message-ID: <20181205180042.fr5npvtwuvt2c6q3@earth.universe> (raw)
In-Reply-To: <CAGb2v65Bwve25jwdGHHK9j03RxQ3tKwme51762DjyQK2femG6g@mail.gmail.com>

[-- Attachment #1: Type: text/plain, Size: 3099 bytes --]

Hi,

On Fri, Nov 30, 2018 at 04:31:28PM +0800, Chen-Yu Tsai wrote:
> On Wed, Nov 21, 2018 at 1:52 AM Oskari Lemmela <oskari@lemmela.net> wrote:
> >
> > AXP813 AC power supply support with input current and
> > voltage limiting support.
> >
> > AXP803 AC and battery power supply support.
> >
> > Changes in v6:
> > * Collected tags
> > * Rebase to master
> > * Dropped AXP803 compatible patches
> >
> > Changes in v5:
> > * Return correct input current limit for values 0x6 and 0x7
> > * Add specific compatibles for AXP803
> > * Change commit messages
> > * Add Vasily Khoruzhick Pinebook DTS patch
> >
> > Changes in v4:
> > * Change order of axp20x-gpio in axp20x.c
> > * Fix indentation and spaces to tabs in axp20x.c
> >
> > Changes in v3:
> > * Reorder ac_power_supply DT node
> > * Rename axp20x_ac_power_set_property function
> > * Split mfd commit
> >
> > Changes in v2:
> > * Reuse axp813 compatibles for axp803
> > * Refactor axp20x_ac_power.c
> >
> >
> > Oskari Lemmela (7):
> >   dt-bindings: power: supply: axp20x: add AXP813 AC power DT binding
> >   ARM: dts: axp81x: add AC power supply subnode
> >   arm64: dts: allwinner: axp803: add AC and battery power supplies
> >   arm64: dts: allwinner: a64: sopine-baseboard: enable power supplies
> >   power: supply: add AC power supply driver for AXP813
> >   mfd: axp20x: Add AC power supply cell for AXP813
> >   mfd: axp20x: Add supported cells for AXP803
> >
> > Vasily Khoruzhick (1):
> >   arm64: dts: allwinner: a64: pinebook: enable power supplies
> 
> Since this series has been fully reviewed, and the devices it
> adds/enables aren't critical, i.e. won't cause the system to fail
> if the drivers are missing, I've merged the dts patches for 4.21.
> 
> Hopefully Sebastian and Lee will get around to merging the driver
> patches.

I queued the power-supply driver changes and prepared a signed
immutable tag for Lee:

The following changes since commit 651022382c7f8da46cb4872a545ee1da6d097d2a:

  Linux 4.20-rc1 (2018-11-04 15:37:52 -0800)

are available in the Git repository at:

  ssh://git@gitolite.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git tags/psy-mfd-axp813-immutable-for-v4.21-signed

for you to fetch changes up to 7693b5643fd2d682de90733b67fc8032b9646911:

  power: supply: add AC power supply driver for AXP813 (2018-12-05 18:49:32 +0100)

----------------------------------------------------------------
Immutable branch between mfd and power-supply for driver
changes related to axp813.

Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>

----------------------------------------------------------------
Oskari Lemmela (2):
      dt-bindings: power: supply: axp20x: add AXP813 AC power DT binding
      power: supply: add AC power supply driver for AXP813

 .../bindings/power/supply/axp20x_ac_power.txt      |  3 +
 drivers/power/supply/axp20x_ac_power.c             | 94 ++++++++++++++++++++++
 include/linux/mfd/axp20x.h                         |  1 +
 3 files changed, 98 insertions(+)

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

  reply	other threads:[~2018-12-05 18:00 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-11-20 17:52 [PATCH v6 0/8] AXP8x3 AC and battery power supply support Oskari Lemmela
2018-11-20 17:52 ` [PATCH v6 1/8] dt-bindings: power: supply: axp20x: add AXP813 AC power DT binding Oskari Lemmela
2018-11-20 17:52 ` [PATCH v6 2/8] ARM: dts: axp81x: add AC power supply subnode Oskari Lemmela
2018-11-20 17:52 ` [PATCH v6 3/8] arm64: dts: allwinner: axp803: add AC and battery power supplies Oskari Lemmela
2018-11-20 17:52 ` [PATCH v6 4/8] arm64: dts: allwinner: a64: sopine-baseboard: enable " Oskari Lemmela
2018-11-20 17:52 ` [PATCH v6 5/8] arm64: dts: allwinner: a64: pinebook: " Oskari Lemmela
2018-11-20 17:52 ` [PATCH v6 6/8] power: supply: add AC power supply driver for AXP813 Oskari Lemmela
2018-11-20 17:52 ` [PATCH v6 7/8] mfd: axp20x: Add AC power supply cell " Oskari Lemmela
2018-12-07 16:40   ` Lee Jones
2018-11-20 17:52 ` [PATCH v6 8/8] mfd: axp20x: Add supported cells for AXP803 Oskari Lemmela
2018-12-07 16:40   ` Lee Jones
2018-12-07 18:58     ` Vasily Khoruzhick
2018-12-07 19:22       ` Lee Jones
2018-12-08 15:05         ` Quentin Schulz
2018-12-10  6:27           ` Lee Jones
2018-12-10  8:29             ` Quentin Schulz
2018-12-08 18:10     ` Oskari Lemmelä
2018-12-10  6:27   ` Lee Jones
2018-11-30  8:31 ` [PATCH v6 0/8] AXP8x3 AC and battery power supply support Chen-Yu Tsai
2018-12-05 18:00   ` Sebastian Reichel [this message]
2018-12-07  7:28     ` Lee Jones
2018-12-07  7:45       ` 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=20181205180042.fr5npvtwuvt2c6q3@earth.universe \
    --to=sebastian.reichel@collabora.com \
    --cc=anarsoul@gmail.com \
    --cc=devicetree@vger.kernel.org \
    --cc=lee.jones@linaro.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-pm@vger.kernel.org \
    --cc=mark.rutland@arm.com \
    --cc=maxime.ripard@bootlin.com \
    --cc=oskari@lemmela.net \
    --cc=quentin.schulz@bootlin.com \
    --cc=robh+dt@kernel.org \
    --cc=wens@csie.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).