All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v12 0/6] Add Support for MediaTek PMIC MT6358
@ 2020-04-08  8:12 ` Hsin-Hsiung Wang
  0 siblings, 0 replies; 54+ messages in thread
From: Hsin-Hsiung Wang @ 2020-04-08  8:12 UTC (permalink / raw)
  To: Lee Jones, Rob Herring, Matthias Brugger, Alexandre Belloni
  Cc: Mark Rutland, Alessandro Zummo, Josef Friedl, Nicolas Boichat,
	srv_heupstream, Frank Wunderlich, Ran Bi, Sean Wang, linux-rtc,
	Sebastian Reichel, linux-kernel, Richard Fontana, devicetree,
	linux-mediatek, Hsin-Hsiung Wang, linux-pm, Thomas Gleixner,
	Eddie Huang, Kate Stewart, linux-arm-kernel

This patchset including modifying suspend/resume behavior and trimming probe function add support to MT6358 PMIC.
MT6358 is the primary PMIC for MT8183 platform.

changes since v11:
- add a new patch to trim probe function more cleanly.
- fix some coverity defects.
- update some comment messages.
- fix wrong sizeof argument.

Hsin-Hsiung Wang (5):
  mfd: mt6397: Modify suspend/resume behavior
  mfd: mt6397: Trim probe function to support different chips more
    cleanly
  dt-bindings: mfd: Add compatible for the MediaTek MT6358 PMIC
  mfd: Add support for the MediaTek MT6358 PMIC
  arm64: dts: mt6358: add PMIC MT6358 related nodes

Ran Bi (1):
  rtc: mt6397: Add support for the MediaTek MT6358 RTC

 Documentation/devicetree/bindings/mfd/mt6397.txt |  14 +-
 arch/arm64/boot/dts/mediatek/mt6358.dtsi         | 358 +++++++++++++++++++++++
 arch/arm64/boot/dts/mediatek/mt8183-evb.dts      |   1 +
 drivers/mfd/Makefile                             |   2 +-
 drivers/mfd/mt6358-irq.c                         | 235 +++++++++++++++
 drivers/mfd/mt6397-core.c                        | 101 ++++---
 drivers/mfd/mt6397-irq.c                         |  35 ++-
 drivers/power/reset/mt6323-poweroff.c            |   2 +-
 drivers/rtc/rtc-mt6397.c                         |  18 +-
 include/linux/mfd/mt6358/core.h                  | 158 ++++++++++
 include/linux/mfd/mt6358/registers.h             | 282 ++++++++++++++++++
 include/linux/mfd/mt6397/core.h                  |   5 +
 include/linux/mfd/mt6397/rtc.h                   |   9 +-
 13 files changed, 1158 insertions(+), 62 deletions(-)
 create mode 100644 arch/arm64/boot/dts/mediatek/mt6358.dtsi
 create mode 100644 drivers/mfd/mt6358-irq.c
 create mode 100644 include/linux/mfd/mt6358/core.h
 create mode 100644 include/linux/mfd/mt6358/registers.h

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

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

end of thread, other threads:[~2020-04-20 11:55 UTC | newest]

Thread overview: 54+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-04-08  8:12 [PATCH v12 0/6] Add Support for MediaTek PMIC MT6358 Hsin-Hsiung Wang
2020-04-08  8:12 ` Hsin-Hsiung Wang
2020-04-08  8:12 ` Hsin-Hsiung Wang
2020-04-08  8:12 ` [PATCH v12 1/6] mfd: mt6397: Modify suspend/resume behavior Hsin-Hsiung Wang
2020-04-08  8:12   ` Hsin-Hsiung Wang
2020-04-08  8:12   ` Hsin-Hsiung Wang
2020-04-16  8:49   ` Lee Jones
2020-04-16  8:49     ` Lee Jones
2020-04-16  8:49     ` Lee Jones
2020-04-20 10:52     ` Hsin-hsiung Wang
2020-04-20 10:52       ` Hsin-hsiung Wang
2020-04-20 10:52       ` Hsin-hsiung Wang
2020-04-20 11:15       ` Lee Jones
2020-04-20 11:15         ` Lee Jones
2020-04-20 11:15         ` Lee Jones
2020-04-20 11:55         ` Hsin-hsiung Wang
2020-04-20 11:55           ` Hsin-hsiung Wang
2020-04-20 11:55           ` Hsin-hsiung Wang
2020-04-08  8:12 ` [PATCH v12 2/6] mfd: mt6397: Trim probe function to support different chips more cleanly Hsin-Hsiung Wang
2020-04-08  8:12   ` Hsin-Hsiung Wang
2020-04-08  8:12   ` Hsin-Hsiung Wang
2020-04-16  8:52   ` Lee Jones
2020-04-16  8:52     ` Lee Jones
2020-04-16  8:52     ` Lee Jones
2020-04-08  8:12 ` [PATCH v12 3/6] dt-bindings: mfd: Add compatible for the MediaTek MT6358 PMIC Hsin-Hsiung Wang
2020-04-08  8:12   ` Hsin-Hsiung Wang
2020-04-08  8:12   ` Hsin-Hsiung Wang
2020-04-08  8:12 ` [PATCH v12 4/6] mfd: Add support " Hsin-Hsiung Wang
2020-04-08  8:12   ` Hsin-Hsiung Wang
2020-04-08  8:12   ` Hsin-Hsiung Wang
2020-04-16  9:10   ` Lee Jones
2020-04-16  9:10     ` Lee Jones
2020-04-16  9:10     ` Lee Jones
2020-04-08  8:12 ` [PATCH v12 5/6] rtc: mt6397: Add support for the MediaTek MT6358 RTC Hsin-Hsiung Wang
2020-04-08  8:12   ` Hsin-Hsiung Wang
2020-04-08  8:12   ` Hsin-Hsiung Wang
2020-04-16  9:14   ` Lee Jones
2020-04-16  9:14     ` Lee Jones
2020-04-16  9:14     ` Lee Jones
2020-04-17  8:29     ` Ran Bi
2020-04-17  8:29       ` Ran Bi
2020-04-17  8:29       ` Ran Bi
2020-04-17  8:49       ` Ran Bi
2020-04-17  8:49         ` Ran Bi
2020-04-17  8:49         ` Ran Bi
2020-04-20  7:37         ` Lee Jones
2020-04-20  7:37           ` Lee Jones
2020-04-20  7:37           ` Lee Jones
2020-04-20  7:36       ` Lee Jones
2020-04-20  7:36         ` Lee Jones
2020-04-20  7:36         ` Lee Jones
2020-04-08  8:12 ` [PATCH v12 6/6] arm64: dts: mt6358: add PMIC MT6358 related nodes Hsin-Hsiung Wang
2020-04-08  8:12   ` Hsin-Hsiung Wang
2020-04-08  8:12   ` 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.