Linux clock framework development
 help / color / mirror / Atom feed
From: Lee Jones <lee.jones@linaro.org>
To: Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
Cc: mazziesaccount@gmail.com, Mark Brown <broonie@kernel.org>,
	Stephen Boyd <sboyd@kernel.org>,
	Linus Walleij <linus.walleij@linaro.org>,
	linux-clk@vger.kernel.org, linux-gpio@ger.kernel.org
Subject: [GIT PULL] Immutable branch between MFD, Clk, GPIO, Regulator and RTC due for the v5.6 merge window
Date: Fri, 24 Jan 2020 07:32:30 +0000	[thread overview]
Message-ID: <20200124073230.GQ15507@dell> (raw)
In-Reply-To: <cover.1579527444.git.matti.vaittinen@fi.rohmeurope.com>

Enjoy!

The following changes since commit e42617b825f8073569da76dc4510bfa019b1c35a:

  Linux 5.5-rc1 (2019-12-08 14:57:55 -0800)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git ib-mfd-clk-gpio-regulator-rtc-v5.6

for you to fetch changes up to c31f625d06c9166f753a2f21ac9c3f859647ca9f:

  gpio: bd71828: Initial support for ROHM BD71828 PMIC GPIOs (2020-01-24 07:23:10 +0000)

----------------------------------------------------------------
Immutable branch between MFD, Clk, GPIO, Regulator and RTC due for the v5.6 merge window

----------------------------------------------------------------
Matti Vaittinen (11):
      dt-bindings: leds: ROHM BD71282 PMIC LED driver
      dt-bindings: mfd: Document ROHM BD71828 bindings
      mfd: Rohm PMICs: Use platform_device_id to match MFD sub-devices
      mfd: bd718x7: Add compatible for BD71850
      mfd: bd71828: Support ROHM BD71828 PMIC - core
      mfd: bd71828: Add power-key support
      clk: bd718x7: Support ROHM BD71828 clk block
      regulator: bd718x7: Split driver to common and bd718x7 specific parts
      mfd: bd70528: Fix hour register mask
      rtc: bd70528: add BD71828 support
      gpio: bd71828: Initial support for ROHM BD71828 PMIC GPIOs

 .../bindings/leds/rohm,bd71828-leds.yaml           |  52 +++
 .../devicetree/bindings/mfd/rohm,bd71828-pmic.yaml | 193 ++++++++++
 drivers/clk/Kconfig                                |   6 +-
 drivers/clk/clk-bd718x7.c                          |  50 ++-
 drivers/gpio/Kconfig                               |  12 +
 drivers/gpio/Makefile                              |   1 +
 drivers/gpio/gpio-bd71828.c                        | 159 ++++++++
 drivers/mfd/Kconfig                                |  15 +
 drivers/mfd/Makefile                               |   1 +
 drivers/mfd/rohm-bd70528.c                         |   3 +-
 drivers/mfd/rohm-bd71828.c                         | 344 +++++++++++++++++
 drivers/mfd/rohm-bd718x7.c                         |  43 ++-
 drivers/regulator/Kconfig                          |   4 +
 drivers/regulator/Makefile                         |   1 +
 drivers/regulator/bd718x7-regulator.c              | 200 ++++------
 drivers/regulator/rohm-regulator.c                 |  95 +++++
 drivers/rtc/Kconfig                                |   3 +-
 drivers/rtc/rtc-bd70528.c                          | 220 +++++++++--
 include/linux/mfd/rohm-bd70528.h                   |  19 +-
 include/linux/mfd/rohm-bd71828.h                   | 423 +++++++++++++++++++++
 include/linux/mfd/rohm-bd718x7.h                   |   6 -
 include/linux/mfd/rohm-generic.h                   |  70 +++-
 include/linux/mfd/rohm-shared.h                    |  21 +
 23 files changed, 1718 insertions(+), 223 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/leds/rohm,bd71828-leds.yaml
 create mode 100644 Documentation/devicetree/bindings/mfd/rohm,bd71828-pmic.yaml
 create mode 100644 drivers/gpio/gpio-bd71828.c
 create mode 100644 drivers/mfd/rohm-bd71828.c
 create mode 100644 drivers/regulator/rohm-regulator.c
 create mode 100644 include/linux/mfd/rohm-bd71828.h
 create mode 100644 include/linux/mfd/rohm-shared.h

-- 
Lee Jones [李琼斯]
Linaro Services Technical Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog

      parent reply	other threads:[~2020-01-24  7:32 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-01-20 13:40 [PATCH v13 00/11] Support ROHM BD71828 PMIC Matti Vaittinen
2020-01-20 13:40 ` [PATCH v13 01/11] dt-bindings: leds: ROHM BD71282 PMIC LED driver Matti Vaittinen
2020-01-20 13:41 ` [PATCH v13 02/11] dt-bindings: mfd: Document ROHM BD71828 bindings Matti Vaittinen
2020-01-20 13:42 ` [PATCH v13 03/11] mfd: rohm PMICs - use platform_device_id to match MFD sub-devices Matti Vaittinen
2020-01-21 16:40   ` Mark Brown
2020-01-22  6:15     ` Vaittinen, Matti
2020-01-20 13:43 ` [PATCH v13 04/11] mfd: bd718x7: Add compatible for BD71850 Matti Vaittinen
2020-01-20 13:43 ` [PATCH v13 05/11] mfd: bd71828: Support ROHM BD71828 PMIC - core Matti Vaittinen
2020-01-20 13:43 ` [PATCH v13 06/11] mfd: bd71828: Add power-key support Matti Vaittinen
2020-01-20 13:44 ` [PATCH v13 07/11] clk: bd718x7: Support ROHM BD71828 clk block Matti Vaittinen
2020-01-20 13:44 ` [PATCH v13 08/11] regulator: bd718x7: Split driver to common and bd718x7 specific parts Matti Vaittinen
2020-01-20 13:45 ` [PATCH v13 09/11] mfd: bd70528: Fix hour register mask Matti Vaittinen
2020-01-20 13:45 ` [PATCH v13 10/11] rtc: bd70528: add BD71828 support Matti Vaittinen
2020-01-20 13:47 ` [PATCH v13 11/11] gpio: bd71828: Initial support for ROHM BD71828 PMIC GPIOs Matti Vaittinen
2020-01-20 13:54 ` [PATCH v13 00/11] Support ROHM BD71828 PMIC Mark Brown
2020-01-20 14:21   ` Vaittinen, Matti
2020-01-21  8:34     ` Lee Jones
2020-01-21 13:11     ` Mark Brown
2020-01-22  6:44       ` Vaittinen, Matti
2020-01-22 12:19         ` Mark Brown
2020-01-21  8:36   ` Lee Jones
2020-01-21 16:15     ` Mark Brown
2020-01-22  6:28       ` Vaittinen, Matti
2020-01-22 11:58         ` Mark Brown
2020-01-22  7:32       ` Lee Jones
2020-01-22 12:11         ` Mark Brown
2020-01-22 13:33 ` Lee Jones
2020-01-24  7:32 ` Lee Jones [this message]

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=20200124073230.GQ15507@dell \
    --to=lee.jones@linaro.org \
    --cc=broonie@kernel.org \
    --cc=linus.walleij@linaro.org \
    --cc=linux-clk@vger.kernel.org \
    --cc=linux-gpio@ger.kernel.org \
    --cc=matti.vaittinen@fi.rohmeurope.com \
    --cc=mazziesaccount@gmail.com \
    --cc=sboyd@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox