All of lore.kernel.org
 help / color / mirror / Atom feed
From: Lee Jones <lee@kernel.org>
To: Dzmitry Sankouski <dsankouski@gmail.com>
Cc: Sebastian Reichel <sre@kernel.org>,
	Chanwoo Choi <cw00.choi@samsung.com>,
	Krzysztof Kozlowski <krzk@kernel.org>,
	Rob Herring <robh@kernel.org>, Conor Dooley <conor+dt@kernel.org>,
	Dmitry Torokhov <dmitry.torokhov@gmail.com>,
	Pavel Machek <pavel@ucw.cz>, Hans de Goede <hdegoede@redhat.com>,
	Marek Szyprowski <m.szyprowski@samsung.com>,
	Sebastian Krzyszkowiak <sebastian.krzyszkowiak@puri.sm>,
	Purism Kernel Team <kernel@puri.sm>,
	Krzysztof Kozlowski <krzk+dt@kernel.org>,
	linux-pm@vger.kernel.org, linux-kernel@vger.kernel.org,
	devicetree@vger.kernel.org, linux-input@vger.kernel.org,
	linux-leds@vger.kernel.org,
	Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Subject: [GIT PULL] Immutable branch between MFD, Input, LEDs and Power due for the v6.15 merge window
Date: Fri, 21 Feb 2025 16:03:22 +0000	[thread overview]
Message-ID: <20250221160322.GE824852@google.com> (raw)
In-Reply-To: <20250123-starqltechn_integration_upstream-v17-0-8b06685b6612@gmail.com>

Enjoy!

The following changes since commit 2014c95afecee3e76ca4a56956a936e23283f05b:

  Linux 6.14-rc1 (2025-02-02 15:39:26 -0800)

are available in the Git repository at:

  ssh://git@gitolite.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git tags/ib-mfd-input-leds-power-v6.15

for you to fetch changes up to aebb5fc9a0d87916133b911e1ef2cc04a7996335:

  leds: max77705: Add LEDs support (2025-02-20 16:38:37 +0000)

----------------------------------------------------------------
Immutable branch between MFD, Input, LEDs and Power due for the v6.15 merge window

----------------------------------------------------------------
Dzmitry Sankouski (7):
      dt-bindings: power: supply: add maxim,max77705 charger
      dt-bindings: mfd: Add maxim,max77705
      power: supply: max77705: Add charger driver for Maxim 77705
      mfd: simple-mfd-i2c: Add MAX77705 support
      mfd: Add new driver for MAX77705 PMIC
      Input: max77693 - add max77705 haptic support
      leds: max77705: Add LEDs support

 .../devicetree/bindings/mfd/maxim,max77705.yaml    | 158 ++++++
 .../bindings/power/supply/maxim,max77705.yaml      |  50 ++
 MAINTAINERS                                        |   4 +
 drivers/input/misc/Kconfig                         |   6 +-
 drivers/input/misc/max77693-haptic.c               |  13 +-
 drivers/leds/Kconfig                               |   8 +
 drivers/leds/Makefile                              |   1 +
 drivers/leds/leds-max77705.c                       | 275 ++++++++++
 drivers/mfd/Kconfig                                |  13 +
 drivers/mfd/Makefile                               |   1 +
 drivers/mfd/max77705.c                             | 182 +++++++
 drivers/mfd/simple-mfd-i2c.c                       |  11 +
 drivers/power/supply/Kconfig                       |   6 +
 drivers/power/supply/Makefile                      |   1 +
 drivers/power/supply/max77705_charger.c            | 581 +++++++++++++++++++++
 include/linux/mfd/max77693-common.h                |   4 +-
 include/linux/mfd/max77705-private.h               | 195 +++++++
 include/linux/power/max77705_charger.h             | 195 +++++++
 18 files changed, 1699 insertions(+), 5 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/mfd/maxim,max77705.yaml
 create mode 100644 Documentation/devicetree/bindings/power/supply/maxim,max77705.yaml
 create mode 100644 drivers/leds/leds-max77705.c
 create mode 100644 drivers/mfd/max77705.c
 create mode 100644 drivers/power/supply/max77705_charger.c
 create mode 100644 include/linux/mfd/max77705-private.h
 create mode 100644 include/linux/power/max77705_charger.h

-- 
Lee Jones [李琼斯]

  parent reply	other threads:[~2025-02-21 16:03 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-01-23 15:04 [PATCH v17 0/7] Add support for Maxim Integrated MAX77705 PMIC Dzmitry Sankouski
2025-01-23 15:04 ` [PATCH v17 1/7] dt-bindings: power: supply: add maxim,max77705 charger Dzmitry Sankouski
2025-02-20  0:28   ` Sebastian Reichel
2025-01-23 15:04 ` [PATCH v17 2/7] dt-bindings: mfd: add maxim,max77705 Dzmitry Sankouski
2025-01-23 15:04 ` [PATCH v17 3/7] power: supply: max77705: Add charger driver for Maxim 77705 Dzmitry Sankouski
2025-02-10 17:03   ` Lee Jones
2025-02-20  0:28     ` Sebastian Reichel
2025-01-23 15:04 ` [PATCH v17 4/7] mfd: simple-mfd-i2c: Add MAX77705 support Dzmitry Sankouski
2025-01-23 15:04 ` [PATCH v17 5/7] mfd: Add new driver for MAX77705 PMIC Dzmitry Sankouski
2025-01-23 15:04 ` [PATCH v17 6/7] input: max77693: add max77705 haptic support Dzmitry Sankouski
2025-01-23 15:04 ` [PATCH v17 7/7] leds: max77705: Add LEDs support Dzmitry Sankouski
2025-02-10 17:08 ` [PATCH v17 0/7] Add support for Maxim Integrated MAX77705 PMIC Lee Jones
2025-02-20 16:40 ` Lee Jones
2025-02-20 16:43   ` Lee Jones
2025-02-21 16:03 ` Lee Jones [this message]
2025-03-17 17:02   ` [GIT PULL] Immutable branch between MFD, Input, LEDs and Power due for the v6.15 merge window Rob Herring
2025-03-20 15:55     ` Lee Jones
2025-03-20 16:14       ` Krzysztof Kozlowski
2025-03-20 16:29         ` Lee Jones

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=20250221160322.GE824852@google.com \
    --to=lee@kernel.org \
    --cc=conor+dt@kernel.org \
    --cc=cw00.choi@samsung.com \
    --cc=devicetree@vger.kernel.org \
    --cc=dmitry.torokhov@gmail.com \
    --cc=dsankouski@gmail.com \
    --cc=hdegoede@redhat.com \
    --cc=kernel@puri.sm \
    --cc=krzk+dt@kernel.org \
    --cc=krzk@kernel.org \
    --cc=krzysztof.kozlowski@linaro.org \
    --cc=linux-input@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-leds@vger.kernel.org \
    --cc=linux-pm@vger.kernel.org \
    --cc=m.szyprowski@samsung.com \
    --cc=pavel@ucw.cz \
    --cc=robh@kernel.org \
    --cc=sebastian.krzyszkowiak@puri.sm \
    --cc=sre@kernel.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 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.