linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Sebastian Reichel <sre@kernel.org>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: linux-kernel@vger.kernel.org, linux-pm@vger.kernel.org,
	Bjorn Helgaas <helgaas@kernel.org>
Subject: [GIT PULL] power-supply changes for 5.3
Date: Mon, 15 Jul 2019 21:49:33 +0200	[thread overview]
Message-ID: <20190715194933.cq3cfz7g6j3mnbmc@earth.universe> (raw)

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

Hi Linus,

Here is the power-supply pull request for v5.3. Stephen reported a
merge conflict with the PCI tree in linux-next, which contains a
patch updating the power related documentation files to ReST format.
The merge conflict solution from Stephen looks correct to me:

https://lkml.org/lkml/2019/6/27/1284

-- Sebastian

The following changes since commit a188339ca5a396acc588e5851ed7e19f66b0ebd9:

  Linux 5.2-rc1 (2019-05-19 15:47:09 -0700)

are available in the Git repository at:

  ssh://git@gitolite.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git tags/for-v5.3

for you to fetch changes up to caa2b557841c8cedc1d4862cd31cf76ee940d105:

  power: reset: nvmem-reboot-mode: add CONFIG_OF dependency (2019-07-09 00:28:49 +0200)

----------------------------------------------------------------
power supply and reset changes for the v5.3 series

Core:
 * Add HWMON compat layer
 * New properties
  - input power limit
  - input voltage limit

Drivers:
 * qcom-pon: add gen2 support
 * New driver for storing reboot move in NVMEM
 * New driver for Wilco EC charger configuration
 * simplify getting the adapter of a client

----------------------------------------------------------------
Andrey Smirnov (1):
      power: supply: Add HWMON compatibility layer

Arnd Bergmann (1):
      power: reset: nvmem-reboot-mode: add CONFIG_OF dependency

Enric Balletbo i Serra (2):
      power: supply: add input power and voltage limit properties
      power: supply: cros: allow to set input voltage and current limit

Han Nandor (2):
      dt-bindings: power: reset: add document for NVMEM based reboot-mode
      power: reset: nvmem-reboot-mode: use NVMEM as reboot mode write interface

John Stultz (2):
      dt-bindings: power: reset: qcom: Add qcom,pm8998-pon compatibility line
      reset: qcom-pon: Add support for gen2 pon

Nick Crews (2):
      platform/chrome: wilco_ec: Add property helper library
      power_supply: wilco_ec: Add charging config driver

Sebastian Reichel (1):
      Merge tag 'tags/ib-chrome-psy-5.3' into psy-next

Wolfram Sang (9):
      power: supply: bq24190_charger: simplify getting the adapter of a client
      power: supply: bq24257_charger: simplify getting the adapter of a client
      power: supply: bq25890_charger: simplify getting the adapter of a client
      power: supply: max14656_charger_detector: simplify getting the adapter of a client
      power: supply: max17040_battery: simplify getting the adapter of a client
      power: supply: max17042_battery: simplify getting the adapter of a client
      power: supply: rt5033_battery: simplify getting the adapter of a client
      power: supply: rt9455_charger: simplify getting the adapter of a client
      power: supply: sbs-manager: simplify getting the adapter of a client

kbuild test robot (1):
      power: supply: fix semicolon.cocci warnings

 Documentation/ABI/testing/sysfs-class-power        |  32 ++
 Documentation/ABI/testing/sysfs-class-power-wilco  |  30 ++
 .../bindings/power/reset/nvmem-reboot-mode.txt     |  26 ++
 .../devicetree/bindings/power/reset/qcom,pon.txt   |   1 +
 Documentation/power/power_supply_class.txt         |   4 +
 drivers/platform/chrome/wilco_ec/Makefile          |   2 +-
 drivers/platform/chrome/wilco_ec/properties.c      | 132 ++++++++
 drivers/power/reset/Kconfig                        |  10 +
 drivers/power/reset/Makefile                       |   1 +
 drivers/power/reset/nvmem-reboot-mode.c            |  76 +++++
 drivers/power/reset/qcom-pon.c                     |  12 +-
 drivers/power/supply/Kconfig                       |  23 ++
 drivers/power/supply/Makefile                      |   2 +
 drivers/power/supply/bq24190_charger.c             |   2 +-
 drivers/power/supply/bq24257_charger.c             |   2 +-
 drivers/power/supply/bq25890_charger.c             |   2 +-
 drivers/power/supply/cros_usbpd-charger.c          | 116 +++++++
 drivers/power/supply/max14656_charger_detector.c   |   2 +-
 drivers/power/supply/max17040_battery.c            |   2 +-
 drivers/power/supply/max17042_battery.c            |   2 +-
 drivers/power/supply/power_supply_core.c           |   7 +
 drivers/power/supply/power_supply_hwmon.c          | 355 +++++++++++++++++++++
 drivers/power/supply/power_supply_sysfs.c          |   2 +
 drivers/power/supply/rt5033_battery.c              |   2 +-
 drivers/power/supply/rt9455_charger.c              |   2 +-
 drivers/power/supply/sbs-manager.c                 |   2 +-
 drivers/power/supply/ucs1002_power.c               |   2 +-
 drivers/power/supply/wilco-charger.c               | 187 +++++++++++
 include/linux/platform_data/wilco-ec.h             |  71 +++++
 include/linux/power_supply.h                       |  15 +
 30 files changed, 1110 insertions(+), 14 deletions(-)
 create mode 100644 Documentation/ABI/testing/sysfs-class-power-wilco
 create mode 100644 Documentation/devicetree/bindings/power/reset/nvmem-reboot-mode.txt
 create mode 100644 drivers/platform/chrome/wilco_ec/properties.c
 create mode 100644 drivers/power/reset/nvmem-reboot-mode.c
 create mode 100644 drivers/power/supply/power_supply_hwmon.c
 create mode 100644 drivers/power/supply/wilco-charger.c

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

             reply	other threads:[~2019-07-15 19:49 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-07-15 19:49 Sebastian Reichel [this message]
2019-07-16  4:35 ` [GIT PULL] power-supply changes for 5.3 pr-tracker-bot

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=20190715194933.cq3cfz7g6j3mnbmc@earth.universe \
    --to=sre@kernel.org \
    --cc=helgaas@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-pm@vger.kernel.org \
    --cc=torvalds@linux-foundation.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).