All of lore.kernel.org
 help / color / mirror / Atom feed
From: John Crispin <blogic@openwrt.org>
To: James Liao <jamesjj.liao@mediatek.com>,
	Matthias Brugger <matthias.bgg@gmail.com>,
	Mike Turquette <mturquette@baylibre.com>,
	Stephen Boyd <sboyd@codeaurora.org>
Cc: devicetree@vger.kernel.org, Sascha Hauer <kernel@pengutronix.de>,
	srv_heupstream@mediatek.com, linux-kernel@vger.kernel.org,
	linux-mediatek@lists.infradead.org,
	Philipp Zabel <p.zabel@pengutronix.de>,
	linux-clk@vger.kernel.org, linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH v3 0/6] Add clock support for Mediatek MT2701
Date: Tue, 12 Jan 2016 11:10:14 +0100	[thread overview]
Message-ID: <5694D106.2030009@openwrt.org> (raw)
In-Reply-To: <1452587470-61506-1-git-send-email-jamesjj.liao@mediatek.com>

Hi James,

On 12/01/2016 09:31, James Liao wrote:
> This patchset is based on 4.4-rc7, add clock and reset controller support
> for Mediatek MT2701.
> 
> This patchset also refined makefile and Kconfig to support configurable
> multiple SoC clock support.
> 
> changes since v2:
> - Fix ethsys definition.
> - Replace read-modify-write with regmap_update_bits() in clock operations.
> - Move mt2701-resets.h to include/dt-bindings/reset/.
> - Add hifsys reset patch from John Crispin.

thanks for folding the fixup.

i have been testing your V2 on MT7623 for several days now and updated
to V3 this morning which works just as well. feel free to add

Tested-by: John Crispin <blogic@openwrt.org>


	John


> changes since v1:
> - Document MT2701 compatible strings.
> 
> James Liao (2):
>   clk: mediatek: Refine the makefile to support multiple clock drivers
>   dt-bindings: ARM: Mediatek: Document bindings for MT2701
> 
> Shunli Wang (4):
>   clk: mediatek: Add dt-bindings for MT2701 clocks
>   clk: mediatek: Add MT2701 clock support
>   reset: mediatek: Add MT2701 reset controller dt-binding file
>   reset: mediatek: Add MT2701 reset driver
> 
>  .../bindings/arm/mediatek/mediatek,apmixedsys.txt  |    1 +
>  .../bindings/arm/mediatek/mediatek,bdpsys.txt      |   22 +
>  .../bindings/arm/mediatek/mediatek,ethsys.txt      |   22 +
>  .../bindings/arm/mediatek/mediatek,hifsys.txt      |   22 +
>  .../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,pericfg.txt     |    1 +
>  .../bindings/arm/mediatek/mediatek,topckgen.txt    |    1 +
>  .../bindings/arm/mediatek/mediatek,vdecsys.txt     |    1 +
>  drivers/clk/Kconfig                                |    1 +
>  drivers/clk/mediatek/Kconfig                       |   31 +
>  drivers/clk/mediatek/Makefile                      |    7 +-
>  drivers/clk/mediatek/clk-gate.c                    |   52 +
>  drivers/clk/mediatek/clk-gate.h                    |    2 +
>  drivers/clk/mediatek/clk-mt2701.c                  | 1216 ++++++++++++++++++++
>  drivers/clk/mediatek/clk-mtk.c                     |   25 +
>  drivers/clk/mediatek/clk-mtk.h                     |   35 +-
>  include/dt-bindings/clock/mt2701-clk.h             |  481 ++++++++
>  include/dt-bindings/reset/mt2701-resets.h          |   83 ++
>  20 files changed, 2000 insertions(+), 6 deletions(-)
>  create mode 100644 Documentation/devicetree/bindings/arm/mediatek/mediatek,bdpsys.txt
>  create mode 100644 Documentation/devicetree/bindings/arm/mediatek/mediatek,ethsys.txt
>  create mode 100644 Documentation/devicetree/bindings/arm/mediatek/mediatek,hifsys.txt
>  create mode 100644 drivers/clk/mediatek/Kconfig
>  create mode 100644 drivers/clk/mediatek/clk-mt2701.c
>  create mode 100644 include/dt-bindings/clock/mt2701-clk.h
>  create mode 100644 include/dt-bindings/reset/mt2701-resets.h
> 
> --
> 1.9.1
> 
> _______________________________________________
> Linux-mediatek mailing list
> Linux-mediatek@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-mediatek
> 

WARNING: multiple messages have this Message-ID (diff)
From: blogic@openwrt.org (John Crispin)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v3 0/6] Add clock support for Mediatek MT2701
Date: Tue, 12 Jan 2016 11:10:14 +0100	[thread overview]
Message-ID: <5694D106.2030009@openwrt.org> (raw)
In-Reply-To: <1452587470-61506-1-git-send-email-jamesjj.liao@mediatek.com>

Hi James,

On 12/01/2016 09:31, James Liao wrote:
> This patchset is based on 4.4-rc7, add clock and reset controller support
> for Mediatek MT2701.
> 
> This patchset also refined makefile and Kconfig to support configurable
> multiple SoC clock support.
> 
> changes since v2:
> - Fix ethsys definition.
> - Replace read-modify-write with regmap_update_bits() in clock operations.
> - Move mt2701-resets.h to include/dt-bindings/reset/.
> - Add hifsys reset patch from John Crispin.

thanks for folding the fixup.

i have been testing your V2 on MT7623 for several days now and updated
to V3 this morning which works just as well. feel free to add

Tested-by: John Crispin <blogic@openwrt.org>


	John


> changes since v1:
> - Document MT2701 compatible strings.
> 
> James Liao (2):
>   clk: mediatek: Refine the makefile to support multiple clock drivers
>   dt-bindings: ARM: Mediatek: Document bindings for MT2701
> 
> Shunli Wang (4):
>   clk: mediatek: Add dt-bindings for MT2701 clocks
>   clk: mediatek: Add MT2701 clock support
>   reset: mediatek: Add MT2701 reset controller dt-binding file
>   reset: mediatek: Add MT2701 reset driver
> 
>  .../bindings/arm/mediatek/mediatek,apmixedsys.txt  |    1 +
>  .../bindings/arm/mediatek/mediatek,bdpsys.txt      |   22 +
>  .../bindings/arm/mediatek/mediatek,ethsys.txt      |   22 +
>  .../bindings/arm/mediatek/mediatek,hifsys.txt      |   22 +
>  .../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,pericfg.txt     |    1 +
>  .../bindings/arm/mediatek/mediatek,topckgen.txt    |    1 +
>  .../bindings/arm/mediatek/mediatek,vdecsys.txt     |    1 +
>  drivers/clk/Kconfig                                |    1 +
>  drivers/clk/mediatek/Kconfig                       |   31 +
>  drivers/clk/mediatek/Makefile                      |    7 +-
>  drivers/clk/mediatek/clk-gate.c                    |   52 +
>  drivers/clk/mediatek/clk-gate.h                    |    2 +
>  drivers/clk/mediatek/clk-mt2701.c                  | 1216 ++++++++++++++++++++
>  drivers/clk/mediatek/clk-mtk.c                     |   25 +
>  drivers/clk/mediatek/clk-mtk.h                     |   35 +-
>  include/dt-bindings/clock/mt2701-clk.h             |  481 ++++++++
>  include/dt-bindings/reset/mt2701-resets.h          |   83 ++
>  20 files changed, 2000 insertions(+), 6 deletions(-)
>  create mode 100644 Documentation/devicetree/bindings/arm/mediatek/mediatek,bdpsys.txt
>  create mode 100644 Documentation/devicetree/bindings/arm/mediatek/mediatek,ethsys.txt
>  create mode 100644 Documentation/devicetree/bindings/arm/mediatek/mediatek,hifsys.txt
>  create mode 100644 drivers/clk/mediatek/Kconfig
>  create mode 100644 drivers/clk/mediatek/clk-mt2701.c
>  create mode 100644 include/dt-bindings/clock/mt2701-clk.h
>  create mode 100644 include/dt-bindings/reset/mt2701-resets.h
> 
> --
> 1.9.1
> 
> _______________________________________________
> Linux-mediatek mailing list
> Linux-mediatek at lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-mediatek
> 

  parent reply	other threads:[~2016-01-12 10:10 UTC|newest]

Thread overview: 49+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-01-12  8:31 [PATCH v3 0/6] Add clock support for Mediatek MT2701 James Liao
2016-01-12  8:31 ` James Liao
2016-01-12  8:31 ` James Liao
2016-01-12  8:31 ` [PATCH v3 1/6] clk: mediatek: Refine the makefile to support multiple clock drivers James Liao
2016-01-12  8:31   ` James Liao
2016-01-12  8:31   ` James Liao
2016-01-21  2:28   ` Yingjoe Chen
2016-01-21  2:28     ` Yingjoe Chen
2016-01-21  2:28     ` Yingjoe Chen
2016-01-21  2:45     ` Yingjoe Chen
2016-01-21  2:45       ` Yingjoe Chen
2016-01-21  2:45       ` Yingjoe Chen
2016-01-21  5:50       ` James Liao
2016-01-21  5:50         ` James Liao
2016-01-21  5:50         ` James Liao
2016-01-21  5:49     ` James Liao
2016-01-21  5:49       ` James Liao
2016-01-21  5:49       ` James Liao
2016-01-12  8:31 ` [PATCH v3 2/6] dt-bindings: ARM: Mediatek: Document bindings for MT2701 James Liao
2016-01-12  8:31   ` James Liao
2016-01-12  8:31   ` James Liao
2016-01-13  2:10   ` Rob Herring
2016-01-13  2:10     ` Rob Herring
2016-01-12  8:31 ` [PATCH v3 3/6] clk: mediatek: Add dt-bindings for MT2701 clocks James Liao
2016-01-12  8:31   ` James Liao
2016-01-12  8:31   ` James Liao
2016-01-13 19:29   ` Michael Turquette
2016-01-13 19:29     ` Michael Turquette
2016-01-13 19:29     ` Michael Turquette
2016-01-13 19:29     ` Michael Turquette
2016-01-12  8:31 ` [PATCH v3 4/6] clk: mediatek: Add MT2701 clock support James Liao
2016-01-12  8:31   ` James Liao
2016-01-12  8:31   ` James Liao
2016-01-12  8:31 ` [PATCH v3 5/6] reset: mediatek: Add MT2701 reset controller dt-binding file James Liao
2016-01-12  8:31   ` James Liao
2016-01-12  8:31   ` James Liao
2016-01-12 10:22   ` Philipp Zabel
2016-01-12 10:22     ` Philipp Zabel
2016-01-12 10:22     ` Philipp Zabel
2016-01-12  8:31 ` [PATCH v3 6/6] reset: mediatek: Add MT2701 reset driver James Liao
2016-01-12  8:31   ` James Liao
2016-01-12  8:31   ` James Liao
2016-01-12 10:22   ` Philipp Zabel
2016-01-12 10:22     ` Philipp Zabel
2016-01-12 10:10 ` John Crispin [this message]
2016-01-12 10:10   ` [PATCH v3 0/6] Add clock support for Mediatek MT2701 John Crispin
2016-01-13  3:01   ` James Liao
2016-01-13  3:01     ` James Liao
2016-01-13  3:01     ` James Liao

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=5694D106.2030009@openwrt.org \
    --to=blogic@openwrt.org \
    --cc=devicetree@vger.kernel.org \
    --cc=jamesjj.liao@mediatek.com \
    --cc=kernel@pengutronix.de \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-clk@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mediatek@lists.infradead.org \
    --cc=matthias.bgg@gmail.com \
    --cc=mturquette@baylibre.com \
    --cc=p.zabel@pengutronix.de \
    --cc=sboyd@codeaurora.org \
    --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.