All of lore.kernel.org
 help / color / mirror / Atom feed
From: Mars Cheng <mars.cheng@mediatek.com>
To: Matthias Brugger <matthias.bgg@gmail.com>
Cc: Rob Herring <robh+dt@kernel.org>,
	Marc Zyngier <marc.zyngier@arm.com>,
	Michael Turquette <mturquette@baylibre.com>,
	Stephen Boyd <sboyd@codeaurora.org>,
	CC Hwang <cc.hwang@mediatek.com>,
	Loda Chou <loda.chou@mediatek.com>,
	Miles Chen <miles.chen@mediatek.com>,
	Jades Shih <jades.shih@mediatek.com>,
	Yingjoe Chen <yingjoe.chen@mediatek.com>,
	"My Chuang" <my.chuang@mediatek.com>,
	<linux-kernel@vger.kernel.org>,
	<linux-mediatek@lists.infradead.org>,
	<devicetree@vger.kernel.org>, <wsd_upstream@mediatek.com>,
	<linux-clk@vger.kernel.org>
Subject: Re: [PATCH v3 00/12] Add Basic SoC support for MT6797
Date: Thu, 6 Apr 2017 20:11:05 +0800	[thread overview]
Message-ID: <1491480665.6485.4.camel@mtkswgap22> (raw)
In-Reply-To: <1490229971.25996.2.camel@mtkswgap22>

Hi Matthias, Stephen

Would you like to give some comments for this patch set?
If there are any suggestions, I will try my best to fix the errors.

Thanks. 

On Thu, 2017-03-23 at 08:46 +0800, Mars Cheng wrote:
> Hi Matthias, Rob, Marc, Stephen
> 
> gentle ping for this patch set.
> 
> Thanks.
> 
> On Sun, 2017-03-19 at 23:26 +0800, Mars Cheng wrote:
> > This patch set adds basic SoC support for mediatek's first 10-core
> > chip, X20, also known as MT6797.
> > 
> > - based on 4.11-rc1
> > - support multiple base address for sysirq
> > - support common clk framework
> > 
> > Changes since v2:
> > - prevent uncessary #intpol-bases for mtk-sysirq
> > - add fast path for mtk-sysirq set_type when introducing multiple bases
> > - add acked-by and tested-by
> > - remove wrong usage for timer node
> > 
> > Changes since v1:
> > - add multiple base addresses support, v1 only allow 2 bases
> > - clean up clk driver
> > 
> > 
> > Kevin-CW Chen (2):
> >   dt-bindings: arm: mediatek: document clk bindings for MT6797
> >   clk: mediatek: add clk support for MT6797
> > 
> > Mars Cheng (10):
> >   dt-bindings: mediatek: multiple bases support for sysirq
> >   irqchip: mtk-sysirq: extend intpol base to arbitrary number
> >   irqchip: mtk-sysirq: prevent unnecessary visibility when set_type
> >   dt-bindings: mediatek: Add bindings for mediatek MT6797 Platform
> >   arm64: dts: mediatek: add mt6797 support
> >   soc: mediatek: avoid using fixed spm power status defines
> >   soc: mediatek: add vdec item for scpsys
> >   dt-bindings: mediatek: add MT6797 power dt-bindings
> >   soc: mediatek: add MT6797 scysys support
> >   arm64: dts: mediatek: add clk and scp nodes for MT6797
> > 
> >  Documentation/devicetree/bindings/arm/mediatek.txt |    4 +
> >  .../bindings/arm/mediatek/mediatek,apmixedsys.txt  |    1 +
> >  .../bindings/arm/mediatek/mediatek,imgsys.txt      |    1 +
> >  .../bindings/arm/mediatek/mediatek,infracfg.txt    |    1 +
> >  .../bindings/arm/mediatek/mediatek,mmsys.txt       |    1 +
> >  .../bindings/arm/mediatek/mediatek,topckgen.txt    |    1 +
> >  .../bindings/arm/mediatek/mediatek,vdecsys.txt     |    1 +
> >  .../bindings/arm/mediatek/mediatek,vencsys.txt     |    3 +-
> >  .../interrupt-controller/mediatek,sysirq.txt       |   12 +-
> >  .../devicetree/bindings/serial/mtk-uart.txt        |    1 +
> >  .../devicetree/bindings/soc/mediatek/scpsys.txt    |    6 +-
> >  arch/arm64/boot/dts/mediatek/Makefile              |    1 +
> >  arch/arm64/boot/dts/mediatek/mt6797-evb.dts        |   36 +
> >  arch/arm64/boot/dts/mediatek/mt6797.dtsi           |  245 +++++++
> >  drivers/clk/mediatek/Kconfig                       |   32 +
> >  drivers/clk/mediatek/Makefile                      |    5 +
> >  drivers/clk/mediatek/clk-mt6797-img.c              |   76 +++
> >  drivers/clk/mediatek/clk-mt6797-mm.c               |  136 ++++
> >  drivers/clk/mediatek/clk-mt6797-vdec.c             |   93 +++
> >  drivers/clk/mediatek/clk-mt6797-venc.c             |   78 +++
> >  drivers/clk/mediatek/clk-mt6797.c                  |  716 ++++++++++++++++++++
> >  drivers/irqchip/irq-mtk-sysirq.c                   |  116 +++-
> >  drivers/soc/mediatek/mtk-scpsys.c                  |  149 +++-
> >  include/dt-bindings/clock/mt6797-clk.h             |  281 ++++++++
> >  include/dt-bindings/power/mt6797-power.h           |   30 +
> >  25 files changed, 1993 insertions(+), 33 deletions(-)
> >  create mode 100644 arch/arm64/boot/dts/mediatek/mt6797-evb.dts
> >  create mode 100644 arch/arm64/boot/dts/mediatek/mt6797.dtsi
> >  create mode 100644 drivers/clk/mediatek/clk-mt6797-img.c
> >  create mode 100644 drivers/clk/mediatek/clk-mt6797-mm.c
> >  create mode 100644 drivers/clk/mediatek/clk-mt6797-vdec.c
> >  create mode 100644 drivers/clk/mediatek/clk-mt6797-venc.c
> >  create mode 100644 drivers/clk/mediatek/clk-mt6797.c
> >  create mode 100644 include/dt-bindings/clock/mt6797-clk.h
> >  create mode 100644 include/dt-bindings/power/mt6797-power.h
> > 
> > --
> > 1.7.9.5
> > 
> 

WARNING: multiple messages have this Message-ID (diff)
From: Mars Cheng <mars.cheng-NuS5LvNUpcJWk0Htik3J/w@public.gmane.org>
To: Matthias Brugger <matthias.bgg-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
Cc: Rob Herring <robh+dt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>,
	Marc Zyngier <marc.zyngier-5wv7dgnIgG8@public.gmane.org>,
	Michael Turquette
	<mturquette-rdvid1DuHRBWk0Htik3J/w@public.gmane.org>,
	Stephen Boyd <sboyd-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>,
	CC Hwang <cc.hwang-NuS5LvNUpcJWk0Htik3J/w@public.gmane.org>,
	Loda Chou <loda.chou-NuS5LvNUpcJWk0Htik3J/w@public.gmane.org>,
	Miles Chen <miles.chen-NuS5LvNUpcJWk0Htik3J/w@public.gmane.org>,
	Jades Shih <jades.shih-NuS5LvNUpcJWk0Htik3J/w@public.gmane.org>,
	Yingjoe Chen
	<yingjoe.chen-NuS5LvNUpcJWk0Htik3J/w@public.gmane.org>,
	My Chuang <my.chuang-NuS5LvNUpcJWk0Htik3J/w@public.gmane.org>,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	linux-mediatek-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org,
	devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	wsd_upstream-NuS5LvNUpcJWk0Htik3J/w@public.gmane.org,
	linux-clk-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Subject: Re: [PATCH v3 00/12] Add Basic SoC support for MT6797
Date: Thu, 6 Apr 2017 20:11:05 +0800	[thread overview]
Message-ID: <1491480665.6485.4.camel@mtkswgap22> (raw)
In-Reply-To: <1490229971.25996.2.camel@mtkswgap22>

Hi Matthias, Stephen

Would you like to give some comments for this patch set?
If there are any suggestions, I will try my best to fix the errors.

Thanks. 

On Thu, 2017-03-23 at 08:46 +0800, Mars Cheng wrote:
> Hi Matthias, Rob, Marc, Stephen
> 
> gentle ping for this patch set.
> 
> Thanks.
> 
> On Sun, 2017-03-19 at 23:26 +0800, Mars Cheng wrote:
> > This patch set adds basic SoC support for mediatek's first 10-core
> > chip, X20, also known as MT6797.
> > 
> > - based on 4.11-rc1
> > - support multiple base address for sysirq
> > - support common clk framework
> > 
> > Changes since v2:
> > - prevent uncessary #intpol-bases for mtk-sysirq
> > - add fast path for mtk-sysirq set_type when introducing multiple bases
> > - add acked-by and tested-by
> > - remove wrong usage for timer node
> > 
> > Changes since v1:
> > - add multiple base addresses support, v1 only allow 2 bases
> > - clean up clk driver
> > 
> > 
> > Kevin-CW Chen (2):
> >   dt-bindings: arm: mediatek: document clk bindings for MT6797
> >   clk: mediatek: add clk support for MT6797
> > 
> > Mars Cheng (10):
> >   dt-bindings: mediatek: multiple bases support for sysirq
> >   irqchip: mtk-sysirq: extend intpol base to arbitrary number
> >   irqchip: mtk-sysirq: prevent unnecessary visibility when set_type
> >   dt-bindings: mediatek: Add bindings for mediatek MT6797 Platform
> >   arm64: dts: mediatek: add mt6797 support
> >   soc: mediatek: avoid using fixed spm power status defines
> >   soc: mediatek: add vdec item for scpsys
> >   dt-bindings: mediatek: add MT6797 power dt-bindings
> >   soc: mediatek: add MT6797 scysys support
> >   arm64: dts: mediatek: add clk and scp nodes for MT6797
> > 
> >  Documentation/devicetree/bindings/arm/mediatek.txt |    4 +
> >  .../bindings/arm/mediatek/mediatek,apmixedsys.txt  |    1 +
> >  .../bindings/arm/mediatek/mediatek,imgsys.txt      |    1 +
> >  .../bindings/arm/mediatek/mediatek,infracfg.txt    |    1 +
> >  .../bindings/arm/mediatek/mediatek,mmsys.txt       |    1 +
> >  .../bindings/arm/mediatek/mediatek,topckgen.txt    |    1 +
> >  .../bindings/arm/mediatek/mediatek,vdecsys.txt     |    1 +
> >  .../bindings/arm/mediatek/mediatek,vencsys.txt     |    3 +-
> >  .../interrupt-controller/mediatek,sysirq.txt       |   12 +-
> >  .../devicetree/bindings/serial/mtk-uart.txt        |    1 +
> >  .../devicetree/bindings/soc/mediatek/scpsys.txt    |    6 +-
> >  arch/arm64/boot/dts/mediatek/Makefile              |    1 +
> >  arch/arm64/boot/dts/mediatek/mt6797-evb.dts        |   36 +
> >  arch/arm64/boot/dts/mediatek/mt6797.dtsi           |  245 +++++++
> >  drivers/clk/mediatek/Kconfig                       |   32 +
> >  drivers/clk/mediatek/Makefile                      |    5 +
> >  drivers/clk/mediatek/clk-mt6797-img.c              |   76 +++
> >  drivers/clk/mediatek/clk-mt6797-mm.c               |  136 ++++
> >  drivers/clk/mediatek/clk-mt6797-vdec.c             |   93 +++
> >  drivers/clk/mediatek/clk-mt6797-venc.c             |   78 +++
> >  drivers/clk/mediatek/clk-mt6797.c                  |  716 ++++++++++++++++++++
> >  drivers/irqchip/irq-mtk-sysirq.c                   |  116 +++-
> >  drivers/soc/mediatek/mtk-scpsys.c                  |  149 +++-
> >  include/dt-bindings/clock/mt6797-clk.h             |  281 ++++++++
> >  include/dt-bindings/power/mt6797-power.h           |   30 +
> >  25 files changed, 1993 insertions(+), 33 deletions(-)
> >  create mode 100644 arch/arm64/boot/dts/mediatek/mt6797-evb.dts
> >  create mode 100644 arch/arm64/boot/dts/mediatek/mt6797.dtsi
> >  create mode 100644 drivers/clk/mediatek/clk-mt6797-img.c
> >  create mode 100644 drivers/clk/mediatek/clk-mt6797-mm.c
> >  create mode 100644 drivers/clk/mediatek/clk-mt6797-vdec.c
> >  create mode 100644 drivers/clk/mediatek/clk-mt6797-venc.c
> >  create mode 100644 drivers/clk/mediatek/clk-mt6797.c
> >  create mode 100644 include/dt-bindings/clock/mt6797-clk.h
> >  create mode 100644 include/dt-bindings/power/mt6797-power.h
> > 
> > --
> > 1.7.9.5
> > 
> 


--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

  parent reply	other threads:[~2017-04-06 12:11 UTC|newest]

Thread overview: 49+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-03-19 15:26 [PATCH v3 00/12] Add Basic SoC support for MT6797 Mars Cheng
2017-03-19 15:26 ` Mars Cheng
2017-03-19 15:26 ` [PATCH v3 01/12] dt-bindings: mediatek: multiple bases support for sysirq Mars Cheng
2017-03-19 15:26   ` Mars Cheng
2017-03-24 15:20   ` Rob Herring
2017-03-24 15:20     ` Rob Herring
2017-03-24 15:58     ` Marc Zyngier
2017-03-24 15:58       ` Marc Zyngier
2017-03-19 15:26 ` [PATCH v3 02/12] irqchip: mtk-sysirq: extend intpol base to arbitrary number Mars Cheng
2017-03-19 15:26   ` Mars Cheng
2017-03-23 16:25   ` Marc Zyngier
2017-03-23 23:52     ` Mars Cheng
2017-03-23 23:52       ` Mars Cheng
2017-03-24  9:42       ` Marc Zyngier
2017-03-19 15:26 ` [PATCH v3 03/12] irqchip: mtk-sysirq: prevent unnecessary visibility when set_type Mars Cheng
2017-03-19 15:26   ` Mars Cheng
2017-03-23 16:13   ` Marc Zyngier
2017-03-19 15:26 ` [PATCH v3 04/12] dt-bindings: mediatek: Add bindings for mediatek MT6797 Platform Mars Cheng
2017-03-19 15:26   ` Mars Cheng
2017-03-19 15:26 ` [PATCH v3 05/12] arm64: dts: mediatek: add mt6797 support Mars Cheng
2017-03-19 15:26   ` Mars Cheng
2017-03-19 15:26 ` [PATCH v3 06/12] dt-bindings: arm: mediatek: document clk bindings for MT6797 Mars Cheng
2017-03-19 15:26   ` Mars Cheng
2017-03-19 15:26 ` [PATCH v3 07/12] clk: mediatek: add clk support " Mars Cheng
2017-03-19 15:26   ` Mars Cheng
2017-04-06 20:08   ` Stephen Boyd
2017-04-06 20:08     ` Stephen Boyd
2017-04-06 23:35     ` Mars Cheng
2017-04-06 23:35       ` Mars Cheng
2017-04-07 19:41       ` Stephen Boyd
2017-03-19 15:26 ` [PATCH v3 08/12] soc: mediatek: avoid using fixed spm power status defines Mars Cheng
2017-03-19 15:26   ` Mars Cheng
2017-03-19 15:26 ` [PATCH v3 09/12] soc: mediatek: add vdec item for scpsys Mars Cheng
2017-03-19 15:26   ` Mars Cheng
2017-03-19 15:26 ` [PATCH v3 10/12] dt-bindings: mediatek: add MT6797 power dt-bindings Mars Cheng
2017-03-19 15:26   ` Mars Cheng
2017-03-24 15:20   ` Rob Herring
2017-03-19 15:26 ` [PATCH v3 11/12] soc: mediatek: add MT6797 scysys support Mars Cheng
2017-03-19 15:26   ` Mars Cheng
2017-03-19 15:26 ` [PATCH v3 12/12] arm64: dts: mediatek: add clk and scp nodes for MT6797 Mars Cheng
2017-03-19 15:26   ` Mars Cheng
2017-03-23  0:46 ` [PATCH v3 00/12] Add Basic SoC support " Mars Cheng
2017-03-23  0:46   ` Mars Cheng
2017-03-23 15:24   ` Marc Zyngier
2017-03-23 15:24     ` Marc Zyngier
2017-03-23 23:46     ` Mars Cheng
2017-03-23 23:46       ` Mars Cheng
2017-04-06 12:11   ` Mars Cheng [this message]
2017-04-06 12:11     ` Mars Cheng

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=1491480665.6485.4.camel@mtkswgap22 \
    --to=mars.cheng@mediatek.com \
    --cc=cc.hwang@mediatek.com \
    --cc=devicetree@vger.kernel.org \
    --cc=jades.shih@mediatek.com \
    --cc=linux-clk@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mediatek@lists.infradead.org \
    --cc=loda.chou@mediatek.com \
    --cc=marc.zyngier@arm.com \
    --cc=matthias.bgg@gmail.com \
    --cc=miles.chen@mediatek.com \
    --cc=mturquette@baylibre.com \
    --cc=my.chuang@mediatek.com \
    --cc=robh+dt@kernel.org \
    --cc=sboyd@codeaurora.org \
    --cc=wsd_upstream@mediatek.com \
    --cc=yingjoe.chen@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.