All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/6] Add Support for MediaTek PMIC MT6358 MFD Core and Regulator
@ 2019-01-30  9:18 ` Hsin-Hsiung Wang
  0 siblings, 0 replies; 49+ messages in thread
From: Hsin-Hsiung Wang @ 2019-01-30  9:18 UTC (permalink / raw)
  To: Lee Jones, Rob Herring, Matthias Brugger, Mark Brown
  Cc: Mark Rutland, Liam Girdwood, Hsin-Hsiung Wang, devicetree,
	linux-arm-kernel, linux-mediatek, linux-kernel, srv_heupstream

This patchset including refactoring interrupt add support to MT6358 PMIC.
MT6358 is the primary PMIC for MT8183 platform.

Hsin-Hsiung Wang (6):
  mfd: mt6397: extract irq related code from core driver
  dt-bindings: mfd: Add compatible for the MediaTek MT6358 PMIC
  regulator: Add document for MT6358 regulator
  mfd: Add support for the MediaTek MT6358 PMIC
  regulator: mt6358: Add support for MT6358 regulator
  arm64: dts: mt6358: add PMIC MT6358 related nodes

 Documentation/devicetree/bindings/mfd/mt6397.txt   |    9 +-
 .../bindings/regulator/mt6358-regulator.txt        |  318 ++++
 arch/arm64/boot/dts/mediatek/mt6358.dtsi           |  318 ++++
 drivers/mfd/Makefile                               |    2 +-
 drivers/mfd/mt6358-irq.c                           |  236 +++
 drivers/mfd/mt6397-core.c                          |  291 +--
 drivers/mfd/mt6397-irq.c                           |  214 +++
 drivers/regulator/Kconfig                          |    9 +
 drivers/regulator/Makefile                         |    1 +
 drivers/regulator/mt6358-regulator.c               |  607 ++++++
 include/linux/mfd/mt6358/core.h                    |  158 ++
 include/linux/mfd/mt6358/registers.h               | 1926 ++++++++++++++++++++
 include/linux/mfd/mt6397/core.h                    |   15 +
 include/linux/regulator/mt6358-regulator.h         |   56 +
 14 files changed, 3962 insertions(+), 198 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/regulator/mt6358-regulator.txt
 create mode 100644 arch/arm64/boot/dts/mediatek/mt6358.dtsi
 create mode 100644 drivers/mfd/mt6358-irq.c
 create mode 100644 drivers/mfd/mt6397-irq.c
 create mode 100644 drivers/regulator/mt6358-regulator.c
 create mode 100644 include/linux/mfd/mt6358/core.h
 create mode 100644 include/linux/mfd/mt6358/registers.h
 create mode 100644 include/linux/regulator/mt6358-regulator.h

-- 
1.9.1


^ permalink raw reply	[flat|nested] 49+ messages in thread

end of thread, other threads:[~2019-02-25 16:03 UTC | newest]

Thread overview: 49+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-01-30  9:18 [PATCH 0/6] Add Support for MediaTek PMIC MT6358 MFD Core and Regulator Hsin-Hsiung Wang
2019-01-30  9:18 ` Hsin-Hsiung Wang
2019-01-30  9:18 ` Hsin-Hsiung Wang
2019-01-30  9:18 ` [PATCH 1/6] mfd: mt6397: extract irq related code from core driver Hsin-Hsiung Wang
2019-01-30  9:18   ` Hsin-Hsiung Wang
2019-01-30  9:18   ` Hsin-Hsiung Wang
2019-02-07  9:08   ` Lee Jones
2019-02-07  9:08     ` Lee Jones
2019-01-30  9:18 ` [PATCH 2/6] dt-bindings: mfd: Add compatible for the MediaTek MT6358 PMIC Hsin-Hsiung Wang
2019-01-30  9:18   ` Hsin-Hsiung Wang
2019-01-30  9:18   ` Hsin-Hsiung Wang
2019-02-25 14:54   ` Rob Herring
2019-02-25 14:54     ` Rob Herring
2019-02-25 14:54     ` Rob Herring
2019-01-30  9:18 ` [PATCH 3/6] regulator: Add document for MT6358 regulator Hsin-Hsiung Wang
2019-01-30  9:18   ` Hsin-Hsiung Wang
2019-01-30  9:18   ` Hsin-Hsiung Wang
2019-02-25 16:03   ` Rob Herring
2019-02-25 16:03     ` Rob Herring
2019-02-25 16:03     ` Rob Herring
2019-01-30  9:18 ` [PATCH 4/6] mfd: Add support for the MediaTek MT6358 PMIC Hsin-Hsiung Wang
2019-01-30  9:18   ` Hsin-Hsiung Wang
2019-01-31  3:56   ` Pi-Hsun Shih
2019-01-31  3:56     ` Pi-Hsun Shih
2019-01-31  8:33     ` Hsin-hsiung Wang
2019-01-31  8:33       ` Hsin-hsiung Wang
2019-01-31  8:33       ` Hsin-hsiung Wang
2019-01-31 10:01     ` Lee Jones
2019-01-31 10:01       ` Lee Jones
2019-01-31 10:01       ` Lee Jones
2019-02-07  9:34   ` Lee Jones
2019-02-07  9:34     ` Lee Jones
2019-02-07 10:04     ` Marc Zyngier
2019-02-07 10:04       ` Marc Zyngier
2019-02-07 12:03       ` Mark Brown
2019-02-07 12:03         ` Mark Brown
2019-02-08 20:09   ` Matthias Kaehlcke
2019-02-08 20:09     ` Matthias Kaehlcke
2019-01-30  9:18 ` [PATCH 5/6] regulator: mt6358: Add support for MT6358 regulator Hsin-Hsiung Wang
2019-01-30  9:18   ` Hsin-Hsiung Wang
2019-01-30  9:18   ` Hsin-Hsiung Wang
2019-01-30 15:18   ` Mark Brown
2019-01-30 15:18     ` Mark Brown
2019-02-01  2:13     ` Hsin-hsiung Wang
2019-02-01  2:13       ` Hsin-hsiung Wang
2019-02-01  2:13       ` Hsin-hsiung Wang
2019-01-30  9:18 ` [PATCH 6/6] arm64: dts: mt6358: add PMIC MT6358 related nodes Hsin-Hsiung Wang
2019-01-30  9:18   ` Hsin-Hsiung Wang
2019-01-30  9:18   ` Hsin-Hsiung Wang

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.