All of lore.kernel.org
 help / color / mirror / Atom feed
From: Matthias Brugger <matthias.bgg@gmail.com>
To: Ulf Hansson <ulf.hansson@linaro.org>, sean.wang@mediatek.com
Cc: Rob Herring <robh+dt@kernel.org>,
	"Rafael J. Wysocki" <rjw@rjwysocki.net>,
	Kevin Hilman <khilman@baylibre.com>,
	"devicetree@vger.kernel.org" <devicetree@vger.kernel.org>,
	linux-mediatek@lists.infradead.org,
	"linux-pm@vger.kernel.org" <linux-pm@vger.kernel.org>,
	"linux-arm-kernel@lists.infradead.org"
	<linux-arm-kernel@lists.infradead.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH v3 0/4] add support of SCPSYS power domain for MediaTek MT7622
Date: Mon, 14 Aug 2017 17:30:21 +0200	[thread overview]
Message-ID: <2a112b79-20a0-e09d-28a9-24b412d20874@gmail.com> (raw)
In-Reply-To: <CAPDyKFpDyhPc=T8SqWdh-mm4kOqFstHNMuRbL_qP04rynoLcsw@mail.gmail.com>



On 08/08/2017 01:41 PM, Ulf Hansson wrote:
> On 7 August 2017 at 09:24,  <sean.wang@mediatek.com> wrote:
>> From: Sean Wang <sean.wang@mediatek.com>
>>
>> Changes since v2:
>> - reduce code duplication of scpsys_probe across all SoCs
>>
>> Changes since v1:
>> - rebase to Linux v4.13-rc1
>>
>> There are four power domains on MediaTek MT7622 SoC which are respectively
>> ETHSYS for Ethernet including extra embedded switch, HIF0SYS for PCI-E and
>> SATA, HIF1SYS for USB and WBSYS for WIFI and Bluetooth.
>>
>> Those functions could be selectively powered gated when the corresponding
>> function is no longer to use in order to reach more minimal power
>> dissipation through the patch series introduced here.
>>
>> Chen Zhong (1):
>>    soc: mediatek: add header files required for MT7622 SCPSYS dt-binding
>>
>> Sean Wang (3):
>>    dt-bindings: soc: update the binding document for SCPSYS on MediaTek
>>      MT7622 SoC
>>    soc: mediatek: reduce code duplication of scpsys_probe across all SoCs
>>    soc: mediatek: add SCPSYS power domain driver for MediaTek MT7622 SoC
>>
>>   .../devicetree/bindings/soc/mediatek/scpsys.txt    |   3 +
>>   drivers/soc/mediatek/mtk-scpsys.c                  | 247 ++++++++++++---------
>>   include/dt-bindings/power/mt7622-power.h           |  22 ++
>>   include/linux/soc/mediatek/infracfg.h              |   7 +
>>   4 files changed, 179 insertions(+), 100 deletions(-)
>>   create mode 100644 include/dt-bindings/power/mt7622-power.h
>>
>> --
>> 2.7.4
>>
> 
> Looks good to me! Feel free to add:
> 
> Reviewed-by: Ulf Hansson <ulf.hansson@linaro.org>
> 

Pushed to v4.13-next/soc with the Reviewed-by.

Thanks!

WARNING: multiple messages have this Message-ID (diff)
From: matthias.bgg@gmail.com (Matthias Brugger)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v3 0/4] add support of SCPSYS power domain for MediaTek MT7622
Date: Mon, 14 Aug 2017 17:30:21 +0200	[thread overview]
Message-ID: <2a112b79-20a0-e09d-28a9-24b412d20874@gmail.com> (raw)
In-Reply-To: <CAPDyKFpDyhPc=T8SqWdh-mm4kOqFstHNMuRbL_qP04rynoLcsw@mail.gmail.com>



On 08/08/2017 01:41 PM, Ulf Hansson wrote:
> On 7 August 2017 at 09:24,  <sean.wang@mediatek.com> wrote:
>> From: Sean Wang <sean.wang@mediatek.com>
>>
>> Changes since v2:
>> - reduce code duplication of scpsys_probe across all SoCs
>>
>> Changes since v1:
>> - rebase to Linux v4.13-rc1
>>
>> There are four power domains on MediaTek MT7622 SoC which are respectively
>> ETHSYS for Ethernet including extra embedded switch, HIF0SYS for PCI-E and
>> SATA, HIF1SYS for USB and WBSYS for WIFI and Bluetooth.
>>
>> Those functions could be selectively powered gated when the corresponding
>> function is no longer to use in order to reach more minimal power
>> dissipation through the patch series introduced here.
>>
>> Chen Zhong (1):
>>    soc: mediatek: add header files required for MT7622 SCPSYS dt-binding
>>
>> Sean Wang (3):
>>    dt-bindings: soc: update the binding document for SCPSYS on MediaTek
>>      MT7622 SoC
>>    soc: mediatek: reduce code duplication of scpsys_probe across all SoCs
>>    soc: mediatek: add SCPSYS power domain driver for MediaTek MT7622 SoC
>>
>>   .../devicetree/bindings/soc/mediatek/scpsys.txt    |   3 +
>>   drivers/soc/mediatek/mtk-scpsys.c                  | 247 ++++++++++++---------
>>   include/dt-bindings/power/mt7622-power.h           |  22 ++
>>   include/linux/soc/mediatek/infracfg.h              |   7 +
>>   4 files changed, 179 insertions(+), 100 deletions(-)
>>   create mode 100644 include/dt-bindings/power/mt7622-power.h
>>
>> --
>> 2.7.4
>>
> 
> Looks good to me! Feel free to add:
> 
> Reviewed-by: Ulf Hansson <ulf.hansson@linaro.org>
> 

Pushed to v4.13-next/soc with the Reviewed-by.

Thanks!

  reply	other threads:[~2017-08-14 15:30 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-08-07  7:24 [PATCH v3 0/4] add support of SCPSYS power domain for MediaTek MT7622 sean.wang
2017-08-07  7:24 ` sean.wang
2017-08-07  7:24 ` sean.wang at mediatek.com
2017-08-07  7:24 ` [PATCH v3 1/4] dt-bindings: soc: update the binding document for SCPSYS on MediaTek MT7622 SoC sean.wang
2017-08-07  7:24   ` sean.wang
2017-08-07  7:24   ` sean.wang at mediatek.com
2017-08-07  7:24 ` [PATCH v3 2/4] soc: mediatek: reduce code duplication of scpsys_probe across all SoCs sean.wang
2017-08-07  7:24   ` sean.wang
2017-08-07  7:24   ` sean.wang at mediatek.com
2017-08-07  7:24 ` [PATCH v3 3/4] soc: mediatek: add header files required for MT7622 SCPSYS dt-binding sean.wang
2017-08-07  7:24   ` sean.wang
2017-08-07  7:24   ` sean.wang at mediatek.com
2017-08-07  7:24 ` [PATCH v3 4/4] soc: mediatek: add SCPSYS power domain driver for MediaTek MT7622 SoC sean.wang
2017-08-07  7:24   ` sean.wang
2017-08-07  7:24   ` sean.wang at mediatek.com
     [not found] ` <cover.1502090240.git.sean.wang-NuS5LvNUpcJWk0Htik3J/w@public.gmane.org>
2017-08-08 11:41   ` [PATCH v3 0/4] add support of SCPSYS power domain for MediaTek MT7622 Ulf Hansson
2017-08-08 11:41     ` Ulf Hansson
2017-08-08 11:41     ` Ulf Hansson
2017-08-14 15:30     ` Matthias Brugger [this message]
2017-08-14 15:30       ` Matthias Brugger

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=2a112b79-20a0-e09d-28a9-24b412d20874@gmail.com \
    --to=matthias.bgg@gmail.com \
    --cc=devicetree@vger.kernel.org \
    --cc=khilman@baylibre.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mediatek@lists.infradead.org \
    --cc=linux-pm@vger.kernel.org \
    --cc=rjw@rjwysocki.net \
    --cc=robh+dt@kernel.org \
    --cc=sean.wang@mediatek.com \
    --cc=ulf.hansson@linaro.org \
    /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.