| From: |
| Fabien Parent <fparent-AT-baylibre.com> |
| To: |
| robh+dt-AT-kernel.org, mark.rutland-AT-arm.com, matthias.bgg-AT-gmail.com |
| Subject: |
| [PATCH v3 0/5] mt6392: Add support for MediaTek MT6392 PMIC |
| Date: |
| Wed, 15 May 2019 15:17:36 +0200 |
| Message-ID: |
| <20190515131741.17294-1-fparent@baylibre.com> |
| Cc: |
| devicetree-AT-vger.kernel.org, linux-arm-kernel-AT-lists.infradead.org, linux-mediatek-AT-lists.infradead.org, linux-kernel-AT-vger.kernel.org, Fabien Parent <fparent-AT-baylibre.com> |
| Archive-link: |
| Article |
This patch series aims at bringing support for the MediaTek MT6392 PMIC. This
PMIC is used on the MT8516 Pumpkin board.
This patch series adds support for the following features:
* PMIC keys
* regulator
* RTC
Fabien Parent (5):
dt-bindings: regulator: add support for MT6392
regulator: mt6392: Add support for MT6392 regulator
dt-bindings: mfd: mt6397: Add bindings for MT6392 PMIC
mfd: mt6397: Add support for MT6392 pmic
arm64: dts: mt6392: Add PMIC mt6392 dtsi
.../devicetree/bindings/mfd/mt6397.txt | 12 +-
.../bindings/regulator/mt6392-regulator.txt | 220 ++++++++
arch/arm64/boot/dts/mediatek/mt6392.dtsi | 208 ++++++++
drivers/mfd/mt6397-core.c | 55 ++
drivers/regulator/Kconfig | 9 +
drivers/regulator/Makefile | 1 +
drivers/regulator/mt6392-regulator.c | 490 ++++++++++++++++++
include/linux/mfd/mt6392/core.h | 42 ++
include/linux/mfd/mt6392/registers.h | 487 +++++++++++++++++
include/linux/regulator/mt6392-regulator.h | 40 ++
10 files changed, 1562 insertions(+), 2 deletions(-)
create mode 100644 Documentation/devicetree/bindings/regulator/mt6392-regulator.txt
create mode 100644 arch/arm64/boot/dts/mediatek/mt6392.dtsi
create mode 100644 drivers/regulator/mt6392-regulator.c
create mode 100644 include/linux/mfd/mt6392/core.h
create mode 100644 include/linux/mfd/mt6392/registers.h
create mode 100644 include/linux/regulator/mt6392-regulator.h
--
2.20.1