All of lore.kernel.org
 help / color / mirror / Atom feed
From: Hsin-Hsiung Wang <hsin-hsiung.wang@mediatek.com>
To: Lee Jones <lee.jones@linaro.org>,
	Rob Herring <robh+dt@kernel.org>, Mark Brown <broonie@kernel.org>,
	Matthias Brugger <matthias.bgg@gmail.com>
Cc: Liam Girdwood <lgirdwood@gmail.com>,
	Mark Rutland <mark.rutland@arm.com>,
	Eddie Huang <eddie.huang@mediatek.com>,
	Sean Wang <sean.wang@mediatek.com>,
	Alessandro Zummo <a.zummo@towertech.it>,
	Alexandre Belloni <alexandre.belloni@bootlin.com>,
	Hsin-Hsiung Wang <hsin-hsiung.wang@mediatek.com>,
	<devicetree@vger.kernel.org>,
	<linux-arm-kernel@lists.infradead.org>,
	<linux-mediatek@lists.infradead.org>,
	<linux-kernel@vger.kernel.org>, <linux-rtc@vger.kernel.org>,
	<srv_heupstream@mediatek.com>
Subject: [PATCH v3 00/10] Add Support for MediaTek PMIC MT6358
Date: Fri, 3 May 2019 17:31:07 +0800	[thread overview]
Message-ID: <20190503093117.54830-1-hsin-hsiung.wang@mediatek.com> (raw)

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

changes since v2:
- rewrite the description of MT6358 regulators.
- refine some coding style in the dts for better code quality.
- refine the suspend behavior of mfd driver.
- some minor bug fix of mfd driver, like adding IRQCHIP_SKIP_SET_WAKE
  flag.
- remove unused MT6358 register.
- merge the same voltage table and remove unused chip id in the MT6358
  regulator driver.

Hsin-Hsiung Wang (8):
  mfd: mt6397: clean up code
  mfd: mt6397: extract irq related code from core driver
  mfd: mt6397: modify suspend/resume behavior
  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

Ran Bi (2):
  rtc: mt6397: fix alarm register overwrite
  rtc: Add support for the MediaTek MT6358 RTC

 .../devicetree/bindings/mfd/mt6397.txt        |  11 +-
 .../bindings/regulator/mt6358-regulator.txt   | 358 +++++++++++
 arch/arm64/boot/dts/mediatek/mt6358.dtsi      | 358 +++++++++++
 drivers/mfd/Makefile                          |   4 +-
 drivers/mfd/mt6358-irq.c                      | 229 +++++++
 drivers/mfd/mt6397-core.c                     | 293 +++------
 drivers/mfd/mt6397-irq.c                      | 214 +++++++
 drivers/regulator/Kconfig                     |   9 +
 drivers/regulator/Makefile                    |   1 +
 drivers/regulator/mt6358-regulator.c          | 586 ++++++++++++++++++
 drivers/rtc/rtc-mt6397.c                      |  90 ++-
 include/linux/mfd/mt6358/core.h               | 158 +++++
 include/linux/mfd/mt6358/registers.h          | 282 +++++++++
 include/linux/mfd/mt6397/core.h               |  15 +
 include/linux/regulator/mt6358-regulator.h    |  56 ++
 15 files changed, 2442 insertions(+), 222 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

-- 
2.18.0


WARNING: multiple messages have this Message-ID (diff)
From: Hsin-Hsiung Wang <hsin-hsiung.wang@mediatek.com>
To: Lee Jones <lee.jones@linaro.org>,
	Rob Herring <robh+dt@kernel.org>, Mark Brown <broonie@kernel.org>,
	Matthias Brugger <matthias.bgg@gmail.com>
Cc: Liam Girdwood <lgirdwood@gmail.com>,
	Mark Rutland <mark.rutland@arm.com>,
	Eddie Huang <eddie.huang@mediatek.com>,
	Sean Wang <sean.wang@mediatek.com>,
	Alessandro Zummo <a.zummo@towertech.it>,
	Alexandre Belloni <alexandre.belloni@bootlin.com>,
	Hsin-Hsiung Wang <hsin-hsiung.wang@mediatek.com>,
	devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
	linux-mediatek@lists.infradead.org, linux-kernel@vger.kernel.org,
	linux-rtc@vger.kernel.org, srv_heupstream@mediatek.com
Subject: [PATCH v3 00/10] Add Support for MediaTek PMIC MT6358
Date: Fri, 3 May 2019 17:31:07 +0800	[thread overview]
Message-ID: <20190503093117.54830-1-hsin-hsiung.wang@mediatek.com> (raw)

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

changes since v2:
- rewrite the description of MT6358 regulators.
- refine some coding style in the dts for better code quality.
- refine the suspend behavior of mfd driver.
- some minor bug fix of mfd driver, like adding IRQCHIP_SKIP_SET_WAKE
  flag.
- remove unused MT6358 register.
- merge the same voltage table and remove unused chip id in the MT6358
  regulator driver.

Hsin-Hsiung Wang (8):
  mfd: mt6397: clean up code
  mfd: mt6397: extract irq related code from core driver
  mfd: mt6397: modify suspend/resume behavior
  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

Ran Bi (2):
  rtc: mt6397: fix alarm register overwrite
  rtc: Add support for the MediaTek MT6358 RTC

 .../devicetree/bindings/mfd/mt6397.txt        |  11 +-
 .../bindings/regulator/mt6358-regulator.txt   | 358 +++++++++++
 arch/arm64/boot/dts/mediatek/mt6358.dtsi      | 358 +++++++++++
 drivers/mfd/Makefile                          |   4 +-
 drivers/mfd/mt6358-irq.c                      | 229 +++++++
 drivers/mfd/mt6397-core.c                     | 293 +++------
 drivers/mfd/mt6397-irq.c                      | 214 +++++++
 drivers/regulator/Kconfig                     |   9 +
 drivers/regulator/Makefile                    |   1 +
 drivers/regulator/mt6358-regulator.c          | 586 ++++++++++++++++++
 drivers/rtc/rtc-mt6397.c                      |  90 ++-
 include/linux/mfd/mt6358/core.h               | 158 +++++
 include/linux/mfd/mt6358/registers.h          | 282 +++++++++
 include/linux/mfd/mt6397/core.h               |  15 +
 include/linux/regulator/mt6358-regulator.h    |  56 ++
 15 files changed, 2442 insertions(+), 222 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

-- 
2.18.0

WARNING: multiple messages have this Message-ID (diff)
From: Hsin-Hsiung Wang <hsin-hsiung.wang@mediatek.com>
To: Lee Jones <lee.jones@linaro.org>,
	Rob Herring <robh+dt@kernel.org>,
	"Mark Brown" <broonie@kernel.org>,
	Matthias Brugger <matthias.bgg@gmail.com>
Cc: Mark Rutland <mark.rutland@arm.com>,
	Alessandro Zummo <a.zummo@towertech.it>,
	Alexandre Belloni <alexandre.belloni@bootlin.com>,
	srv_heupstream@mediatek.com, devicetree@vger.kernel.org,
	Sean Wang <sean.wang@mediatek.com>,
	Liam Girdwood <lgirdwood@gmail.com>,
	linux-kernel@vger.kernel.org, linux-mediatek@lists.infradead.org,
	linux-arm-kernel@lists.infradead.org,
	Eddie Huang <eddie.huang@mediatek.com>,
	Hsin-Hsiung Wang <hsin-hsiung.wang@mediatek.com>,
	linux-rtc@vger.kernel.org
Subject: [PATCH v3 00/10] Add Support for MediaTek PMIC MT6358
Date: Fri, 3 May 2019 17:31:07 +0800	[thread overview]
Message-ID: <20190503093117.54830-1-hsin-hsiung.wang@mediatek.com> (raw)

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

changes since v2:
- rewrite the description of MT6358 regulators.
- refine some coding style in the dts for better code quality.
- refine the suspend behavior of mfd driver.
- some minor bug fix of mfd driver, like adding IRQCHIP_SKIP_SET_WAKE
  flag.
- remove unused MT6358 register.
- merge the same voltage table and remove unused chip id in the MT6358
  regulator driver.

Hsin-Hsiung Wang (8):
  mfd: mt6397: clean up code
  mfd: mt6397: extract irq related code from core driver
  mfd: mt6397: modify suspend/resume behavior
  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

Ran Bi (2):
  rtc: mt6397: fix alarm register overwrite
  rtc: Add support for the MediaTek MT6358 RTC

 .../devicetree/bindings/mfd/mt6397.txt        |  11 +-
 .../bindings/regulator/mt6358-regulator.txt   | 358 +++++++++++
 arch/arm64/boot/dts/mediatek/mt6358.dtsi      | 358 +++++++++++
 drivers/mfd/Makefile                          |   4 +-
 drivers/mfd/mt6358-irq.c                      | 229 +++++++
 drivers/mfd/mt6397-core.c                     | 293 +++------
 drivers/mfd/mt6397-irq.c                      | 214 +++++++
 drivers/regulator/Kconfig                     |   9 +
 drivers/regulator/Makefile                    |   1 +
 drivers/regulator/mt6358-regulator.c          | 586 ++++++++++++++++++
 drivers/rtc/rtc-mt6397.c                      |  90 ++-
 include/linux/mfd/mt6358/core.h               | 158 +++++
 include/linux/mfd/mt6358/registers.h          | 282 +++++++++
 include/linux/mfd/mt6397/core.h               |  15 +
 include/linux/regulator/mt6358-regulator.h    |  56 ++
 15 files changed, 2442 insertions(+), 222 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

-- 
2.18.0


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

             reply	other threads:[~2019-05-03  9:33 UTC|newest]

Thread overview: 62+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-05-03  9:31 Hsin-Hsiung Wang [this message]
2019-05-03  9:31 ` [PATCH v3 00/10] Add Support for MediaTek PMIC MT6358 Hsin-Hsiung Wang
2019-05-03  9:31 ` Hsin-Hsiung Wang
2019-05-03  9:31 ` [PATCH v3 01/10] mfd: mt6397: clean up code Hsin-Hsiung Wang
2019-05-03  9:31   ` Hsin-Hsiung Wang
2019-05-03  9:31   ` Hsin-Hsiung Wang
2019-05-03  9:31 ` [PATCH v3 02/10] mfd: mt6397: extract irq related code from core driver Hsin-Hsiung Wang
2019-05-03  9:31   ` Hsin-Hsiung Wang
2019-05-03  9:31   ` Hsin-Hsiung Wang
2019-05-07  5:11   ` Nicolas Boichat
2019-05-07  5:11     ` Nicolas Boichat
2019-05-07  5:11     ` Nicolas Boichat
2019-05-07  5:16     ` Nicolas Boichat
2019-05-07  5:16       ` Nicolas Boichat
2019-05-07  5:16       ` Nicolas Boichat
2019-05-03  9:31 ` [PATCH v3 03/10] mfd: mt6397: modify suspend/resume behavior Hsin-Hsiung Wang
2019-05-03  9:31   ` Hsin-Hsiung Wang
2019-05-03  9:31   ` Hsin-Hsiung Wang
2019-05-03  9:31 ` [PATCH v3 04/10] dt-bindings: mfd: Add compatible for the MediaTek MT6358 PMIC Hsin-Hsiung Wang
2019-05-03  9:31   ` Hsin-Hsiung Wang
2019-05-03  9:31   ` Hsin-Hsiung Wang
2019-05-07  5:24   ` Nicolas Boichat
2019-05-07  5:24     ` Nicolas Boichat
2019-05-07  5:24     ` Nicolas Boichat
2019-08-02 13:28     ` Hsin-hsiung Wang
2019-08-02 13:28       ` Hsin-hsiung Wang
2019-08-02 13:28       ` Hsin-hsiung Wang
2019-05-13 15:04   ` Rob Herring
2019-05-13 15:04     ` Rob Herring
2019-05-03  9:31 ` [PATCH v3 05/10] regulator: Add document for MT6358 regulator Hsin-Hsiung Wang
2019-05-03  9:31   ` Hsin-Hsiung Wang
2019-05-03  9:31   ` Hsin-Hsiung Wang
2019-05-13 15:06   ` Rob Herring
2019-05-13 15:06     ` Rob Herring
2019-05-03  9:31 ` [PATCH v3 06/10] mfd: Add support for the MediaTek MT6358 PMIC Hsin-Hsiung Wang
2019-05-03  9:31   ` Hsin-Hsiung Wang
2019-05-03  9:31   ` Hsin-Hsiung Wang
2019-05-07  5:34   ` Nicolas Boichat
2019-05-07  5:34     ` Nicolas Boichat
2019-05-07  5:34     ` Nicolas Boichat
2019-05-03  9:31 ` [PATCH v3 07/10] regulator: mt6358: Add support for MT6358 regulator Hsin-Hsiung Wang
2019-05-03  9:31   ` Hsin-Hsiung Wang
2019-05-03  9:31   ` Hsin-Hsiung Wang
2019-05-06  3:37   ` Mark Brown
2019-05-07  5:40   ` Nicolas Boichat
2019-05-07  5:40     ` Nicolas Boichat
2019-05-07  5:40     ` Nicolas Boichat
2019-05-03  9:31 ` [PATCH v3 08/10] arm64: dts: mt6358: add PMIC MT6358 related nodes Hsin-Hsiung Wang
2019-05-03  9:31   ` Hsin-Hsiung Wang
2019-05-03  9:31   ` Hsin-Hsiung Wang
2019-05-08  8:00   ` Ran Bi
2019-05-08  8:00     ` Ran Bi
2019-05-08  8:00     ` Ran Bi
2019-05-03  9:31 ` [PATCH v3 09/10] rtc: mt6397: fix alarm register overwrite Hsin-Hsiung Wang
2019-05-03  9:31   ` Hsin-Hsiung Wang
2019-05-03  9:31   ` Hsin-Hsiung Wang
2019-05-03  9:31 ` [PATCH v3 10/10] rtc: Add support for the MediaTek MT6358 RTC Hsin-Hsiung Wang
2019-05-03  9:31   ` Hsin-Hsiung Wang
2019-05-03  9:31   ` Hsin-Hsiung Wang
2019-05-04 14:04   ` Yingjoe Chen
2019-05-04 14:04     ` Yingjoe Chen
2019-05-04 14:04     ` Yingjoe Chen

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=20190503093117.54830-1-hsin-hsiung.wang@mediatek.com \
    --to=hsin-hsiung.wang@mediatek.com \
    --cc=a.zummo@towertech.it \
    --cc=alexandre.belloni@bootlin.com \
    --cc=broonie@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=eddie.huang@mediatek.com \
    --cc=lee.jones@linaro.org \
    --cc=lgirdwood@gmail.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mediatek@lists.infradead.org \
    --cc=linux-rtc@vger.kernel.org \
    --cc=mark.rutland@arm.com \
    --cc=matthias.bgg@gmail.com \
    --cc=robh+dt@kernel.org \
    --cc=sean.wang@mediatek.com \
    --cc=srv_heupstream@mediatek.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.