All of lore.kernel.org
 help / color / mirror / Atom feed
From: Fabien Parent <fparent@baylibre.com>
To: Matthias Brugger <matthias.bgg@gmail.com>
Cc: Fabien Parent <fparent@baylibre.com>,
	linux-arm-kernel@lists.infradead.org,
	linux-mediatek@lists.infradead.org
Subject: [PATCH 0/7] Add MediaTek MT6357 PMIC support
Date: Tue, 31 May 2022 14:49:52 +0200	[thread overview]
Message-ID: <20220531124959.202787-1-fparent@baylibre.com> (raw)

This patch series adds MFD, PMIC keys, and regulator support for MT6357.
MT6357 is a MediaTek PMIC very similar to MT6358 and MT6359.

The first 6 patches of this series have no dependencies. The last patch
depends on another patch series that add PMIC keys support for MT6359:
https://lore.kernel.org/all/20220415153629.1817202-1-fparent@baylibre.com/

Fabien Parent (7):
  dt-bindings: mfd: mt6397: add binding for MT6357
  dt-bindings: input: mtk-pmic-keys: add binding for MT6357 PMIC
  dt-bindings: regulator: Add binding schema for mt6357 regulators
  mfd: mt6397-core: add MT6357 PMIC support
  mfd: mt6358-irq: add MT6357 PMIC support
  regulator: add mt6357 regulator
  Input: mtk-pmic-keys: add MT6357 support

 .../bindings/input/mtk-pmic-keys.txt          |    1 +
 .../devicetree/bindings/mfd/mt6397.txt        |    1 +
 .../regulator/mediatek,mt6357-regulator.yaml  |  282 +++
 drivers/input/keyboard/mtk-pmic-keys.c        |   15 +
 drivers/mfd/mt6358-irq.c                      |   24 +
 drivers/mfd/mt6397-core.c                     |   44 +
 drivers/regulator/Kconfig                     |    9 +
 drivers/regulator/Makefile                    |    1 +
 drivers/regulator/mt6357-regulator.c          |  485 +++++
 include/linux/mfd/mt6357/core.h               |  119 ++
 include/linux/mfd/mt6357/registers.h          | 1574 +++++++++++++++++
 include/linux/mfd/mt6397/core.h               |    1 +
 include/linux/regulator/mt6357-regulator.h    |   51 +
 13 files changed, 2607 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/regulator/mediatek,mt6357-regulator.yaml
 create mode 100644 drivers/regulator/mt6357-regulator.c
 create mode 100644 include/linux/mfd/mt6357/core.h
 create mode 100644 include/linux/mfd/mt6357/registers.h
 create mode 100644 include/linux/regulator/mt6357-regulator.h

-- 
2.36.1


_______________________________________________
Linux-mediatek mailing list
Linux-mediatek@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-mediatek

WARNING: multiple messages have this Message-ID (diff)
From: Fabien Parent <fparent@baylibre.com>
To: Matthias Brugger <matthias.bgg@gmail.com>
Cc: Fabien Parent <fparent@baylibre.com>,
	linux-arm-kernel@lists.infradead.org,
	linux-mediatek@lists.infradead.org
Subject: [PATCH 0/7] Add MediaTek MT6357 PMIC support
Date: Tue, 31 May 2022 14:49:52 +0200	[thread overview]
Message-ID: <20220531124959.202787-1-fparent@baylibre.com> (raw)

This patch series adds MFD, PMIC keys, and regulator support for MT6357.
MT6357 is a MediaTek PMIC very similar to MT6358 and MT6359.

The first 6 patches of this series have no dependencies. The last patch
depends on another patch series that add PMIC keys support for MT6359:
https://lore.kernel.org/all/20220415153629.1817202-1-fparent@baylibre.com/

Fabien Parent (7):
  dt-bindings: mfd: mt6397: add binding for MT6357
  dt-bindings: input: mtk-pmic-keys: add binding for MT6357 PMIC
  dt-bindings: regulator: Add binding schema for mt6357 regulators
  mfd: mt6397-core: add MT6357 PMIC support
  mfd: mt6358-irq: add MT6357 PMIC support
  regulator: add mt6357 regulator
  Input: mtk-pmic-keys: add MT6357 support

 .../bindings/input/mtk-pmic-keys.txt          |    1 +
 .../devicetree/bindings/mfd/mt6397.txt        |    1 +
 .../regulator/mediatek,mt6357-regulator.yaml  |  282 +++
 drivers/input/keyboard/mtk-pmic-keys.c        |   15 +
 drivers/mfd/mt6358-irq.c                      |   24 +
 drivers/mfd/mt6397-core.c                     |   44 +
 drivers/regulator/Kconfig                     |    9 +
 drivers/regulator/Makefile                    |    1 +
 drivers/regulator/mt6357-regulator.c          |  485 +++++
 include/linux/mfd/mt6357/core.h               |  119 ++
 include/linux/mfd/mt6357/registers.h          | 1574 +++++++++++++++++
 include/linux/mfd/mt6397/core.h               |    1 +
 include/linux/regulator/mt6357-regulator.h    |   51 +
 13 files changed, 2607 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/regulator/mediatek,mt6357-regulator.yaml
 create mode 100644 drivers/regulator/mt6357-regulator.c
 create mode 100644 include/linux/mfd/mt6357/core.h
 create mode 100644 include/linux/mfd/mt6357/registers.h
 create mode 100644 include/linux/regulator/mt6357-regulator.h

-- 
2.36.1


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

             reply	other threads:[~2022-05-31 12:50 UTC|newest]

Thread overview: 41+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-05-31 12:49 Fabien Parent [this message]
2022-05-31 12:49 ` [PATCH 0/7] Add MediaTek MT6357 PMIC support Fabien Parent
2022-05-31 12:49 ` [PATCH 1/7] dt-bindings: mfd: mt6397: add binding for MT6357 Fabien Parent
2022-05-31 12:49   ` Fabien Parent
2022-05-31 12:49   ` Fabien Parent
2022-06-05 21:30   ` Rob Herring
2022-06-05 21:30     ` Rob Herring
2022-06-05 21:30     ` Rob Herring
2022-06-15 22:24   ` Lee Jones
2022-06-15 22:24     ` Lee Jones
2022-05-31 12:49 ` [PATCH 2/7] dt-bindings: input: mtk-pmic-keys: add binding for MT6357 PMIC Fabien Parent
2022-05-31 12:49   ` Fabien Parent
2022-05-31 12:49   ` Fabien Parent
2022-06-05 21:30   ` Rob Herring
2022-06-05 21:30     ` Rob Herring
2022-06-05 21:30     ` Rob Herring
2022-05-31 12:49 ` [PATCH 3/7] dt-bindings: regulator: Add binding schema for mt6357 regulators Fabien Parent
2022-05-31 12:49   ` Fabien Parent
2022-05-31 12:49   ` Fabien Parent
2022-05-31 13:06   ` Mark Brown
2022-05-31 13:06     ` Mark Brown
2022-05-31 13:06     ` Mark Brown
2022-05-31 12:49 ` [PATCH 4/7] mfd: mt6397-core: add MT6357 PMIC support Fabien Parent
2022-05-31 12:49   ` Fabien Parent
2022-05-31 12:49   ` Fabien Parent
2022-06-15 22:25   ` Lee Jones
2022-06-15 22:25     ` Lee Jones
2022-05-31 12:49 ` [PATCH 5/7] mfd: mt6358-irq: " Fabien Parent
2022-05-31 12:49   ` Fabien Parent
2022-05-31 12:49   ` Fabien Parent
2022-06-15 22:25   ` Lee Jones
2022-06-15 22:25     ` Lee Jones
2022-05-31 12:49 ` [PATCH 6/7] regulator: add mt6357 regulator Fabien Parent
2022-05-31 12:49   ` Fabien Parent
2022-05-31 12:49   ` Fabien Parent
2022-05-31 13:04   ` Mark Brown
2022-05-31 13:04     ` Mark Brown
2022-05-31 13:04     ` Mark Brown
2022-05-31 12:49 ` [PATCH 7/7] Input: mtk-pmic-keys: add MT6357 support Fabien Parent
2022-05-31 12:49   ` Fabien Parent
2022-05-31 12:49   ` Fabien Parent

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=20220531124959.202787-1-fparent@baylibre.com \
    --to=fparent@baylibre.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-mediatek@lists.infradead.org \
    --cc=matthias.bgg@gmail.com \
    /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.